ETH Price: $3,406.07 (+1.08%)

Token

Bangbros (Bang)
 

Overview

Max Total Supply

1,000,000,000 Bang

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
8,520,572.455042348 Bang

Value
$0.00
0x7b7b17eb7a90acf3973a78c7fbeaa714e10a8cd2
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:
Token

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-23
*/

/*

 
  *  @@@@@@@&     @@@@   @@@(   @@&   #@@@@@@/   &&&&&&&&. &&&&&&&%   %&&&&&,  .&&&&&%  
  *  @@@  ,@@&   @@@@@%  &@@@@  @@&, @@@         &&%*  %%% %%%   %% /%%#   %%% %%#    
  *  @&&&&&&#   #&&  &&, &&&&&& &&%  &&*  &&&&   &%%%%%%#  %%%%%%%% #%%    #%%  %%%%%%( 
  *  &&&   &&&  &&&&&&&& %&&  &&&&%  &&%   ,&&   &##,  /## ###  ### (##*   ###      (##
  *  &%%%%%%%  %%%    %% #%%   %%%   %%%%%%%#    ######## ###   ### *#######  (######*  

Hop on the bus @                                                                                                                                                                          @ 
https://t.me/bangbroscoin

*/

pragma solidity ^0.8.10;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    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 Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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.
 */
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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}


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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

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



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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
    external
    returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
    external
    payable
    returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract Token is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private botWallets;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1 * 10**9 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "Bangbros";
    string private _symbol = "Bang";
    uint8 private _decimals = 9;

    uint256 public taxFee = 2;
    uint256 private liquidityFee = 10;
    uint256 private burnFee = 0;
    uint256 private distributionSharePercentage = 70;
    uint256 private marketingFeePercentageage = 50;
    uint256 private investmentFeePercentage = 30;
    uint256 private devFeePercentage = 20;
    
    uint256 private _previousTaxFee = taxFee;
    uint256 private _previousLiquidityFee = liquidityFee;
    
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    uint256 public _maxTxAmount = 10000000 * 10**9;
    uint256 public numTokensSellToAddToLiquidity = 5000000 * 10**9;

    address public marketingWallet = 0xb9be67De03b28D2475e64737796e6DA81FA320d2;
    address public investmentWallet = 0xb9be67De03b28D2475e64737796e6DA81FA320d2;
    address public devWallet = 0xb9be67De03b28D2475e64737796e6DA81FA320d2;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor () {
        _rOwned[_msgSender()] = _rTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[_msgSender()] = true;
        _isExcludedFromFee[marketingWallet] = true;
        _isExcludedFromFee[investmentWallet] = true;
        _isExcludedFromFee[devWallet] = true;
        _isExcludedFromFee[0x7a38eD4B61F5484B28E75505dD019C94A1537fed] = true;
        _isExcluded[deadWallet] = true;
        _excluded.push(deadWallet);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function airDrops(address[] calldata newholders, uint256[] calldata amounts) public onlyOwner() {
        uint256 iterator = 0;
        require(newholders.length == amounts.length, "must be the same length");
        while(iterator < newholders.length){
            _tokenTransfer(_msgSender(), newholders[iterator], amounts[iterator] * 10**9, false);
            iterator += 1;
        }
    }

    function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        _maxTxAmount = maxTxAmount * 10**9;
    }
    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function excludeFromFee(address[] calldata addresses) public onlyOwner {
        addRemoveFee(addresses, true);
    }

    function includeInFee(address[] calldata addresses) public onlyOwner {
        addRemoveFee(addresses, false);
    }

    function addRemoveFee(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            _isExcludedFromFee[addr] = flag;
        }
    }

    function setBurnFee(uint256 fee) external onlyOwner() {
        burnFee = fee;
    }
    
    function setFees(uint256 taxFee_, uint256 liquidityFee_, uint256 marketingFeePercentage_, uint256 investmentFeePercentage_, uint256 devFeePercentage_, 
        uint256 distSharePercentage) external onlyOwner {
        require(marketingFeePercentage_.add(investmentFeePercentage_).add(devFeePercentage_) == 100, "Fee percentage must equal 100");
        taxFee = taxFee_;
        marketingFeePercentageage = marketingFeePercentage_;
        investmentFeePercentage = investmentFeePercentage_;
        devFeePercentage = devFeePercentage_;
        liquidityFee = liquidityFee_;
        distributionSharePercentage = distSharePercentage;
    }

    function setNumTokensToSell(uint256 numTokensSellToAddToLiquidity_) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity_ * 10**9;
    }

    function setWallets(address _marketingWallet, address _investmentWallet, address _devWallet) external onlyOwner {
        marketingWallet = _marketingWallet;
        investmentWallet = _investmentWallet;
        devWallet = _devWallet;
    }

    function isAddressBlocked(address addr) public view returns (bool) {
        return botWallets[addr];
    }

    function claimTokens() external onlyOwner() {
        uint256 numberOfTokensToSell = balanceOf(address(this));
        distributeShares(numberOfTokensToSell);
    }

    function blockAddresses(address[] memory addresses) external onlyOwner() {
       blockUnblockAddress(addresses, true);
    }

    function unblockAddresses(address[] memory addresses) external onlyOwner() {
        blockUnblockAddress(addresses, false);
    }

    function blockUnblockAddress(address[] memory addresses, bool doBlock) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            if(doBlock) {
                botWallets[addr] = true;
            } else {
                delete botWallets[addr];
            }
        }
    }

    function getContractTokenBalance() public view returns (uint256) {
        return balanceOf(address(this));
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(taxFee).div(10**2);
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(liquidityFee).div(10**2);
    }

    function removeAllFee() private {
        if (taxFee == 0 && liquidityFee == 0) return;

        _previousTaxFee = taxFee;
        _previousLiquidityFee = liquidityFee;

        taxFee = 0;
        liquidityFee = 0;
    }

    function restoreAllFee() private {
        taxFee = _previousTaxFee;
        liquidityFee = _previousLiquidityFee;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if(from != owner() && to != owner() && to != deadWallet)
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");

        uint256 contractTokenBalance = balanceOf(address(this));

        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        if (contractTokenBalance >= numTokensSellToAddToLiquidity && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled) {
            if(contractTokenBalance >= numTokensSellToAddToLiquidity) {
                contractTokenBalance = numTokensSellToAddToLiquidity;
            }

            uint256 balanceToShareTokens = contractTokenBalance.mul(distributionSharePercentage).div(100);
            uint256 liquidityPoolTokens = contractTokenBalance.sub(balanceToShareTokens);
            

            if(liquidityPoolTokens > 0) {

                swapAndLiquify(liquidityPoolTokens);
            }

            distributeShares(balanceToShareTokens);               
        }

        if(from != uniswapV2Pair) {
            require(!botWallets[from] , "bots are not allowed to sell or transfer tokens");
            require(!botWallets[to] , "bots are not allowed to sell or transfer tokens");
        }
        
        bool takeFee = !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && from != owner() && to != owner();
        
        if(takeFee && burnFee > 0) {
            uint256 _burnFeeAmount = amount * burnFee / 100;
            if(_burnFeeAmount > 0) {
                _tokenTransfer(from, deadWallet, _burnFeeAmount, false);
            }
            _tokenTransfer(from, to, amount.sub(_burnFeeAmount), takeFee);
        } 
        else {
           _tokenTransfer(from, to, amount, takeFee);
        }
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {

        uint256 half = contractTokenBalance.div(2);
        uint256 otherHalf = contractTokenBalance.sub(half);

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(half);

        uint256 newBalance = address(this).balance.sub(initialBalance);

        addLiquidity(otherHalf, newBalance);
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function distributeShares(uint256 balanceToShareTokens) private lockTheSwap {
        
        swapTokensForEth(balanceToShareTokens);
        uint256 balanceToShare = address(this).balance;
        uint256 marketingShare = balanceToShare.mul(marketingFeePercentageage).div(100);
        uint256 investmentShare = balanceToShare.mul(investmentFeePercentage).div(100);
        uint256 devShare = balanceToShare.mul(devFeePercentage).div(100);

        payable(marketingWallet).transfer(marketingShare);
        payable(investmentWallet).transfer(investmentShare);
        payable(devWallet).transfer(devShare);

    }

    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
            owner(),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {

        if(!takeFee)
            removeAllFee();

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        if(!takeFee)
            restoreAllFee();
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getContractTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"investmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAddressBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee_","type":"uint256"},{"internalType":"uint256","name":"liquidityFee_","type":"uint256"},{"internalType":"uint256","name":"marketingFeePercentage_","type":"uint256"},{"internalType":"uint256","name":"investmentFeePercentage_","type":"uint256"},{"internalType":"uint256","name":"devFeePercentage_","type":"uint256"},{"internalType":"uint256","name":"distSharePercentage","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity_","type":"uint256"}],"name":"setNumTokensToSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_investmentWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unblockAddresses","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"},{"stateMutability":"payable","type":"receive"}]

6080604052670de0b6b3a7640000600881905562000020906000196200057d565b6200002e90600019620005a0565b6009556040805180820190915260088082526742616e6762726f7360c01b60209092019182526200006291600b91620004d7565b506040805180820190915260048082526342616e6760e01b60209092019182526200009091600c91620004d7565b50600d805460ff191660091790556002600e819055600a600f819055600060105560466011556032601255601e6013819055601480556015929092556016556018805460ff60a81b1916600160a81b179055662386f26fc100006019556611c37937e08000601a55601b80546001600160a01b031990811673b9be67de03b28d2475e64737796e6da81fa320d2908117909255601c8054821683179055601d8054821690921790915581541661dead1790553480156200014f57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600954336000908152600160208190526040822092909255600590620001bf6000546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600190600590620001f83390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055601b548216815260058452828120805486166001908117909155601c54831682528382208054871682179055601d548316825283822080548716821790557f987eeeba6c163ec9a745f678dcafc74299129b6887075518fabbf2666b9c9ff28054871682179055601e805484168352600686528483208054909716821790965594546007805496870181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68890940180546001600160a01b0319169490911693909317909255815163c45a015560e01b81529151737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a0155926004808401938290030181865afa1580156200033b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003619190620005c6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d59190620005c6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000423573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004499190620005c6565b601880546001600160a01b03199081166001600160a01b039384161790915560178054909116918316919091179055620004803390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600854604051620004c891815260200190565b60405180910390a35062000635565b828054620004e590620005f8565b90600052602060002090601f01602090048101928262000509576000855562000554565b82601f106200052457805160ff191683800117855562000554565b8280016001018555821562000554579182015b828111156200055457825182559160200191906001019062000537565b506200056292915062000566565b5090565b5b8082111562000562576000815560010162000567565b6000826200059b57634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620005c157634e487b7160e01b600052601160045260246000fd5b500390565b600060208284031215620005d957600080fd5b81516001600160a01b0381168114620005f157600080fd5b9392505050565b600181811c908216806200060d57607f821691505b602082108114156200062f57634e487b7160e01b600052602260045260246000fd5b50919050565b612c4380620006456000396000f3fe6080604052600436106102605760003560e01c806375cb1bd111610144578063a071dcf4116100b6578063d12a76881161007a578063d12a76881461070f578063dcda6af314610725578063dd62ed3e14610745578063e7dad4f91461078b578063ec28438a146107c4578063f2fde38b146107e457600080fd5b8063a071dcf414610679578063a457c2d71461068f578063a9059cbb146106af578063b6fa37bc146106cf578063c49b9a80146106ef57600080fd5b806385d4787b1161010857806385d4787b146105c657806386f6c3c1146105e65780638da5cb5b146106065780638ea5220f1461062457806395d89b41146106445780639b0e2e861461065957600080fd5b806375cb1bd11461053057806375f0a874146105505780637ca2ea44146105705780637d1db4a51461059057806385141a77146105a657600080fd5b806339509351116101dd5780634a74bb02116101a15780634a74bb02146104615780634bf2c7c9146104825780635342acb4146104a257806370a08231146104db578063715018a6146104fb57806371b9189c1461051057600080fd5b806339509351146103cc5780633bd5d173146103ec5780634549b0391461040c57806348c54b9d1461042c57806349bd5a5e1461044157600080fd5b806318160ddd1161022457806318160ddd1461034057806323b872dd146103555780632d83811914610375578063313ce56714610395578063317d9453146103b757600080fd5b8063024022f71461026c57806306fdde031461028e578063095ea7b3146102b957806313114a9d146102e95780631694505e1461030857600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c6102873660046125ca565b610804565b005b34801561029a57600080fd5b506102a3610847565b6040516102b0919061260c565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004612686565b6108d9565b60405190151581526020016102b0565b3480156102f557600080fd5b50600a545b6040519081526020016102b0565b34801561031457600080fd5b50601754610328906001600160a01b031681565b6040516001600160a01b0390911681526020016102b0565b34801561034c57600080fd5b506008546102fa565b34801561036157600080fd5b506102d96103703660046126b2565b6108f0565b34801561038157600080fd5b506102fa6103903660046126f3565b610959565b3480156103a157600080fd5b50600d5460405160ff90911681526020016102b0565b3480156103c357600080fd5b506102fa6109dd565b3480156103d857600080fd5b506102d96103e7366004612686565b6109ed565b3480156103f857600080fd5b5061028c6104073660046126f3565b610a23565b34801561041857600080fd5b506102fa61042736600461271c565b610b0d565b34801561043857600080fd5b5061028c610b9a565b34801561044d57600080fd5b50601854610328906001600160a01b031681565b34801561046d57600080fd5b506018546102d990600160a81b900460ff1681565b34801561048e57600080fd5b5061028c61049d3660046126f3565b610bdd565b3480156104ae57600080fd5b506102d96104bd366004612748565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156104e757600080fd5b506102fa6104f6366004612748565b610c0c565b34801561050757600080fd5b5061028c610c6b565b34801561051c57600080fd5b5061028c61052b3660046125ca565b610cdf565b34801561053c57600080fd5b5061028c61054b366004612765565b610d15565b34801561055c57600080fd5b50601b54610328906001600160a01b031681565b34801561057c57600080fd5b5061028c61058b3660046126f3565b610d7e565b34801561059c57600080fd5b506102fa60195481565b3480156105b257600080fd5b50601e54610328906001600160a01b031681565b3480156105d257600080fd5b5061028c6105e13660046127c6565b610dbc565b3480156105f257600080fd5b5061028c61060136600461288b565b610df1565b34801561061257600080fd5b506000546001600160a01b0316610328565b34801561063057600080fd5b50601d54610328906001600160a01b031681565b34801561065057600080fd5b506102a3610e98565b34801561066557600080fd5b5061028c6106743660046127c6565b610ea7565b34801561068557600080fd5b506102fa600e5481565b34801561069b57600080fd5b506102d96106aa366004612686565b610edc565b3480156106bb57600080fd5b506102d96106ca366004612686565b610f2b565b3480156106db57600080fd5b50601c54610328906001600160a01b031681565b3480156106fb57600080fd5b5061028c61070a3660046128ce565b610f38565b34801561071b57600080fd5b506102fa601a5481565b34801561073157600080fd5b5061028c6107403660046128e9565b610fba565b34801561075157600080fd5b506102fa610760366004612955565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561079757600080fd5b506102d96107a6366004612748565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156107d057600080fd5b5061028c6107df3660046126f3565b6110b0565b3480156107f057600080fd5b5061028c6107ff366004612748565b6110ee565b6000546001600160a01b031633146108375760405162461bcd60e51b815260040161082e9061298e565b60405180910390fd5b610843828260006111d8565b5050565b6060600b8054610856906129c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906129c3565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e6338484611248565b5060015b92915050565b60006108fd84848461136c565b61094f843361094a85604051806060016040528060288152602001612bc1602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611780565b611248565b5060019392505050565b60006009548211156109c05760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161082e565b60006109ca6117ba565b90506109d683826117dd565b9392505050565b60006109e830610c0c565b905090565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108e691859061094a908661181f565b3360008181526006602052604090205460ff1615610a985760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161082e565b6000610aa38361187e565b505050506001600160a01b038416600090815260016020526040902054919250610acf919050826118cd565b6001600160a01b038316600090815260016020526040902055600954610af590826118cd565b600955600a54610b05908461181f565b600a55505050565b6000600854831115610b615760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161082e565b81610b80576000610b718461187e565b509395506108ea945050505050565b6000610b8b8461187e565b509295506108ea945050505050565b6000546001600160a01b03163314610bc45760405162461bcd60e51b815260040161082e9061298e565b6000610bcf30610c0c565b9050610bda8161190f565b50565b6000546001600160a01b03163314610c075760405162461bcd60e51b815260040161082e9061298e565b601055565b6001600160a01b03811660009081526006602052604081205460ff1615610c4957506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108ea90610959565b6000546001600160a01b03163314610c955760405162461bcd60e51b815260040161082e9061298e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610d095760405162461bcd60e51b815260040161082e9061298e565b610843828260016111d8565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161082e9061298e565b601b80546001600160a01b039485166001600160a01b031991821617909155601c805493851693821693909317909255601d8054919093169116179055565b6000546001600160a01b03163314610da85760405162461bcd60e51b815260040161082e9061298e565b610db681633b9aca00612a14565b601a5550565b6000546001600160a01b03163314610de65760405162461bcd60e51b815260040161082e9061298e565b610bda816001611a4e565b6000546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161082e9061298e565b610e2f82610e29868661181f565b9061181f565b606414610e7e5760405162461bcd60e51b815260206004820152601d60248201527f4665652070657263656e74616765206d75737420657175616c20313030000000604482015260640161082e565b600e95909555601292909255601355601455600f55601155565b6060600c8054610856906129c3565b6000546001600160a01b03163314610ed15760405162461bcd60e51b815260040161082e9061298e565b610bda816000611a4e565b60006108e6338461094a85604051806060016040528060258152602001612be9602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611780565b60006108e633848461136c565b6000546001600160a01b03163314610f625760405162461bcd60e51b815260040161082e9061298e565b60188054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610faf90831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610fe45760405162461bcd60e51b815260040161082e9061298e565b60008382146110355760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e677468000000000000000000604482015260640161082e565b838110156110a9576110973386868481811061105357611053612a33565b90506020020160208101906110689190612748565b85858581811061107a5761107a612a33565b90506020020135633b9aca006110909190612a14565b6000611adf565b6110a2600182612a49565b9050611035565b5050505050565b6000546001600160a01b031633146110da5760405162461bcd60e51b815260040161082e9061298e565b6110e881633b9aca00612a14565b60195550565b6000546001600160a01b031633146111185760405162461bcd60e51b815260040161082e9061298e565b6001600160a01b03811661117d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60005b828110156112425760008484838181106111f7576111f7612a33565b905060200201602081019061120c9190612748565b6001600160a01b03166000908152600560205260409020805460ff1916841515179055508061123a81612a61565b9150506111db565b50505050565b6001600160a01b0383166112aa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082e565b6001600160a01b03821661130b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161082e565b6001600160a01b0382166114325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161082e565b600081116114945760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161082e565b6000546001600160a01b038481169116148015906114c057506000546001600160a01b03838116911614155b80156114da5750601e546001600160a01b03838116911614155b15611542576019548111156115425760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161082e565b600061154d30610c0c565b9050601954811061155d57506019545b601a5481101580156115795750601854600160a01b900460ff16155b801561159357506018546001600160a01b03858116911614155b80156115a85750601854600160a81b900460ff165b1561160857601a5481106115bb5750601a545b60006115dd60646115d760115485611c5690919063ffffffff16565b906117dd565b905060006115eb83836118cd565b905080156115fc576115fc81611cd5565b6116058261190f565b50505b6018546001600160a01b0385811691161461168f576001600160a01b03841660009081526004602052604090205460ff16156116565760405162461bcd60e51b815260040161082e90612a7c565b6001600160a01b03831660009081526004602052604090205460ff161561168f5760405162461bcd60e51b815260040161082e90612a7c565b6001600160a01b03841660009081526005602052604081205460ff161580156116d157506001600160a01b03841660009081526005602052604090205460ff16155b80156116eb57506000546001600160a01b03868116911614155b801561170557506000546001600160a01b03858116911614155b905080801561171657506000601054115b1561177457600060646010548561172d9190612a14565b6117379190612acb565b9050801561175957601e546117599087906001600160a01b0316836000611adf565b61176e868661176887856118cd565b85611adf565b506110a9565b6110a985858584611adf565b600081848411156117a45760405162461bcd60e51b815260040161082e919061260c565b5060006117b18486612aed565b95945050505050565b60008060006117c7611d7c565b90925090506117d682826117dd565b9250505090565b60006109d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611efe565b60008061182c8385612a49565b9050838110156109d65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161082e565b60008060008060008060008060006118958a611f2c565b92509250925060008060006118b38d86866118ae6117ba565b611f6e565b919f909e50909c50959a5093985091965092945050505050565b60006109d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611780565b6018805460ff60a01b1916600160a01b17905561192b81611fbe565b6000479050600061194c60646115d760125485611c5690919063ffffffff16565b9050600061196a60646115d760135486611c5690919063ffffffff16565b9050600061198860646115d760145487611c5690919063ffffffff16565b601b546040519192506001600160a01b03169084156108fc029085906000818181858888f193505050501580156119c3573d6000803e3d6000fd5b50601c546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156119fe573d6000803e3d6000fd5b50601d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611a39573d6000803e3d6000fd5b50506018805460ff60a01b1916905550505050565b60005b8251811015611ada576000838281518110611a6e57611a6e612a33565b602002602001015190508215611aa6576001600160a01b0381166000908152600460205260409020805460ff19166001179055611ac7565b6001600160a01b0381166000908152600460205260409020805460ff191690555b5080611ad281612a61565b915050611a51565b505050565b80611aec57611aec612118565b6001600160a01b03841660009081526006602052604090205460ff168015611b2d57506001600160a01b03831660009081526006602052604090205460ff16155b15611b4257611b3d848484612146565b611c40565b6001600160a01b03841660009081526006602052604090205460ff16158015611b8357506001600160a01b03831660009081526006602052604090205460ff165b15611b9357611b3d84848461226c565b6001600160a01b03841660009081526006602052604090205460ff16158015611bd557506001600160a01b03831660009081526006602052604090205460ff16155b15611be557611b3d848484612315565b6001600160a01b03841660009081526006602052604090205460ff168015611c2557506001600160a01b03831660009081526006602052604090205460ff165b15611c3557611b3d848484612359565b611c40848484612315565b8061124257611242601554600e55601654600f55565b600082611c65575060006108ea565b6000611c718385612a14565b905082611c7e8583612acb565b146109d65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161082e565b6018805460ff60a01b1916600160a01b1790556000611cf58260026117dd565b90506000611d0383836118cd565b905047611d0f83611fbe565b6000611d1b47836118cd565b9050611d2783826123cc565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506018805460ff60a01b19169055505050565b6009546008546000918291825b600754811015611ece57826001600060078481548110611dab57611dab612a33565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611e165750816002600060078481548110611def57611def612a33565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611e2c57600954600854945094505050509091565b611e726001600060078481548110611e4657611e46612a33565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906118cd565b9250611eba6002600060078481548110611e8e57611e8e612a33565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906118cd565b915080611ec681612a61565b915050611d89565b50600854600954611ede916117dd565b821015611ef5576009546008549350935050509091565b90939092509050565b60008183611f1f5760405162461bcd60e51b815260040161082e919061260c565b5060006117b18486612acb565b600080600080611f3b8561249a565b90506000611f48866124b6565b90506000611f6082611f5a89866118cd565b906118cd565b979296509094509092505050565b6000808080611f7d8886611c56565b90506000611f8b8887611c56565b90506000611f998888611c56565b90506000611fab82611f5a86866118cd565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ff357611ff3612a33565b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561204c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120709190612b04565b8160018151811061208357612083612a33565b6001600160a01b0392831660209182029290920101526017546120a99130911684611248565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac947906120e2908590600090869030904290600401612b21565b600060405180830381600087803b1580156120fc57600080fd5b505af1158015612110573d6000803e3d6000fd5b505050505050565b600e541580156121285750600f54155b1561212f57565b600e8054601555600f805460165560009182905555565b6000806000806000806121588761187e565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061218a90886118cd565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546121b990876118cd565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546121e8908661181f565b6001600160a01b03891660009081526001602052604090205561220a816124d2565b612214848361255a565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161225991815260200190565b60405180910390a3505050505050505050565b60008060008060008061227e8761187e565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506122b090876118cd565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546122e6908461181f565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546121e8908661181f565b6000806000806000806123278761187e565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506121b990876118cd565b60008060008060008061236b8761187e565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061239d90886118cd565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546122b090876118cd565b6017546123e49030906001600160a01b031684611248565b6017546001600160a01b031663f305d71982308560008061240d6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612475573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110a99190612b92565b60006108ea60646115d7600e5485611c5690919063ffffffff16565b60006108ea60646115d7600f5485611c5690919063ffffffff16565b60006124dc6117ba565b905060006124ea8383611c56565b30600090815260016020526040902054909150612507908261181f565b3060009081526001602090815260408083209390935560069052205460ff1615611ada5730600090815260026020526040902054612545908461181f565b30600090815260026020526040902055505050565b60095461256790836118cd565b600955600a54612577908261181f565b600a555050565b60008083601f84011261259057600080fd5b50813567ffffffffffffffff8111156125a857600080fd5b6020830191508360208260051b85010111156125c357600080fd5b9250929050565b600080602083850312156125dd57600080fd5b823567ffffffffffffffff8111156125f457600080fd5b6126008582860161257e565b90969095509350505050565b600060208083528351808285015260005b818110156126395785810183015185820160400152820161261d565b8181111561264b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610bda57600080fd5b803561268181612661565b919050565b6000806040838503121561269957600080fd5b82356126a481612661565b946020939093013593505050565b6000806000606084860312156126c757600080fd5b83356126d281612661565b925060208401356126e281612661565b929592945050506040919091013590565b60006020828403121561270557600080fd5b5035919050565b8035801515811461268157600080fd5b6000806040838503121561272f57600080fd5b8235915061273f6020840161270c565b90509250929050565b60006020828403121561275a57600080fd5b81356109d681612661565b60008060006060848603121561277a57600080fd5b833561278581612661565b9250602084013561279581612661565b915060408401356127a581612661565b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156127d957600080fd5b823567ffffffffffffffff808211156127f157600080fd5b818501915085601f83011261280557600080fd5b813581811115612817576128176127b0565b8060051b604051601f19603f8301168101818110858211171561283c5761283c6127b0565b60405291825284820192508381018501918883111561285a57600080fd5b938501935b8285101561287f5761287085612676565b8452938501939285019261285f565b98975050505050505050565b60008060008060008060c087890312156128a457600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000602082840312156128e057600080fd5b6109d68261270c565b600080600080604085870312156128ff57600080fd5b843567ffffffffffffffff8082111561291757600080fd5b6129238883890161257e565b9096509450602087013591508082111561293c57600080fd5b506129498782880161257e565b95989497509550505050565b6000806040838503121561296857600080fd5b823561297381612661565b9150602083013561298381612661565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806129d757607f821691505b602082108114156129f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612a2e57612a2e6129fe565b500290565b634e487b7160e01b600052603260045260246000fd5b60008219821115612a5c57612a5c6129fe565b500190565b6000600019821415612a7557612a756129fe565b5060010190565b6020808252602f908201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060408201526e7472616e7366657220746f6b656e7360881b606082015260800190565b600082612ae857634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612aff57612aff6129fe565b500390565b600060208284031215612b1657600080fd5b81516109d681612661565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b715784516001600160a01b031683529383019391830191600101612b4c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612ba757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e624949c3009df3e91be6c893869e0cf74245fc478f075277f615fc33568427764736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102605760003560e01c806375cb1bd111610144578063a071dcf4116100b6578063d12a76881161007a578063d12a76881461070f578063dcda6af314610725578063dd62ed3e14610745578063e7dad4f91461078b578063ec28438a146107c4578063f2fde38b146107e457600080fd5b8063a071dcf414610679578063a457c2d71461068f578063a9059cbb146106af578063b6fa37bc146106cf578063c49b9a80146106ef57600080fd5b806385d4787b1161010857806385d4787b146105c657806386f6c3c1146105e65780638da5cb5b146106065780638ea5220f1461062457806395d89b41146106445780639b0e2e861461065957600080fd5b806375cb1bd11461053057806375f0a874146105505780637ca2ea44146105705780637d1db4a51461059057806385141a77146105a657600080fd5b806339509351116101dd5780634a74bb02116101a15780634a74bb02146104615780634bf2c7c9146104825780635342acb4146104a257806370a08231146104db578063715018a6146104fb57806371b9189c1461051057600080fd5b806339509351146103cc5780633bd5d173146103ec5780634549b0391461040c57806348c54b9d1461042c57806349bd5a5e1461044157600080fd5b806318160ddd1161022457806318160ddd1461034057806323b872dd146103555780632d83811914610375578063313ce56714610395578063317d9453146103b757600080fd5b8063024022f71461026c57806306fdde031461028e578063095ea7b3146102b957806313114a9d146102e95780631694505e1461030857600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c6102873660046125ca565b610804565b005b34801561029a57600080fd5b506102a3610847565b6040516102b0919061260c565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004612686565b6108d9565b60405190151581526020016102b0565b3480156102f557600080fd5b50600a545b6040519081526020016102b0565b34801561031457600080fd5b50601754610328906001600160a01b031681565b6040516001600160a01b0390911681526020016102b0565b34801561034c57600080fd5b506008546102fa565b34801561036157600080fd5b506102d96103703660046126b2565b6108f0565b34801561038157600080fd5b506102fa6103903660046126f3565b610959565b3480156103a157600080fd5b50600d5460405160ff90911681526020016102b0565b3480156103c357600080fd5b506102fa6109dd565b3480156103d857600080fd5b506102d96103e7366004612686565b6109ed565b3480156103f857600080fd5b5061028c6104073660046126f3565b610a23565b34801561041857600080fd5b506102fa61042736600461271c565b610b0d565b34801561043857600080fd5b5061028c610b9a565b34801561044d57600080fd5b50601854610328906001600160a01b031681565b34801561046d57600080fd5b506018546102d990600160a81b900460ff1681565b34801561048e57600080fd5b5061028c61049d3660046126f3565b610bdd565b3480156104ae57600080fd5b506102d96104bd366004612748565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156104e757600080fd5b506102fa6104f6366004612748565b610c0c565b34801561050757600080fd5b5061028c610c6b565b34801561051c57600080fd5b5061028c61052b3660046125ca565b610cdf565b34801561053c57600080fd5b5061028c61054b366004612765565b610d15565b34801561055c57600080fd5b50601b54610328906001600160a01b031681565b34801561057c57600080fd5b5061028c61058b3660046126f3565b610d7e565b34801561059c57600080fd5b506102fa60195481565b3480156105b257600080fd5b50601e54610328906001600160a01b031681565b3480156105d257600080fd5b5061028c6105e13660046127c6565b610dbc565b3480156105f257600080fd5b5061028c61060136600461288b565b610df1565b34801561061257600080fd5b506000546001600160a01b0316610328565b34801561063057600080fd5b50601d54610328906001600160a01b031681565b34801561065057600080fd5b506102a3610e98565b34801561066557600080fd5b5061028c6106743660046127c6565b610ea7565b34801561068557600080fd5b506102fa600e5481565b34801561069b57600080fd5b506102d96106aa366004612686565b610edc565b3480156106bb57600080fd5b506102d96106ca366004612686565b610f2b565b3480156106db57600080fd5b50601c54610328906001600160a01b031681565b3480156106fb57600080fd5b5061028c61070a3660046128ce565b610f38565b34801561071b57600080fd5b506102fa601a5481565b34801561073157600080fd5b5061028c6107403660046128e9565b610fba565b34801561075157600080fd5b506102fa610760366004612955565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b34801561079757600080fd5b506102d96107a6366004612748565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156107d057600080fd5b5061028c6107df3660046126f3565b6110b0565b3480156107f057600080fd5b5061028c6107ff366004612748565b6110ee565b6000546001600160a01b031633146108375760405162461bcd60e51b815260040161082e9061298e565b60405180910390fd5b610843828260006111d8565b5050565b6060600b8054610856906129c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906129c3565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e6338484611248565b5060015b92915050565b60006108fd84848461136c565b61094f843361094a85604051806060016040528060288152602001612bc1602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611780565b611248565b5060019392505050565b60006009548211156109c05760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161082e565b60006109ca6117ba565b90506109d683826117dd565b9392505050565b60006109e830610c0c565b905090565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916108e691859061094a908661181f565b3360008181526006602052604090205460ff1615610a985760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161082e565b6000610aa38361187e565b505050506001600160a01b038416600090815260016020526040902054919250610acf919050826118cd565b6001600160a01b038316600090815260016020526040902055600954610af590826118cd565b600955600a54610b05908461181f565b600a55505050565b6000600854831115610b615760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161082e565b81610b80576000610b718461187e565b509395506108ea945050505050565b6000610b8b8461187e565b509295506108ea945050505050565b6000546001600160a01b03163314610bc45760405162461bcd60e51b815260040161082e9061298e565b6000610bcf30610c0c565b9050610bda8161190f565b50565b6000546001600160a01b03163314610c075760405162461bcd60e51b815260040161082e9061298e565b601055565b6001600160a01b03811660009081526006602052604081205460ff1615610c4957506001600160a01b031660009081526002602052604090205490565b6001600160a01b0382166000908152600160205260409020546108ea90610959565b6000546001600160a01b03163314610c955760405162461bcd60e51b815260040161082e9061298e565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610d095760405162461bcd60e51b815260040161082e9061298e565b610843828260016111d8565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161082e9061298e565b601b80546001600160a01b039485166001600160a01b031991821617909155601c805493851693821693909317909255601d8054919093169116179055565b6000546001600160a01b03163314610da85760405162461bcd60e51b815260040161082e9061298e565b610db681633b9aca00612a14565b601a5550565b6000546001600160a01b03163314610de65760405162461bcd60e51b815260040161082e9061298e565b610bda816001611a4e565b6000546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161082e9061298e565b610e2f82610e29868661181f565b9061181f565b606414610e7e5760405162461bcd60e51b815260206004820152601d60248201527f4665652070657263656e74616765206d75737420657175616c20313030000000604482015260640161082e565b600e95909555601292909255601355601455600f55601155565b6060600c8054610856906129c3565b6000546001600160a01b03163314610ed15760405162461bcd60e51b815260040161082e9061298e565b610bda816000611a4e565b60006108e6338461094a85604051806060016040528060258152602001612be9602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611780565b60006108e633848461136c565b6000546001600160a01b03163314610f625760405162461bcd60e51b815260040161082e9061298e565b60188054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610faf90831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610fe45760405162461bcd60e51b815260040161082e9061298e565b60008382146110355760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e677468000000000000000000604482015260640161082e565b838110156110a9576110973386868481811061105357611053612a33565b90506020020160208101906110689190612748565b85858581811061107a5761107a612a33565b90506020020135633b9aca006110909190612a14565b6000611adf565b6110a2600182612a49565b9050611035565b5050505050565b6000546001600160a01b031633146110da5760405162461bcd60e51b815260040161082e9061298e565b6110e881633b9aca00612a14565b60195550565b6000546001600160a01b031633146111185760405162461bcd60e51b815260040161082e9061298e565b6001600160a01b03811661117d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60005b828110156112425760008484838181106111f7576111f7612a33565b905060200201602081019061120c9190612748565b6001600160a01b03166000908152600560205260409020805460ff1916841515179055508061123a81612a61565b9150506111db565b50505050565b6001600160a01b0383166112aa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161082e565b6001600160a01b03821661130b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161082e565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113d05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161082e565b6001600160a01b0382166114325760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161082e565b600081116114945760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161082e565b6000546001600160a01b038481169116148015906114c057506000546001600160a01b03838116911614155b80156114da5750601e546001600160a01b03838116911614155b15611542576019548111156115425760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b606482015260840161082e565b600061154d30610c0c565b9050601954811061155d57506019545b601a5481101580156115795750601854600160a01b900460ff16155b801561159357506018546001600160a01b03858116911614155b80156115a85750601854600160a81b900460ff165b1561160857601a5481106115bb5750601a545b60006115dd60646115d760115485611c5690919063ffffffff16565b906117dd565b905060006115eb83836118cd565b905080156115fc576115fc81611cd5565b6116058261190f565b50505b6018546001600160a01b0385811691161461168f576001600160a01b03841660009081526004602052604090205460ff16156116565760405162461bcd60e51b815260040161082e90612a7c565b6001600160a01b03831660009081526004602052604090205460ff161561168f5760405162461bcd60e51b815260040161082e90612a7c565b6001600160a01b03841660009081526005602052604081205460ff161580156116d157506001600160a01b03841660009081526005602052604090205460ff16155b80156116eb57506000546001600160a01b03868116911614155b801561170557506000546001600160a01b03858116911614155b905080801561171657506000601054115b1561177457600060646010548561172d9190612a14565b6117379190612acb565b9050801561175957601e546117599087906001600160a01b0316836000611adf565b61176e868661176887856118cd565b85611adf565b506110a9565b6110a985858584611adf565b600081848411156117a45760405162461bcd60e51b815260040161082e919061260c565b5060006117b18486612aed565b95945050505050565b60008060006117c7611d7c565b90925090506117d682826117dd565b9250505090565b60006109d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611efe565b60008061182c8385612a49565b9050838110156109d65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161082e565b60008060008060008060008060006118958a611f2c565b92509250925060008060006118b38d86866118ae6117ba565b611f6e565b919f909e50909c50959a5093985091965092945050505050565b60006109d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611780565b6018805460ff60a01b1916600160a01b17905561192b81611fbe565b6000479050600061194c60646115d760125485611c5690919063ffffffff16565b9050600061196a60646115d760135486611c5690919063ffffffff16565b9050600061198860646115d760145487611c5690919063ffffffff16565b601b546040519192506001600160a01b03169084156108fc029085906000818181858888f193505050501580156119c3573d6000803e3d6000fd5b50601c546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156119fe573d6000803e3d6000fd5b50601d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611a39573d6000803e3d6000fd5b50506018805460ff60a01b1916905550505050565b60005b8251811015611ada576000838281518110611a6e57611a6e612a33565b602002602001015190508215611aa6576001600160a01b0381166000908152600460205260409020805460ff19166001179055611ac7565b6001600160a01b0381166000908152600460205260409020805460ff191690555b5080611ad281612a61565b915050611a51565b505050565b80611aec57611aec612118565b6001600160a01b03841660009081526006602052604090205460ff168015611b2d57506001600160a01b03831660009081526006602052604090205460ff16155b15611b4257611b3d848484612146565b611c40565b6001600160a01b03841660009081526006602052604090205460ff16158015611b8357506001600160a01b03831660009081526006602052604090205460ff165b15611b9357611b3d84848461226c565b6001600160a01b03841660009081526006602052604090205460ff16158015611bd557506001600160a01b03831660009081526006602052604090205460ff16155b15611be557611b3d848484612315565b6001600160a01b03841660009081526006602052604090205460ff168015611c2557506001600160a01b03831660009081526006602052604090205460ff165b15611c3557611b3d848484612359565b611c40848484612315565b8061124257611242601554600e55601654600f55565b600082611c65575060006108ea565b6000611c718385612a14565b905082611c7e8583612acb565b146109d65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161082e565b6018805460ff60a01b1916600160a01b1790556000611cf58260026117dd565b90506000611d0383836118cd565b905047611d0f83611fbe565b6000611d1b47836118cd565b9050611d2783826123cc565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506018805460ff60a01b19169055505050565b6009546008546000918291825b600754811015611ece57826001600060078481548110611dab57611dab612a33565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611e165750816002600060078481548110611def57611def612a33565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611e2c57600954600854945094505050509091565b611e726001600060078481548110611e4657611e46612a33565b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906118cd565b9250611eba6002600060078481548110611e8e57611e8e612a33565b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906118cd565b915080611ec681612a61565b915050611d89565b50600854600954611ede916117dd565b821015611ef5576009546008549350935050509091565b90939092509050565b60008183611f1f5760405162461bcd60e51b815260040161082e919061260c565b5060006117b18486612acb565b600080600080611f3b8561249a565b90506000611f48866124b6565b90506000611f6082611f5a89866118cd565b906118cd565b979296509094509092505050565b6000808080611f7d8886611c56565b90506000611f8b8887611c56565b90506000611f998888611c56565b90506000611fab82611f5a86866118cd565b939b939a50919850919650505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ff357611ff3612a33565b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561204c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120709190612b04565b8160018151811061208357612083612a33565b6001600160a01b0392831660209182029290920101526017546120a99130911684611248565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac947906120e2908590600090869030904290600401612b21565b600060405180830381600087803b1580156120fc57600080fd5b505af1158015612110573d6000803e3d6000fd5b505050505050565b600e541580156121285750600f54155b1561212f57565b600e8054601555600f805460165560009182905555565b6000806000806000806121588761187e565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061218a90886118cd565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546121b990876118cd565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546121e8908661181f565b6001600160a01b03891660009081526001602052604090205561220a816124d2565b612214848361255a565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161225991815260200190565b60405180910390a3505050505050505050565b60008060008060008061227e8761187e565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506122b090876118cd565b6001600160a01b03808b16600090815260016020908152604080832094909455918b168152600290915220546122e6908461181f565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546121e8908661181f565b6000806000806000806123278761187e565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506121b990876118cd565b60008060008060008061236b8761187e565b6001600160a01b038f16600090815260026020526040902054959b5093995091975095509350915061239d90886118cd565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546122b090876118cd565b6017546123e49030906001600160a01b031684611248565b6017546001600160a01b031663f305d71982308560008061240d6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612475573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110a99190612b92565b60006108ea60646115d7600e5485611c5690919063ffffffff16565b60006108ea60646115d7600f5485611c5690919063ffffffff16565b60006124dc6117ba565b905060006124ea8383611c56565b30600090815260016020526040902054909150612507908261181f565b3060009081526001602090815260408083209390935560069052205460ff1615611ada5730600090815260026020526040902054612545908461181f565b30600090815260026020526040902055505050565b60095461256790836118cd565b600955600a54612577908261181f565b600a555050565b60008083601f84011261259057600080fd5b50813567ffffffffffffffff8111156125a857600080fd5b6020830191508360208260051b85010111156125c357600080fd5b9250929050565b600080602083850312156125dd57600080fd5b823567ffffffffffffffff8111156125f457600080fd5b6126008582860161257e565b90969095509350505050565b600060208083528351808285015260005b818110156126395785810183015185820160400152820161261d565b8181111561264b576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610bda57600080fd5b803561268181612661565b919050565b6000806040838503121561269957600080fd5b82356126a481612661565b946020939093013593505050565b6000806000606084860312156126c757600080fd5b83356126d281612661565b925060208401356126e281612661565b929592945050506040919091013590565b60006020828403121561270557600080fd5b5035919050565b8035801515811461268157600080fd5b6000806040838503121561272f57600080fd5b8235915061273f6020840161270c565b90509250929050565b60006020828403121561275a57600080fd5b81356109d681612661565b60008060006060848603121561277a57600080fd5b833561278581612661565b9250602084013561279581612661565b915060408401356127a581612661565b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156127d957600080fd5b823567ffffffffffffffff808211156127f157600080fd5b818501915085601f83011261280557600080fd5b813581811115612817576128176127b0565b8060051b604051601f19603f8301168101818110858211171561283c5761283c6127b0565b60405291825284820192508381018501918883111561285a57600080fd5b938501935b8285101561287f5761287085612676565b8452938501939285019261285f565b98975050505050505050565b60008060008060008060c087890312156128a457600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b6000602082840312156128e057600080fd5b6109d68261270c565b600080600080604085870312156128ff57600080fd5b843567ffffffffffffffff8082111561291757600080fd5b6129238883890161257e565b9096509450602087013591508082111561293c57600080fd5b506129498782880161257e565b95989497509550505050565b6000806040838503121561296857600080fd5b823561297381612661565b9150602083013561298381612661565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806129d757607f821691505b602082108114156129f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612a2e57612a2e6129fe565b500290565b634e487b7160e01b600052603260045260246000fd5b60008219821115612a5c57612a5c6129fe565b500190565b6000600019821415612a7557612a756129fe565b5060010190565b6020808252602f908201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060408201526e7472616e7366657220746f6b656e7360881b606082015260800190565b600082612ae857634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612aff57612aff6129fe565b500390565b600060208284031215612b1657600080fd5b81516109d681612661565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612b715784516001600160a01b031683529383019391830191600101612b4c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612ba757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e624949c3009df3e91be6c893869e0cf74245fc478f075277f615fc33568427764736f6c634300080a0033

Deployed Bytecode Sourcemap

25375:20805:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32794:118;;;;;;;;;;-1:-1:-1;32794:118:0;;;;;:::i;:::-;;:::i;:::-;;28401:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29313:161;;;;;;;;;;-1:-1:-1;29313:161:0;;;;;:::i;:::-;;:::i;:::-;;;2190:14:1;;2183:22;2165:41;;2153:2;2138:18;29313:161:0;2025:187:1;30306:87:0;;;;;;;;;;-1:-1:-1;30375:10:0;;30306:87;;;2363:25:1;;;2351:2;2336:18;30306:87:0;2217:177:1;26599:41:0;;;;;;;;;;-1:-1:-1;26599:41:0;;;;-1:-1:-1;;;;;26599:41:0;;;;;;-1:-1:-1;;;;;2590:32:1;;;2572:51;;2560:2;2545:18;26599:41:0;2399:230:1;28678:95:0;;;;;;;;;;-1:-1:-1;28758:7:0;;28678:95;;29482:313;;;;;;;;;;-1:-1:-1;29482:313:0;;;;;:::i;:::-;;:::i;31764:253::-;;;;;;;;;;-1:-1:-1;31764:253:0;;;;;:::i;:::-;;:::i;28587:83::-;;;;;;;;;;-1:-1:-1;28653:9:0;;28587:83;;28653:9;;;;3422:36:1;;3410:2;3395:18;28587:83:0;3280:184:1;35276:115:0;;;;;;;;;;;;;:::i;29803:218::-;;;;;;;;;;-1:-1:-1;29803:218:0;;;;;:::i;:::-;;:::i;30935:377::-;;;;;;;;;;-1:-1:-1;30935:377:0;;;;;:::i;:::-;;:::i;31320:436::-;;;;;;;;;;-1:-1:-1;31320:436:0;;;;;:::i;:::-;;:::i;34473:167::-;;;;;;;;;;;;;:::i;26647:28::-;;;;;;;;;;-1:-1:-1;26647:28:0;;;;-1:-1:-1;;;;;26647:28:0;;;26712:40;;;;;;;;;;-1:-1:-1;26712:40:0;;;;-1:-1:-1;;;26712:40:0;;;;;;33164:86;;;;;;;;;;-1:-1:-1;33164:86:0;;;;;:::i;:::-;;:::i;38723:123::-;;;;;;;;;;-1:-1:-1;38723:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;38811:27:0;38787:4;38811:27;;;:18;:27;;;;;;;;;38723:123;28781:198;;;;;;;;;;-1:-1:-1;28781:198:0;;;;;:::i;:::-;;:::i;16888:148::-;;;;;;;;;;;;;:::i;32667:119::-;;;;;;;;;;-1:-1:-1;32667:119:0;;;;;:::i;:::-;;:::i;34103:245::-;;;;;;;;;;-1:-1:-1;34103:245:0;;;;;:::i;:::-;;:::i;26883:75::-;;;;;;;;;;-1:-1:-1;26883:75:0;;;;-1:-1:-1;;;;;26883:75:0;;;33919:176;;;;;;;;;;-1:-1:-1;33919:176:0;;;;;:::i;:::-;;:::i;26759:46::-;;;;;;;;;;;;;;;;27124:70;;;;;;;;;;-1:-1:-1;27124:70:0;;;;-1:-1:-1;;;;;27124:70:0;;;34648:127;;;;;;;;;;-1:-1:-1;34648:127:0;;;;;:::i;:::-;;:::i;33262:649::-;;;;;;;;;;-1:-1:-1;33262:649:0;;;;;:::i;:::-;;:::i;16245:79::-;;;;;;;;;;-1:-1:-1;16283:7:0;16310:6;-1:-1:-1;;;;;16310:6:0;16245:79;;27048:69;;;;;;;;;;-1:-1:-1;27048:69:0;;;;-1:-1:-1;;;;;27048:69:0;;;28492:87;;;;;;;;;;;;;:::i;34783:131::-;;;;;;;;;;-1:-1:-1;34783:131:0;;;;;:::i;:::-;;:::i;26172:25::-;;;;;;;;;;;;;;;;30029:269;;;;;;;;;;-1:-1:-1;30029:269:0;;;;;:::i;:::-;;:::i;28987:167::-;;;;;;;;;;-1:-1:-1;28987:167:0;;;;;:::i;:::-;;:::i;26965:76::-;;;;;;;;;;-1:-1:-1;26965:76:0;;;;-1:-1:-1;;;;;26965:76:0;;;35399:171;;;;;;;;;;-1:-1:-1;35399:171:0;;;;;:::i;:::-;;:::i;26812:62::-;;;;;;;;;;;;;;;;30401:401;;;;;;;;;;-1:-1:-1;30401:401:0;;;;;:::i;:::-;;:::i;29162:143::-;;;;;;;;;;-1:-1:-1;29162:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;29270:18:0;;;29243:7;29270:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29162:143;34356:109;;;;;;;;;;-1:-1:-1;34356:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;34441:16:0;34417:4;34441:16;;;:10;:16;;;;;;;;;34356:109;30810:119;;;;;;;;;;-1:-1:-1;30810:119:0;;;;;:::i;:::-;;:::i;17191:244::-;;;;;;;;;;-1:-1:-1;17191:244:0;;;;;:::i;:::-;;:::i;32794:118::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;;;;;;;;;32874:30:::1;32887:9;;32898:5;32874:12;:30::i;:::-;32794:118:::0;;:::o;28401:83::-;28438:13;28471:5;28464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28401:83;:::o;29313:161::-;29388:4;29405:39;8815:10;29428:7;29437:6;29405:8;:39::i;:::-;-1:-1:-1;29462:4:0;29313:161;;;;;:::o;29482:313::-;29580:4;29597:36;29607:6;29615:9;29626:6;29597:9;:36::i;:::-;29644:121;29653:6;8815:10;29675:89;29713:6;29675:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29675:19:0;;;;;;:11;:19;;;;;;;;8815:10;29675:33;;;;;;;;;;:37;:89::i;:::-;29644:8;:121::i;:::-;-1:-1:-1;29783:4:0;29482:313;;;;;:::o;31764:253::-;31830:7;31869;;31858;:18;;31850:73;;;;-1:-1:-1;;;31850:73:0;;8971:2:1;31850:73:0;;;8953:21:1;9010:2;8990:18;;;8983:30;9049:34;9029:18;;;9022:62;-1:-1:-1;;;9100:18:1;;;9093:40;9150:19;;31850:73:0;8769:406:1;31850:73:0;31934:19;31957:10;:8;:10::i;:::-;31934:33;-1:-1:-1;31985:24:0;:7;31934:33;31985:11;:24::i;:::-;31978:31;31764:253;-1:-1:-1;;;31764:253:0:o;35276:115::-;35332:7;35359:24;35377:4;35359:9;:24::i;:::-;35352:31;;35276:115;:::o;29803:218::-;8815:10;29891:4;29940:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29940:34:0;;;;;;;;;;29891:4;;29908:83;;29931:7;;29940:50;;29979:10;29940:38;:50::i;30935:377::-;8815:10;30987:14;31036:19;;;:11;:19;;;;;;;;31035:20;31027:77;;;;-1:-1:-1;;;31027:77:0;;9382:2:1;31027:77:0;;;9364:21:1;9421:2;9401:18;;;9394:30;9460:34;9440:18;;;9433:62;-1:-1:-1;;;9511:18:1;;;9504:42;9563:19;;31027:77:0;9180:408:1;31027:77:0;31116:15;31140:19;31151:7;31140:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31188:15:0;;;;;;:7;:15;;;;;;31115:44;;-1:-1:-1;31188:28:0;;:15;-1:-1:-1;31115:44:0;31188:19;:28::i;:::-;-1:-1:-1;;;;;31170:15:0;;;;;;:7;:15;;;;;:46;31237:7;;:20;;31249:7;31237:11;:20::i;:::-;31227:7;:30;31281:10;;:23;;31296:7;31281:14;:23::i;:::-;31268:10;:36;-1:-1:-1;;;30935:377:0:o;31320:436::-;31410:7;31449;;31438;:18;;31430:62;;;;-1:-1:-1;;;31430:62:0;;9795:2:1;31430:62:0;;;9777:21:1;9834:2;9814:18;;;9807:30;9873:33;9853:18;;;9846:61;9924:18;;31430:62:0;9593:355:1;31430:62:0;31508:17;31503:246;;31543:15;31567:19;31578:7;31567:10;:19::i;:::-;-1:-1:-1;31542:44:0;;-1:-1:-1;31601:14:0;;-1:-1:-1;;;;;31601:14:0;31503:246;31650:23;31681:19;31692:7;31681:10;:19::i;:::-;-1:-1:-1;31648:52:0;;-1:-1:-1;31715:22:0;;-1:-1:-1;;;;;31715:22:0;34473:167;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;34528:28:::1;34559:24;34577:4;34559:9;:24::i;:::-;34528:55;;34594:38;34611:20;34594:16;:38::i;:::-;34517:123;34473:167::o:0;33164:86::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;33229:7:::1;:13:::0;33164:86::o;28781:198::-;-1:-1:-1;;;;;28871:20:0;;28847:7;28871:20;;;:11;:20;;;;;;;;28867:49;;;-1:-1:-1;;;;;;28900:16:0;;;;;:7;:16;;;;;;;28781:198::o;28867:49::-;-1:-1:-1;;;;;28954:16:0;;;;;;:7;:16;;;;;;28934:37;;:19;:37::i;16888:148::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;16995:1:::1;16979:6:::0;;16958:40:::1;::::0;-1:-1:-1;;;;;16979:6:0;;::::1;::::0;16958:40:::1;::::0;16995:1;;16958:40:::1;17026:1;17009:19:::0;;-1:-1:-1;;;;;;17009:19:0::1;::::0;;16888:148::o;32667:119::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;32749:29:::1;32762:9;;32773:4;32749:12;:29::i;34103:245::-:0;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;34226:15:::1;:34:::0;;-1:-1:-1;;;;;34226:34:0;;::::1;-1:-1:-1::0;;;;;;34226:34:0;;::::1;;::::0;;;34271:16:::1;:36:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;34318:9:::1;:22:::0;;;;;::::1;::::0;::::1;;::::0;;34103:245::o;33919:176::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;34049:38:::1;:30:::0;34082:5:::1;34049:38;:::i;:::-;34017:29;:70:::0;-1:-1:-1;33919:176:0:o;34648:127::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;34731:36:::1;34751:9;34762:4;34731:19;:36::i;33262:649::-:0;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;33490:76:::1;33548:17:::0;33490:53:::1;:23:::0;33518:24;33490:27:::1;:53::i;:::-;:57:::0;::::1;:76::i;:::-;33570:3;33490:83;33482:125;;;::::0;-1:-1:-1;;;33482:125:0;;10460:2:1;33482:125:0::1;::::0;::::1;10442:21:1::0;10499:2;10479:18;;;10472:30;10538:31;10518:18;;;10511:59;10587:18;;33482:125:0::1;10258:353:1::0;33482:125:0::1;33618:6;:16:::0;;;;33645:25:::1;:51:::0;;;;33707:23:::1;:50:::0;33768:16:::1;:36:::0;33815:12:::1;:28:::0;33854:27:::1;:49:::0;33262:649::o;28492:87::-;28531:13;28564:7;28557:14;;;;;:::i;34783:131::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;34869:37:::1;34889:9;34900:5;34869:19;:37::i;30029:269::-:0;30122:4;30139:129;8815:10;30162:7;30171:96;30210:15;30171:96;;;;;;;;;;;;;;;;;8815:10;30171:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30171:34:0;;;;;;;;;;;;:38;:96::i;28987:167::-;29065:4;29082:42;8815:10;29106:9;29117:6;29082:9;:42::i;35399:171::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;35476:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;35476:32:0::1;-1:-1:-1::0;;;;35476:32:0;;::::1;;::::0;;35524:38:::1;::::0;::::1;::::0;::::1;::::0;35500:8;2190:14:1;2183:22;2165:41;;2153:2;2138:18;;2025:187;35524:38:0::1;;;;;;;;35399:171:::0;:::o;30401:401::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;30508:16:::1;30547:35:::0;;::::1;30539:71;;;::::0;-1:-1:-1;;;30539:71:0;;10818:2:1;30539:71:0::1;::::0;::::1;10800:21:1::0;10857:2;10837:18;;;10830:30;10896:25;10876:18;;;10869:53;10939:18;;30539:71:0::1;10616:347:1::0;30539:71:0::1;30627:28:::0;;::::1;30621:174;;;30671:84;8815:10:::0;30700::::1;;30711:8;30700:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;30722:7;;30730:8;30722:17;;;;;;;:::i;:::-;;;;;;;30742:5;30722:25;;;;:::i;:::-;30749:5;30671:14;:84::i;:::-;30770:13;30782:1;30770:13:::0;::::1;:::i;:::-;;;30621:174;;;30497:305;30401:401:::0;;;;:::o;30810:119::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;30902:19:::1;:11:::0;30916:5:::1;30902:19;:::i;:::-;30887:12;:34:::0;-1:-1:-1;30810:119:0:o;17191:244::-;16457:6;;-1:-1:-1;;;;;16457:6:0;8815:10;16457:22;16449:67;;;;-1:-1:-1;;;16449:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17280:22:0;::::1;17272:73;;;::::0;-1:-1:-1;;;17272:73:0;;11435:2:1;17272:73:0::1;::::0;::::1;11417:21:1::0;11474:2;11454:18;;;11447:30;11513:34;11493:18;;;11486:62;-1:-1:-1;;;11564:18:1;;;11557:36;11610:19;;17272:73:0::1;11233:402:1::0;17272:73:0::1;17382:6;::::0;;17361:38:::1;::::0;-1:-1:-1;;;;;17361:38:0;;::::1;::::0;17382:6;::::1;::::0;17361:38:::1;::::0;::::1;17410:6;:17:::0;;-1:-1:-1;;;;;;17410:17:0::1;-1:-1:-1::0;;;;;17410:17:0;;;::::1;::::0;;;::::1;::::0;;17191:244::o;32920:236::-;33007:9;33002:147;33022:20;;;33002:147;;;33064:12;33079:9;;33089:1;33079:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33106:24:0;;;;;:18;:24;;;;;:31;;-1:-1:-1;;33106:31:0;;;;;;;-1:-1:-1;33044:3:0;;;;:::i;:::-;;;;33002:147;;;;32920:236;;;:::o;38854:337::-;-1:-1:-1;;;;;38947:19:0;;38939:68;;;;-1:-1:-1;;;38939:68:0;;11982:2:1;38939:68:0;;;11964:21:1;12021:2;12001:18;;;11994:30;12060:34;12040:18;;;12033:62;-1:-1:-1;;;12111:18:1;;;12104:34;12155:19;;38939:68:0;11780:400:1;38939:68:0;-1:-1:-1;;;;;39026:21:0;;39018:68;;;;-1:-1:-1;;;39018:68:0;;12387:2:1;39018:68:0;;;12369:21:1;12426:2;12406:18;;;12399:30;12465:34;12445:18;;;12438:62;-1:-1:-1;;;12516:18:1;;;12509:32;12558:19;;39018:68:0;12185:398:1;39018:68:0;-1:-1:-1;;;;;39099:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39151:32;;2363:25:1;;;39151:32:0;;2336:18:1;39151:32:0;;;;;;;38854:337;;;:::o;39199:2165::-;-1:-1:-1;;;;;39321:18:0;;39313:68;;;;-1:-1:-1;;;39313:68:0;;12790:2:1;39313:68:0;;;12772:21:1;12829:2;12809:18;;;12802:30;12868:34;12848:18;;;12841:62;-1:-1:-1;;;12919:18:1;;;12912:35;12964:19;;39313:68:0;12588:401:1;39313:68:0;-1:-1:-1;;;;;39400:16:0;;39392:64;;;;-1:-1:-1;;;39392:64:0;;13196:2:1;39392:64:0;;;13178:21:1;13235:2;13215:18;;;13208:30;13274:34;13254:18;;;13247:62;-1:-1:-1;;;13325:18:1;;;13318:33;13368:19;;39392:64:0;12994:399:1;39392:64:0;39484:1;39475:6;:10;39467:64;;;;-1:-1:-1;;;39467:64:0;;13600:2:1;39467:64:0;;;13582:21:1;13639:2;13619:18;;;13612:30;13678:34;13658:18;;;13651:62;-1:-1:-1;;;13729:18:1;;;13722:39;13778:19;;39467:64:0;13398:405:1;39467:64:0;16283:7;16310:6;-1:-1:-1;;;;;39545:15:0;;;16310:6;;39545:15;;;;:32;;-1:-1:-1;16283:7:0;16310:6;-1:-1:-1;;;;;39564:13:0;;;16310:6;;39564:13;;39545:32;:52;;;;-1:-1:-1;39587:10:0;;-1:-1:-1;;;;;39581:16:0;;;39587:10;;39581:16;;39545:52;39542:145;;;39630:12;;39620:6;:22;;39612:75;;;;-1:-1:-1;;;39612:75:0;;14010:2:1;39612:75:0;;;13992:21:1;14049:2;14029:18;;;14022:30;14088:34;14068:18;;;14061:62;-1:-1:-1;;;14139:18:1;;;14132:38;14187:19;;39612:75:0;13808:404:1;39612:75:0;39700:28;39731:24;39749:4;39731:9;:24::i;:::-;39700:55;;39795:12;;39771:20;:36;39768:112;;-1:-1:-1;39856:12:0;;39768:112;39918:29;;39894:20;:53;;:74;;;;-1:-1:-1;39952:16:0;;-1:-1:-1;;;39952:16:0;;;;39951:17;39894:74;:99;;;;-1:-1:-1;39980:13:0;;-1:-1:-1;;;;;39972:21:0;;;39980:13;;39972:21;;39894:99;:124;;;;-1:-1:-1;39997:21:0;;-1:-1:-1;;;39997:21:0;;;;39894:124;39890:702;;;40062:29;;40038:20;:53;40035:145;;-1:-1:-1;40135:29:0;;40035:145;40196:28;40227:62;40285:3;40227:53;40252:27;;40227:20;:24;;:53;;;;:::i;:::-;:57;;:62::i;:::-;40196:93;-1:-1:-1;40304:27:0;40334:46;:20;40196:93;40334:24;:46::i;:::-;40304:76;-1:-1:-1;40414:23:0;;40411:100;;40460:35;40475:19;40460:14;:35::i;:::-;40527:38;40544:20;40527:16;:38::i;:::-;40020:572;;39890:702;40615:13;;-1:-1:-1;;;;;40607:21:0;;;40615:13;;40607:21;40604:222;;-1:-1:-1;;;;;40654:16:0;;;;;;:10;:16;;;;;;;;40653:17;40645:78;;;;-1:-1:-1;;;40645:78:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40747:14:0;;;;;;:10;:14;;;;;;;;40746:15;40738:76;;;;-1:-1:-1;;;40738:76:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40862:24:0;;40846:12;40862:24;;;:18;:24;;;;;;;;40861:25;:52;;;;-1:-1:-1;;;;;;40891:22:0;;;;;;:18;:22;;;;;;;;40890:23;40861:52;:71;;;;-1:-1:-1;16283:7:0;16310:6;-1:-1:-1;;;;;40917:15:0;;;16310:6;;40917:15;;40861:71;:88;;;;-1:-1:-1;16283:7:0;16310:6;-1:-1:-1;;;;;40936:13:0;;;16310:6;;40936:13;;40861:88;40846:103;;40973:7;:22;;;;;40994:1;40984:7;;:11;40973:22;40970:387;;;41012:22;41056:3;41046:7;;41037:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;41012:47;-1:-1:-1;41077:18:0;;41074:113;;41137:10;;41116:55;;41131:4;;-1:-1:-1;;;;;41137:10:0;41149:14;41137:10;41116:14;:55::i;:::-;41201:61;41216:4;41222:2;41226:26;:6;41237:14;41226:10;:26::i;:::-;41254:7;41201:14;:61::i;:::-;40997:277;40970:387;;;41304:41;41319:4;41325:2;41329:6;41337:7;41304:14;:41::i;5066:192::-;5152:7;5188:12;5180:6;;;;5172:29;;;;-1:-1:-1;;;5172:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5212:9:0;5224:5;5228:1;5224;:5;:::i;:::-;5212:17;5066:192;-1:-1:-1;;;;;5066:192:0:o;36972:163::-;37013:7;37034:15;37051;37070:19;:17;:19::i;:::-;37033:56;;-1:-1:-1;37033:56:0;-1:-1:-1;37107:20:0;37033:56;;37107:11;:20::i;:::-;37100:27;;;;36972:163;:::o;6464:132::-;6522:7;6549:39;6553:1;6556;6549:39;;;;;;;;;;;;;;;;;:3;:39::i;4163:181::-;4221:7;;4253:5;4257:1;4253;:5;:::i;:::-;4241:17;;4282:1;4277;:6;;4269:46;;;;-1:-1:-1;;;4269:46:0;;15187:2:1;4269:46:0;;;15169:21:1;15226:2;15206:18;;;15199:30;15265:29;15245:18;;;15238:57;15312:18;;4269:46:0;14985:351:1;35770:419:0;35829:7;35838;35847;35856;35865;35874;35895:23;35920:12;35934:18;35956:20;35968:7;35956:11;:20::i;:::-;35894:82;;;;;;35988:15;36005:23;36030:12;36046:50;36058:7;36067:4;36073:10;36085;:8;:10::i;:::-;36046:11;:50::i;:::-;35987:109;;;;-1:-1:-1;35987:109:0;;-1:-1:-1;36147:15:0;;-1:-1:-1;36164:4:0;;-1:-1:-1;36170:10:0;;-1:-1:-1;35770:419:0;;-1:-1:-1;;;;;35770:419:0:o;4627:136::-;4685:7;4712:43;4716:1;4719;4712:43;;;;;;;;;;;;;;;;;:3;:43::i;41864:628::-;27493:16;:23;;-1:-1:-1;;;;27493:23:0;-1:-1:-1;;;27493:23:0;;;41961:38:::1;41978:20:::0;41961:16:::1;:38::i;:::-;42010:22;42035:21;42010:46;;42067:22;42092:54;42142:3;42092:45;42111:25;;42092:14;:18;;:45;;;;:::i;:54::-;42067:79;;42157:23;42183:52;42231:3;42183:43;42202:23;;42183:14;:18;;:43;;;;:::i;:52::-;42157:78;;42246:16;42265:45;42306:3;42265:36;42284:16;;42265:14;:18;;:36;;;;:::i;:45::-;42331:15;::::0;42323:49:::1;::::0;42246:64;;-1:-1:-1;;;;;;42331:15:0::1;::::0;42323:49;::::1;;;::::0;42357:14;;42331:15:::1;42323:49:::0;42331:15;42323:49;42357:14;42331:15;42323:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;42391:16:0::1;::::0;42383:51:::1;::::0;-1:-1:-1;;;;;42391:16:0;;::::1;::::0;42383:51;::::1;;;::::0;42418:15;;42391:16:::1;42383:51:::0;42391:16;42383:51;42418:15;42391:16;42383:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;42453:9:0::1;::::0;42445:37:::1;::::0;-1:-1:-1;;;;;42453:9:0;;::::1;::::0;42445:37;::::1;;;::::0;42473:8;;42453:9:::1;42445:37:::0;42453:9;42445:37;42473:8;42453:9;42445:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27539:16:0;:24;;-1:-1:-1;;;;27539:24:0;;;-1:-1:-1;;;;41864:628:0:o;34922:346::-;35017:9;35012:249;35036:9;:16;35032:1;:20;35012:249;;;35074:12;35089:9;35099:1;35089:12;;;;;;;;:::i;:::-;;;;;;;35074:27;;35119:7;35116:134;;;-1:-1:-1;;;;;35147:16:0;;;;;;:10;:16;;;;;:23;;-1:-1:-1;;35147:23:0;35166:4;35147:23;;;35116:134;;;-1:-1:-1;;;;;35218:16:0;;;;;;:10;:16;;;;;35211:23;;-1:-1:-1;;35211:23:0;;;35116:134;-1:-1:-1;35054:3:0;;;;:::i;:::-;;;;35012:249;;;;34922:346;;:::o;43691:820::-;43804:7;43800:40;;43826:14;:12;:14::i;:::-;-1:-1:-1;;;;;43857:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;43881:22:0;;;;;;:11;:22;;;;;;;;43880:23;43857:46;43853:597;;;43920:48;43942:6;43950:9;43961:6;43920:21;:48::i;:::-;43853:597;;;-1:-1:-1;;;;;43991:19:0;;;;;;:11;:19;;;;;;;;43990:20;:46;;;;-1:-1:-1;;;;;;44014:22:0;;;;;;:11;:22;;;;;;;;43990:46;43986:464;;;44053:46;44073:6;44081:9;44092:6;44053:19;:46::i;43986:464::-;-1:-1:-1;;;;;44122:19:0;;;;;;:11;:19;;;;;;;;44121:20;:47;;;;-1:-1:-1;;;;;;44146:22:0;;;;;;:11;:22;;;;;;;;44145:23;44121:47;44117:333;;;44185:44;44203:6;44211:9;44222:6;44185:17;:44::i;44117:333::-;-1:-1:-1;;;;;44251:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44274:22:0;;;;;;:11;:22;;;;;;;;44251:45;44247:203;;;44313:48;44335:6;44343:9;44354:6;44313:21;:48::i;44247:203::-;44394:44;44412:6;44420:9;44431:6;44394:17;:44::i;:::-;44466:7;44462:41;;44488:15;38645;;38636:6;:24;38686:21;;38671:12;:36;38592:123;5517:471;5575:7;5820:6;5816:47;;-1:-1:-1;5850:1:0;5843:8;;5816:47;5875:9;5887:5;5891:1;5887;:5;:::i;:::-;5875:17;-1:-1:-1;5920:1:0;5911:5;5915:1;5875:17;5911:5;:::i;:::-;:10;5903:56;;;;-1:-1:-1;;;5903:56:0;;15543:2:1;5903:56:0;;;15525:21:1;15582:2;15562:18;;;15555:30;15621:34;15601:18;;;15594:62;-1:-1:-1;;;15672:18:1;;;15665:31;15713:19;;5903:56:0;15341:397:1;41372:484:0;27493:16;:23;;-1:-1:-1;;;;27493:23:0;-1:-1:-1;;;27493:23:0;;;;41474:27:::1;:20:::0;41499:1:::1;41474:24;:27::i;:::-;41459:42:::0;-1:-1:-1;41512:17:0::1;41532:30;:20:::0;41459:42;41532:24:::1;:30::i;:::-;41512:50:::0;-1:-1:-1;41600:21:0::1;41634:22;41651:4:::0;41634:16:::1;:22::i;:::-;41669:18;41690:41;:21;41716:14:::0;41690:25:::1;:41::i;:::-;41669:62;;41744:35;41757:9;41768:10;41744:12;:35::i;:::-;41805:43;::::0;;15945:25:1;;;16001:2;15986:18;;15979:34;;;16029:18;;;16022:34;;;41805:43:0::1;::::0;15933:2:1;15918:18;41805:43:0::1;;;;;;;-1:-1:-1::0;;27539:16:0;:24;;-1:-1:-1;;;;27539:24:0;;;-1:-1:-1;;;41372:484:0:o;37143:555::-;37240:7;;37276;;37193;;;;;37294:289;37318:9;:16;37314:20;;37294:289;;;37384:7;37360;:21;37368:9;37378:1;37368:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37368:12:0;37360:21;;;;;;;;;;;;;:31;;:66;;;37419:7;37395;:21;37403:9;37413:1;37403:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37403:12:0;37395:21;;;;;;;;;;;;;:31;37360:66;37356:97;;;37436:7;;37445;;37428:25;;;;;;;37143:555;;:::o;37356:97::-;37478:34;37490:7;:21;37498:9;37508:1;37498:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37498:12:0;37490:21;;;;;;;;;;;;;37478:7;;:11;:34::i;:::-;37468:44;;37537:34;37549:7;:21;37557:9;37567:1;37557:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37557:12:0;37549:21;;;;;;;;;;;;;37537:7;;:11;:34::i;:::-;37527:44;-1:-1:-1;37336:3:0;;;;:::i;:::-;;;;37294:289;;;-1:-1:-1;37619:7:0;;37607;;:20;;:11;:20::i;:::-;37597:7;:30;37593:61;;;37637:7;;37646;;37629:25;;;;;;37143:555;;:::o;37593:61::-;37673:7;;37682;;-1:-1:-1;37143:555:0;-1:-1:-1;37143:555:0:o;7092:278::-;7178:7;7213:12;7206:5;7198:28;;;;-1:-1:-1;;;7198:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7237:9:0;7249:5;7253:1;7249;:5;:::i;36197:330::-;36257:7;36266;36275;36295:12;36310:24;36326:7;36310:15;:24::i;:::-;36295:39;;36345:18;36366:30;36388:7;36366:21;:30::i;:::-;36345:51;-1:-1:-1;36407:23:0;36433:33;36345:51;36433:17;:7;36445:4;36433:11;:17::i;:::-;:21;;:33::i;:::-;36407:59;36502:4;;-1:-1:-1;36508:10:0;;-1:-1:-1;36197:330:0;;-1:-1:-1;;;36197:330:0:o;36535:429::-;36650:7;;;;36706:24;:7;36718:11;36706;:24::i;:::-;36688:42;-1:-1:-1;36741:12:0;36756:21;:4;36765:11;36756:8;:21::i;:::-;36741:36;-1:-1:-1;36788:18:0;36809:27;:10;36824:11;36809:14;:27::i;:::-;36788:48;-1:-1:-1;36847:23:0;36873:33;36788:48;36873:17;:7;36885:4;36873:11;:17::i;:33::-;36925:7;;;;-1:-1:-1;36951:4:0;;-1:-1:-1;36535:429:0;;-1:-1:-1;;;;;;;36535:429:0:o;42500:589::-;42650:16;;;42664:1;42650:16;;;;;;;;42626:21;;42650:16;;;;;;;;;;-1:-1:-1;42650:16:0;42626:40;;42695:4;42677;42682:1;42677:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42677:23:0;;;:7;;;;;;;;;;:23;;;;42721:15;;:22;;;-1:-1:-1;;;42721:22:0;;;;:15;;;;;:20;;:22;;;;;42677:7;;42721:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42711:4;42716:1;42711:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42711:32:0;;;:7;;;;;;;;;:32;42788:15;;42756:62;;42773:4;;42788:15;42806:11;42756:8;:62::i;:::-;42857:15;;:224;;-1:-1:-1;;;42857:224:0;;-1:-1:-1;;;;;42857:15:0;;;;:66;;:224;;42938:11;;42857:15;;43008:4;;43035;;43055:15;;42857:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42555:534;42500:589;:::o;38355:229::-;38402:6;;:11;:32;;;;-1:-1:-1;38417:12:0;;:17;38402:32;38398:45;;;38355:229::o;38398:45::-;38473:6;;;38455:15;:24;38514:12;;;38490:21;:36;-1:-1:-1;38539:10:0;;;;38560:16;38355:229::o;45612:563::-;45715:15;45732:23;45757:12;45771:23;45796:12;45810:18;45832:19;45843:7;45832:10;:19::i;:::-;-1:-1:-1;;;;;45880:15:0;;;;;;:7;:15;;;;;;45714:137;;-1:-1:-1;45714:137:0;;-1:-1:-1;45714:137:0;;-1:-1:-1;45714:137:0;-1:-1:-1;45714:137:0;-1:-1:-1;45714:137:0;-1:-1:-1;45880:28:0;;45900:7;45880:19;:28::i;:::-;-1:-1:-1;;;;;45862:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45937:7;:15;;;;:28;;45957:7;45937:19;:28::i;:::-;-1:-1:-1;;;;;45919:15:0;;;;;;;:7;:15;;;;;;:46;;;;45997:18;;;;;;;:39;;46020:15;45997:22;:39::i;:::-;-1:-1:-1;;;;;45976:18:0;;;;;;:7;:18;;;;;:60;46047:26;46062:10;46047:14;:26::i;:::-;46084:23;46096:4;46102;46084:11;:23::i;:::-;46140:9;-1:-1:-1;;;;;46123:44:0;46132:6;-1:-1:-1;;;;;46123:44:0;;46151:15;46123:44;;;;2363:25:1;;2351:2;2336:18;;2217:177;46123:44:0;;;;;;;;45703:472;;;;;;45612:563;;;:::o;45029:575::-;45130:15;45147:23;45172:12;45186:23;45211:12;45225:18;45247:19;45258:7;45247:10;:19::i;:::-;-1:-1:-1;;;;;45295:15:0;;;;;;:7;:15;;;;;;45129:137;;-1:-1:-1;45129:137:0;;-1:-1:-1;45129:137:0;;-1:-1:-1;45129:137:0;-1:-1:-1;45129:137:0;-1:-1:-1;45129:137:0;-1:-1:-1;45295:28:0;;45129:137;45295:19;:28::i;:::-;-1:-1:-1;;;;;45277:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45355:18;;;;;:7;:18;;;;;:39;;45378:15;45355:22;:39::i;:::-;-1:-1:-1;;;;;45334:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45426:7;:18;;;;:39;;45449:15;45426:22;:39::i;44519:502::-;44618:15;44635:23;44660:12;44674:23;44699:12;44713:18;44735:19;44746:7;44735:10;:19::i;:::-;-1:-1:-1;;;;;44783:15:0;;;;;;:7;:15;;;;;;44617:137;;-1:-1:-1;44617:137:0;;-1:-1:-1;44617:137:0;;-1:-1:-1;44617:137:0;-1:-1:-1;44617:137:0;-1:-1:-1;44617:137:0;-1:-1:-1;44783:28:0;;44617:137;44783:19;:28::i;32025:634::-;32128:15;32145:23;32170:12;32184:23;32209:12;32223:18;32245:19;32256:7;32245:10;:19::i;:::-;-1:-1:-1;;;;;32293:15:0;;;;;;:7;:15;;;;;;32127:137;;-1:-1:-1;32127:137:0;;-1:-1:-1;32127:137:0;;-1:-1:-1;32127:137:0;-1:-1:-1;32127:137:0;-1:-1:-1;32127:137:0;-1:-1:-1;32293:28:0;;32313:7;32293:19;:28::i;:::-;-1:-1:-1;;;;;32275:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32350:7;:15;;;;:28;;32370:7;32350:19;:28::i;43097:513::-;43277:15;;43245:62;;43262:4;;-1:-1:-1;;;;;43277:15:0;43295:11;43245:8;:62::i;:::-;43350:15;;-1:-1:-1;;;;;43350:15:0;:31;43389:9;43422:4;43442:11;43350:15;;43554:7;16283;16310:6;-1:-1:-1;;;;;16310:6:0;;16245:79;43554:7;43350:252;;;;;;-1:-1:-1;;;;;;43350:252:0;;;-1:-1:-1;;;;;17667:15:1;;;43350:252:0;;;17649:34:1;17699:18;;;17692:34;;;;17742:18;;;17735:34;;;;17785:18;;;17778:34;17849:15;;;17828:19;;;17821:44;43576:15:0;17881:19:1;;;17874:35;17583:19;;43350:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;38069:129::-;38133:7;38160:30;38184:5;38160:19;38172:6;;38160:7;:11;;:19;;;;:::i;38206:141::-;38276:7;38303:36;38333:5;38303:25;38315:12;;38303:7;:11;;:25;;;;:::i;37706:355::-;37769:19;37792:10;:8;:10::i;:::-;37769:33;-1:-1:-1;37813:18:0;37834:27;:10;37769:33;37834:14;:27::i;:::-;37913:4;37897:22;;;;:7;:22;;;;;;37813:48;;-1:-1:-1;37897:38:0;;37813:48;37897:26;:38::i;:::-;37888:4;37872:22;;;;:7;:22;;;;;;;;:63;;;;37949:11;:26;;;;;;37946:107;;;38031:4;38015:22;;;;:7;:22;;;;;;:38;;38042:10;38015:26;:38::i;:::-;38006:4;37990:22;;;;:7;:22;;;;;:63;37758:303;;37706:355;:::o;35615:147::-;35693:7;;:17;;35705:4;35693:11;:17::i;:::-;35683:7;:27;35734:10;;:20;;35749:4;35734:14;:20::i;:::-;35721:10;:33;-1:-1:-1;;35615:147:0:o;14:367:1:-;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:437::-;472:6;480;533:2;521:9;512:7;508:23;504:32;501:52;;;549:1;546;539:12;501:52;589:9;576:23;622:18;614:6;611:30;608:50;;;654:1;651;644:12;608:50;693:70;755:7;746:6;735:9;731:22;693:70;:::i;:::-;782:8;;667:96;;-1:-1:-1;386:437:1;-1:-1:-1;;;;386:437:1:o;828:597::-;940:4;969:2;998;987:9;980:21;1030:6;1024:13;1073:6;1068:2;1057:9;1053:18;1046:34;1098:1;1108:140;1122:6;1119:1;1116:13;1108:140;;;1217:14;;;1213:23;;1207:30;1183:17;;;1202:2;1179:26;1172:66;1137:10;;1108:140;;;1266:6;1263:1;1260:13;1257:91;;;1336:1;1331:2;1322:6;1311:9;1307:22;1303:31;1296:42;1257:91;-1:-1:-1;1409:2:1;1388:15;-1:-1:-1;;1384:29:1;1369:45;;;;1416:2;1365:54;;828:597;-1:-1:-1;;;828:597:1:o;1430:131::-;-1:-1:-1;;;;;1505:31:1;;1495:42;;1485:70;;1551:1;1548;1541:12;1566:134;1634:20;;1663:31;1634:20;1663:31;:::i;:::-;1566:134;;;:::o;1705:315::-;1773:6;1781;1834:2;1822:9;1813:7;1809:23;1805:32;1802:52;;;1850:1;1847;1840:12;1802:52;1889:9;1876:23;1908:31;1933:5;1908:31;:::i;:::-;1958:5;2010:2;1995:18;;;;1982:32;;-1:-1:-1;;;1705:315:1:o;2634:456::-;2711:6;2719;2727;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;2835:9;2822:23;2854:31;2879:5;2854:31;:::i;:::-;2904:5;-1:-1:-1;2961:2:1;2946:18;;2933:32;2974:33;2933:32;2974:33;:::i;:::-;2634:456;;3026:7;;-1:-1:-1;;;3080:2:1;3065:18;;;;3052:32;;2634:456::o;3095:180::-;3154:6;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;-1:-1:-1;3246:23:1;;3095:180;-1:-1:-1;3095:180:1:o;3469:160::-;3534:20;;3590:13;;3583:21;3573:32;;3563:60;;3619:1;3616;3609:12;3634:248;3699:6;3707;3760:2;3748:9;3739:7;3735:23;3731:32;3728:52;;;3776:1;3773;3766:12;3728:52;3812:9;3799:23;3789:33;;3841:35;3872:2;3861:9;3857:18;3841:35;:::i;:::-;3831:45;;3634:248;;;;;:::o;4095:247::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4262:9;4249:23;4281:31;4306:5;4281:31;:::i;4347:529::-;4424:6;4432;4440;4493:2;4481:9;4472:7;4468:23;4464:32;4461:52;;;4509:1;4506;4499:12;4461:52;4548:9;4535:23;4567:31;4592:5;4567:31;:::i;:::-;4617:5;-1:-1:-1;4674:2:1;4659:18;;4646:32;4687:33;4646:32;4687:33;:::i;:::-;4739:7;-1:-1:-1;4798:2:1;4783:18;;4770:32;4811:33;4770:32;4811:33;:::i;:::-;4863:7;4853:17;;;4347:529;;;;;:::o;4881:127::-;4942:10;4937:3;4933:20;4930:1;4923:31;4973:4;4970:1;4963:15;4997:4;4994:1;4987:15;5013:1121;5097:6;5128:2;5171;5159:9;5150:7;5146:23;5142:32;5139:52;;;5187:1;5184;5177:12;5139:52;5227:9;5214:23;5256:18;5297:2;5289:6;5286:14;5283:34;;;5313:1;5310;5303:12;5283:34;5351:6;5340:9;5336:22;5326:32;;5396:7;5389:4;5385:2;5381:13;5377:27;5367:55;;5418:1;5415;5408:12;5367:55;5454:2;5441:16;5476:2;5472;5469:10;5466:36;;;5482:18;;:::i;:::-;5528:2;5525:1;5521:10;5560:2;5554:9;5623:2;5619:7;5614:2;5610;5606:11;5602:25;5594:6;5590:38;5678:6;5666:10;5663:22;5658:2;5646:10;5643:18;5640:46;5637:72;;;5689:18;;:::i;:::-;5725:2;5718:22;5775:18;;;5809:15;;;;-1:-1:-1;5851:11:1;;;5847:20;;;5879:19;;;5876:39;;;5911:1;5908;5901:12;5876:39;5935:11;;;;5955:148;5971:6;5966:3;5963:15;5955:148;;;6037:23;6056:3;6037:23;:::i;:::-;6025:36;;5988:12;;;;6081;;;;5955:148;;;6122:6;5013:1121;-1:-1:-1;;;;;;;;5013:1121:1:o;6139:523::-;6243:6;6251;6259;6267;6275;6283;6336:3;6324:9;6315:7;6311:23;6307:33;6304:53;;;6353:1;6350;6343:12;6304:53;-1:-1:-1;;6376:23:1;;;6446:2;6431:18;;6418:32;;-1:-1:-1;6497:2:1;6482:18;;6469:32;;6548:2;6533:18;;6520:32;;-1:-1:-1;6599:3:1;6584:19;;6571:33;;-1:-1:-1;6651:3:1;6636:19;6623:33;;-1:-1:-1;6139:523:1;-1:-1:-1;6139:523:1:o;6667:180::-;6723:6;6776:2;6764:9;6755:7;6751:23;6747:32;6744:52;;;6792:1;6789;6782:12;6744:52;6815:26;6831:9;6815:26;:::i;6852:773::-;6974:6;6982;6990;6998;7051:2;7039:9;7030:7;7026:23;7022:32;7019:52;;;7067:1;7064;7057:12;7019:52;7107:9;7094:23;7136:18;7177:2;7169:6;7166:14;7163:34;;;7193:1;7190;7183:12;7163:34;7232:70;7294:7;7285:6;7274:9;7270:22;7232:70;:::i;:::-;7321:8;;-1:-1:-1;7206:96:1;-1:-1:-1;7409:2:1;7394:18;;7381:32;;-1:-1:-1;7425:16:1;;;7422:36;;;7454:1;7451;7444:12;7422:36;;7493:72;7557:7;7546:8;7535:9;7531:24;7493:72;:::i;:::-;6852:773;;;;-1:-1:-1;7584:8:1;-1:-1:-1;;;;6852:773:1:o;7630:388::-;7698:6;7706;7759:2;7747:9;7738:7;7734:23;7730:32;7727:52;;;7775:1;7772;7765:12;7727:52;7814:9;7801:23;7833:31;7858:5;7833:31;:::i;:::-;7883:5;-1:-1:-1;7940:2:1;7925:18;;7912:32;7953:33;7912:32;7953:33;:::i;:::-;8005:7;7995:17;;;7630:388;;;;;:::o;8023:356::-;8225:2;8207:21;;;8244:18;;;8237:30;8303:34;8298:2;8283:18;;8276:62;8370:2;8355:18;;8023:356::o;8384:380::-;8463:1;8459:12;;;;8506;;;8527:61;;8581:4;8573:6;8569:17;8559:27;;8527:61;8634:2;8626:6;8623:14;8603:18;8600:38;8597:161;;;8680:10;8675:3;8671:20;8668:1;8661:31;8715:4;8712:1;8705:15;8743:4;8740:1;8733:15;8597:161;;8384:380;;;:::o;9953:127::-;10014:10;10009:3;10005:20;10002:1;9995:31;10045:4;10042:1;10035:15;10069:4;10066:1;10059:15;10085:168;10125:7;10191:1;10187;10183:6;10179:14;10176:1;10173:21;10168:1;10161:9;10154:17;10150:45;10147:71;;;10198:18;;:::i;:::-;-1:-1:-1;10238:9:1;;10085:168::o;10968:127::-;11029:10;11024:3;11020:20;11017:1;11010:31;11060:4;11057:1;11050:15;11084:4;11081:1;11074:15;11100:128;11140:3;11171:1;11167:6;11164:1;11161:13;11158:39;;;11177:18;;:::i;:::-;-1:-1:-1;11213:9:1;;11100:128::o;11640:135::-;11679:3;-1:-1:-1;;11700:17:1;;11697:43;;;11720:18;;:::i;:::-;-1:-1:-1;11767:1:1;11756:13;;11640:135::o;14217:411::-;14419:2;14401:21;;;14458:2;14438:18;;;14431:30;14497:34;14492:2;14477:18;;14470:62;-1:-1:-1;;;14563:2:1;14548:18;;14541:45;14618:3;14603:19;;14217:411::o;14633:217::-;14673:1;14699;14689:132;;14743:10;14738:3;14734:20;14731:1;14724:31;14778:4;14775:1;14768:15;14806:4;14803:1;14796:15;14689:132;-1:-1:-1;14835:9:1;;14633:217::o;14855:125::-;14895:4;14923:1;14920;14917:8;14914:34;;;14928:18;;:::i;:::-;-1:-1:-1;14965:9:1;;14855:125::o;16067:251::-;16137:6;16190:2;16178:9;16169:7;16165:23;16161:32;16158:52;;;16206:1;16203;16196:12;16158:52;16238:9;16232:16;16257:31;16282:5;16257:31;:::i;16323:980::-;16585:4;16633:3;16622:9;16618:19;16664:6;16653:9;16646:25;16690:2;16728:6;16723:2;16712:9;16708:18;16701:34;16771:3;16766:2;16755:9;16751:18;16744:31;16795:6;16830;16824:13;16861:6;16853;16846:22;16899:3;16888:9;16884:19;16877:26;;16938:2;16930:6;16926:15;16912:29;;16959:1;16969:195;16983:6;16980:1;16977:13;16969:195;;;17048:13;;-1:-1:-1;;;;;17044:39:1;17032:52;;17139:15;;;;17104:12;;;;17080:1;16998:9;16969:195;;;-1:-1:-1;;;;;;;17220:32:1;;;;17215:2;17200:18;;17193:60;-1:-1:-1;;;17284:3:1;17269:19;17262:35;17181:3;16323:980;-1:-1:-1;;;16323:980:1:o;17920:306::-;18008:6;18016;18024;18077:2;18065:9;18056:7;18052:23;18048:32;18045:52;;;18093:1;18090;18083:12;18045:52;18122:9;18116:16;18106:26;;18172:2;18161:9;18157:18;18151:25;18141:35;;18216:2;18205:9;18201:18;18195:25;18185:35;;17920:306;;;;;:::o

Swarm Source

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