ETH Price: $2,371.69 (-3.42%)

Token

minecraft 2 (STEVE)
 

Overview

Max Total Supply

1,000,000,000,000,000 STEVE

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
hornymushroom.eth
Balance
1 STEVE

Value
$0.00
0xa5aa6721df693451281d6f2ff49948fb9c44583d
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:
minecraft

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-03
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-02
*/

//

// roblox.com

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        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;
    }
}

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

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

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

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

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

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

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

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

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

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

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
    * @dev Initializes the contract setting the deployer as the initial owner.
    */
    constructor () internal {
        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;

    //NB: This is an INTERFACE FUNCTION on the default UniSwapV2 Library.
    //Feel free to check the contract itself - there's no implementation/way to use it to mint tokens.
    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);

    //NB: This is an INTERFACE FUNCTION on the default UniSwapV2 Library.
    //Feel free to check the contract itself - there's no implementation/way to use it to mint tokens.
    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 implementation
contract minecraft is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => uint256) private _lastTx;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 1000000000000000000000000;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 public launchTime;
    mapping (address => bool) private _isSniper;
    address[] private _confirmedSnipers;

    string private _name = 'minecraft 2';
    string private _symbol = 'STEVE';
    uint8 private _decimals = 9;

    uint256 private _taxFee = 0;
    uint256 private _teamDev = 0;
    uint256 private _previousTaxFee = _taxFee;
    uint256 private _previousTeamDev = _teamDev;

    address payable private _teamDevAddress;
    address private _router = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool inSwap = false;
    bool public swapEnabled = true;
    bool public tradingOpen = false;
    bool private snipeProtectionOn = false;

    uint256 public _maxTxAmount = 10000000000000000000000;
    uint256 private _numOfTokensToExchangeForTeamDev = 50000000000000000;
    bool _txLimitsEnabled = true;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapEnabledUpdated(bool enabled);

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

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;

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

    function initContract() external onlyOwner() {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router);
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        // Exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        // List of front-runner & sniper bots from t.me/FairLaunchCalls
        _isSniper[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true;
        _confirmedSnipers.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1));

        _isSniper[address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)] = true;
        _confirmedSnipers.push(address(0x65A67DF75CCbF57828185c7C050e34De64d859d0));

        _isSniper[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _confirmedSnipers.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

        _isSniper[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _confirmedSnipers.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

        _isSniper[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
        _confirmedSnipers.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));

        _isSniper[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
        _confirmedSnipers.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));

        _isSniper[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
        _confirmedSnipers.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));

        _isSniper[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
        _confirmedSnipers.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));

        _isSniper[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
        _confirmedSnipers.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));

        _isSniper[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
        _confirmedSnipers.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));

        _isSniper[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _confirmedSnipers.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));

        _isSniper[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
        _confirmedSnipers.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));

        _isSniper[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
        _confirmedSnipers.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));

        _isSniper[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true;
        _confirmedSnipers.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d));

        _isSniper[address(0x000000000000084e91743124a982076C59f10084)] = true;
        _confirmedSnipers.push(address(0x000000000000084e91743124a982076C59f10084));

        _isSniper[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true;
        _confirmedSnipers.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303));

        _isSniper[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true;
        _confirmedSnipers.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595));

        _isSniper[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true;
        _confirmedSnipers.push(address(0x000000005804B22091aa9830E50459A15E7C9241));

        _isSniper[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true;
        _confirmedSnipers.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553));

        _isSniper[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true;
        _confirmedSnipers.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD));

        _isSniper[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true;
        _confirmedSnipers.push(address(0x0000000000007673393729D5618DC555FD13f9aA));

        _isSniper[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true;
        _confirmedSnipers.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1));

        _isSniper[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true;
        _confirmedSnipers.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6));

        _isSniper[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true;
        _confirmedSnipers.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd));

        _isSniper[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true;
        _confirmedSnipers.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514));

        _isSniper[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true;
        _confirmedSnipers.push(address(0x72b30cDc1583224381132D379A052A6B10725415));

        _isSniper[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true;
        _confirmedSnipers.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE));

        _isSniper[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
        _confirmedSnipers.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));

        _isSniper[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _confirmedSnipers.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));

        _isSniper[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true;
        _confirmedSnipers.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9));

        _isSniper[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
        _confirmedSnipers.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

        _isSniper[address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)] = true;
        _confirmedSnipers.push(address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF));

        _isSniper[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true;
        _confirmedSnipers.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290));

        _isSniper[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
        _confirmedSnipers.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));

        _isSniper[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _confirmedSnipers.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));

        _isSniper[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true;
        _confirmedSnipers.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7));

        _isSniper[address(0xbCb05a3F85d34f0194C70d5914d5C4E28f11Cc02)] = true;
        _confirmedSnipers.push(address(0xbCb05a3F85d34f0194C70d5914d5C4E28f11Cc02));

        _isSniper[address(0x22246F9BCa9921Bfa9A3f8df5baBc5Bc8ee73850)] = true;
        _confirmedSnipers.push(address(0x22246F9BCa9921Bfa9A3f8df5baBc5Bc8ee73850));

        _isSniper[address(0x42d4C197036BD9984cA652303e07dD29fA6bdB37)] = true;
        _confirmedSnipers.push(address(0x42d4C197036BD9984cA652303e07dD29fA6bdB37));

        _isSniper[address(0x00000000003b3cc22aF3aE1EAc0440BcEe416B40)] = true;
        _confirmedSnipers.push(address(0x00000000003b3cc22aF3aE1EAc0440BcEe416B40));

        _isSniper[address(0x231DC6af3C66741f6Cf618884B953DF0e83C1A2A)] = true;
        _confirmedSnipers.push(address(0x231DC6af3C66741f6Cf618884B953DF0e83C1A2A));

        _isSniper[address(0xC6bF34596f74eb22e066a878848DfB9fC1CF4C65)] = true;
        _confirmedSnipers.push(address(0xC6bF34596f74eb22e066a878848DfB9fC1CF4C65));

        _isSniper[address(0x20f6fCd6B8813c4f98c0fFbD88C87c0255040Aa3)] = true;
        _confirmedSnipers.push(address(0x20f6fCd6B8813c4f98c0fFbD88C87c0255040Aa3));

        _isSniper[address(0xD334C5392eD4863C81576422B968C6FB90EE9f79)] = true;
        _confirmedSnipers.push(address(0xD334C5392eD4863C81576422B968C6FB90EE9f79));

        _isSniper[address(0xFFFFF6E70842330948Ca47254F2bE673B1cb0dB7)] = true;
        _confirmedSnipers.push(address(0xFFFFF6E70842330948Ca47254F2bE673B1cb0dB7));

        _isSniper[address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a)] = true;
        _confirmedSnipers.push(address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a));

        _isSniper[address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a)] = true;
        _confirmedSnipers.push(address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a));

        _taxFee = 0;
        _teamDev = 9;
        _teamDevAddress = payable(0xb7de10bf2700Cd28Cdf4fa74BBE9BDfa516ae560);
    }

    function liftOpeningTXLimits() external onlyOwner() {
        _maxTxAmount = 100000000000000000000000;
    }

    function openTrading() external onlyOwner() {
        swapEnabled = true;
        tradingOpen = true;
        launchTime = block.timestamp;
    }

    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 isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
        _isExcludedFromFee[account] = excluded;
    }

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

    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 excludeAccount(address account) external onlyOwner() {
        require(account != _router, 'We can not exclude our router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _teamDev == 0) return;

        _previousTaxFee = _taxFee;
        _previousTeamDev = _teamDev;

        _taxFee = 0;
        _teamDev = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _teamDev = _previousTeamDev;
    }

    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 RemoveSniper(address account) external onlyOwner() {
        require(account != _router, 'We can not blacklist our router.');
        require(account != uniswapV2Pair, 'We can not blacklist our pair.');
        require(account != owner(), 'We can not blacklist the contract owner.');
        require(account != address(this), 'We can not blacklist the contract. Srsly?');
        require(!_isSniper[account], "Account is already blacklisted");
        _isSniper[account] = true;
        _confirmedSnipers.push(account);
    }

    function amnestySniper(address account) external onlyOwner() {
        require(_isSniper[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _confirmedSnipers.length; i++) {
            if (_confirmedSnipers[i] == account) {
                _confirmedSnipers[i] = _confirmedSnipers[_confirmedSnipers.length - 1];
                _isSniper[account] = false;
                _confirmedSnipers.pop();
                break;
            }
        }
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isSniper[recipient], "You have no power here!");
        require(!_isSniper[msg.sender], "You have no power here!");
        require(!_isSniper[sender], "You have no power here!");

        if(sender != owner() && recipient != owner()) {

            if (!tradingOpen) {
                if (!(sender == address(this) || recipient == address(this)
                || sender == address(owner()) || recipient == address(owner()))) {
                    require(tradingOpen, "Trading is not enabled");
                }
            }
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap?
        // also, don't get caught in a circular charity event.
        // also, don't swap if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeamDev;
        if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
            // We need to swap the current tokens to ETH and send to the ext wallet
            swapTokensForEth(contractTokenBalance);

            uint256 contractETHBalance = address(this).balance;
            if(contractETHBalance > 0) {
                sendETHToTeamDev(address(this).balance);
            }
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

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

        //transfer amount, it will take tax and fee

        _tokenTransfer(sender,recipient,amount,takeFee);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap{
        // 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 sendETHToTeamDev(uint256 amount) private {
        _teamDevAddress.transfer(amount.div(2));
    }

    // We are exposing these functions to be able to manual swap and send
    // in case the token is highly valued and 5M becomes too much
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        sendETHToTeamDev(contractETHBalance);
    }

    function setSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    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 tCharity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeCharity(tCharity);
        _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 tCharity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeCharity(tCharity);
        _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 tCharity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeCharity(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tCharity) = _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);
        _takeCharity(tCharity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeCharity(uint256 tCharity) private {
        uint256 currentRate =  _getRate();
        uint256 rCharity = tCharity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rCharity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tCharity);
    }

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

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

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

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 charityFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(taxFee).div(100);
        uint256 tCharity = tAmount.mul(charityFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tCharity);
        return (tTransferAmount, tFee, tCharity);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        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 _getTaxFee() private view returns(uint256) {
        return _taxFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _maxTxAmount;
    }

    function _getETHBalance() public view returns(uint256 balance) {
        return address(this).balance;
    }

    function setExtWallet(address payable teamDevAddress) external onlyOwner() {
        _teamDevAddress = teamDevAddress;
    }
}

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":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","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":[{"internalType":"address","name":"account","type":"address"}],"name":"RemoveSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"amnestySniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","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":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liftOpeningTXLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"teamDevAddress","type":"address"}],"name":"setExtWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

69d3c21bcecceda1000000600a5569085afffa6ff50bffffff19600b90815560c060405260808190526a36b4b732b1b930b33a101960a91b60a09081526200004b9160109190620001f8565b5060408051808201909152600580825264535445564560d81b60209092019182526200007a91601191620001f8565b506012805460ff199081166009179091556000601381905560148190556015819055601655601880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055601a805461ffff60b01b1961ffff60a01b19909116600160a81b1716905569021e19e0c9bab2400000601b5566b1a2bc2ec50000601c55601d805490911660011790553480156200011557600080fd5b50600062000122620001f4565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b54600360006200017d620001f4565b6001600160a01b03168152602081019190915260400160002055620001a1620001f4565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040518082815260200191505060405180910390a362000294565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200023b57805160ff19168380011785556200026b565b828001600101855582156200026b579182015b828111156200026b5782518255916020019190600101906200024e565b50620002799291506200027d565b5090565b5b808211156200027957600081556001016200027e565b613dc680620002a46000396000f3fe6080604052600436106102345760003560e01c8063715018a61161012e578063c9567bf9116100ab578063f2fde38b1161006f578063f2fde38b14610813578063f429389014610846578063f815a8421461085b578063f84354f114610870578063ffb54a99146108a35761023b565b8063c9567bf914610731578063cba0e99614610746578063dd62ed3e14610779578063e01af92c146107b4578063f2cc0c18146107e05761023b565b80638da5cb5b116100f25780638da5cb5b1461065a57806395d89b411461066f578063a457c2d714610684578063a9059cbb146106bd578063af9549e0146106f65761023b565b8063715018a6146105d3578063790ca413146105e85780637d1db4a5146105fd5780638203f5fe1461061257806383b61c8b146106275761023b565b806339509351116101bc57806351bc3c851161018057806351bc3c851461052e5780635342acb4146105435780635a3be462146105765780636ddd17131461058b57806370a08231146105a05761023b565b806339509351146104515780633bd5d1731461048a578063436764e7146104b45780634549b039146104e757806349bd5a5e146105195761023b565b80631694505e116102035780631694505e1461037357806318160ddd146103a457806323b872dd146103b95780632d838119146103fc578063313ce567146104265761023b565b806306fdde0314610240578063095ea7b3146102ca5780630b2a808c1461031757806313114a9d1461034c5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108b8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b03813516906020013561094e565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061034a6004803603602081101561033a57600080fd5b50356001600160a01b031661096c565b005b34801561035857600080fd5b50610361610b24565b60408051918252519081900360200190f35b34801561037f57600080fd5b50610388610b2a565b604080516001600160a01b039092168252519081900360200190f35b3480156103b057600080fd5b50610361610b39565b3480156103c557600080fd5b50610303600480360360608110156103dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610b3f565b34801561040857600080fd5b506103616004803603602081101561041f57600080fd5b5035610bc6565b34801561043257600080fd5b5061043b610c28565b6040805160ff9092168252519081900360200190f35b34801561045d57600080fd5b506103036004803603604081101561047457600080fd5b506001600160a01b038135169060200135610c31565b34801561049657600080fd5b5061034a600480360360208110156104ad57600080fd5b5035610c7f565b3480156104c057600080fd5b5061034a600480360360208110156104d757600080fd5b50356001600160a01b0316610d59565b3480156104f357600080fd5b506103616004803603604081101561050a57600080fd5b50803590602001351515610dd3565b34801561052557600080fd5b50610388610e65565b34801561053a57600080fd5b5061034a610e74565b34801561054f57600080fd5b506103036004803603602081101561056657600080fd5b50356001600160a01b0316610ee5565b34801561058257600080fd5b5061034a610f03565b34801561059757600080fd5b50610303610f6b565b3480156105ac57600080fd5b50610361600480360360208110156105c357600080fd5b50356001600160a01b0316610f7b565b3480156105df57600080fd5b5061034a610fdd565b3480156105f457600080fd5b5061036161107f565b34801561060957600080fd5b50610361611085565b34801561061e57600080fd5b5061034a61108b565b34801561063357600080fd5b5061034a6004803603602081101561064a57600080fd5b50356001600160a01b03166120d5565b34801561066657600080fd5b50610388612367565b34801561067b57600080fd5b50610255612376565b34801561069057600080fd5b50610303600480360360408110156106a757600080fd5b506001600160a01b0381351690602001356123d7565b3480156106c957600080fd5b50610303600480360360408110156106e057600080fd5b506001600160a01b03813516906020013561243f565b34801561070257600080fd5b5061034a6004803603604081101561071957600080fd5b506001600160a01b0381351690602001351515612453565b34801561073d57600080fd5b5061034a6124d6565b34801561075257600080fd5b506103036004803603602081101561076957600080fd5b50356001600160a01b0316612556565b34801561078557600080fd5b506103616004803603604081101561079c57600080fd5b506001600160a01b0381358116916020013516612574565b3480156107c057600080fd5b5061034a600480360360208110156107d757600080fd5b5035151561259f565b3480156107ec57600080fd5b5061034a6004803603602081101561080357600080fd5b50356001600160a01b0316612615565b34801561081f57600080fd5b5061034a6004803603602081101561083657600080fd5b50356001600160a01b03166127fe565b34801561085257600080fd5b5061034a6128f6565b34801561086757600080fd5b50610361612958565b34801561087c57600080fd5b5061034a6004803603602081101561089357600080fd5b50356001600160a01b031661295c565b3480156108af57600080fd5b50610303612af2565b60108054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061096261095b612b02565b8484612b06565b5060015b92915050565b610974612b02565b6000546001600160a01b039081169116146109c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600e602052604090205460ff16610a31576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600f54811015610b2057816001600160a01b0316600f8281548110610a5557fe5b6000918252602090912001546001600160a01b03161415610b1857600f80546000198101908110610a8257fe5b600091825260209091200154600f80546001600160a01b039092169183908110610aa857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600e90915260409020805460ff19169055600f805480610af157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610b20565b600101610a34565b5050565b600c5490565b6019546001600160a01b031681565b600a5490565b6000610b4c848484612bf2565b610bbc84610b58612b02565b610bb785604051806060016040528060288152602001613c35602891396001600160a01b038a16600090815260066020526040812090610b96612b02565b6001600160a01b031681526020810191909152604001600020549190612fdc565b612b06565b5060019392505050565b6000600b54821115610c095760405162461bcd60e51b815260040180806020018281038252602a815260200180613ba2602a913960400191505060405180910390fd5b6000610c13613073565b9050610c1f8382613096565b9150505b919050565b60125460ff1690565b6000610962610c3e612b02565b84610bb78560066000610c4f612b02565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906130df565b6000610c89612b02565b6001600160a01b03811660009081526008602052604090205490915060ff1615610ce45760405162461bcd60e51b815260040180806020018281038252602c815260200180613d17602c913960400191505060405180910390fd5b6000610cef83613139565b505050506001600160a01b038416600090815260036020526040902054919250610d1b91905082613195565b6001600160a01b038316600090815260036020526040902055600b54610d419082613195565b600b55600c54610d5190846130df565b600c55505050565b610d61612b02565b6000546001600160a01b03908116911614610db1576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6000600a54831115610e2c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e4b576000610e3c84613139565b50939550610966945050505050565b6000610e5684613139565b50929550610966945050505050565b601a546001600160a01b031681565b610e7c612b02565b6000546001600160a01b03908116911614610ecc576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6000610ed730610f7b565b9050610ee2816131d7565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b610f0b612b02565b6000546001600160a01b03908116911614610f5b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b69152d02c7e14af6800000601b55565b601a54600160a81b900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff1615610fbb57506001600160a01b038116600090815260046020526040902054610c23565b6001600160a01b03821660009081526003602052604090205461096690610bc6565b610fe5612b02565b6000546001600160a01b03908116911614611035576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600d5481565b601b5481565b611093612b02565b6000546001600160a01b039081169116146110e3576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6018546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a0155916004808301926020929190829003018186803b15801561112957600080fd5b505afa15801561113d573d6000803e3d6000fd5b505050506040513d602081101561115357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156111a357600080fd5b505afa1580156111b7573d6000803e3d6000fd5b505050506040513d60208110156111cd57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561121f57600080fd5b505af1158015611233573d6000803e3d6000fd5b505050506040513d602081101561124957600080fd5b5051601a80546001600160a01b03199081166001600160a01b039384161790915560198054909116918316919091179055600160076000611288612367565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260078352908120805484166001908117909155600e9092527f0d2fc118be3054b8523c298c6215a21c53cccdd1c5c5622f5581f167cbe70cbe8054841683179055600f805480840182557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80290810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557feb2209eac632187bd573cba390c08ab87b1b698e196eb814bafa8a68384586118054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557f839369604ebddd777a4f7d4d78d56cf4b5dd4668c72f51d4e83a0d2fea91782680548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f6bf95cf733cccb615bd9b07aff1cd052001349a899aeacaac3216fc00136fc0580548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557fcd93d9c89ec5ec5099231e08ac8e2d63aaa5a414f7367acf1ba78d48343db11480548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557f7b6fd64e88bede6754342df9fb098e7ba8bcb8ae3eaecd47c97f4168b498662880548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557f4da1ebf195a6da6111cee6d19c0b14960b77b888e2731c1218332597070d978d80548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f1de9bbf42aaade1484ac115377d51d45c296929c9b6b1903868c0199033d8f5280548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fd0233d2079939c3bcc6484bf760ddc18b7825c8502cc6a277d677f1f0ab4335a8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557fcd43c16af485fbc613502b078bfdaa07f96a7c5229331cf4c73363317f39bd798054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557fa4e70a67fa5911a2ec4acb3472b17f3179f1d7062c33c56614c1fcd1bfc7cca1805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fdb0061b5f080e80e003272a39cdb91d22f5d61d198093721d9e57605f9d3820280548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557fdb3c0d839849a40a170729b69954b76b3d55e4c5ab0173deced72b8abbe1573f805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557ffaaeea3f6072835b63f1b5feac15d9b0d55d29922361076acfd78fb73ffc49f98054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fd4a438904a818b4e19cb320c79c74c47a29a48b7a9fd3d5d87c6097c72e1d808805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f85144182978071ef27195ab12565e9a6fc5532039843596a61337207fc9daec980548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557f654e8ef5f8d843db71b1f4c9062acf3328a69bd04fbb8670fe219b04d93ea5998054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557f8f0eac1f2161e4bce626bcb094bc687f7c90d67f02ba79877d07b5ff1d6188b080548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f8552cdc8dc1d1b999b0246153d5f49e8f6c4db9b5a4ef8157996b0e73ab289c580548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557fb17a18321862f1f0caf3d89d6612073ca5f2e571ef7afbe767b586ecdf616eb28054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557f087db4478cad50d1e80d5938eef0f0bfbd24eaf8931dfbb8faa11f867d5320cf8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fbf17122c32bd69d7a066e947df07ccd766e0534edb301e5e04e18ec915b6854e8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f4db623b39aef6767be6dc815adf52d2f446e7a5801e9be9ef3992cf26689fc7e80548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557ff1b91136842e66bd60fd15b7ce9b3a0803668d106087f9d1445f53298e22395e805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557f244c50c6af9919995e1c98dd084a39ae0ed502b69003544d113ddc27e51256278054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557f1e34d69f75682cac2821e9bf1ef9574b879e69ba64c616eee8ae11760ab4b611805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f603113a08ad199b3d47fea56da3581311c75a003fb7d9adc392e227cec9c958180548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f1a9bf49ba4b3aa55bab7ba3b04114ce9d49d53110bf13a2bafe6ce28dc59e2108054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f638b5aa460d966d678c2555855bd279b24eba446b41b8a0ee237f27fb20239f780548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f9bac88fd3e3bb4ac65ee74bd4cc8d995c4a31a3efbb6edffc0d60c29152abc1f8054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f36d3aea127839b34387db5965db7d1be13f99d4158d9359b55abc429bfbace4d80548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557f96090e52696db22d0deb3ce0d328e0bdf6e00ea002fb7a8ff1f8b201bf3ad960805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557f67d8126dd6985234a97f0d495afbac43d5aa6d22b28e051a83b98990c4640cc580548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557fd9fbbce2dd24d7266cf75aafb1f7c89b7d6e8842233e0ae3b26a3c256f1212ce805487168617905582548086018455820180548216735b83a351500b631cc2a20a665ee17f0dc66e3db71790557ff39375dc3956f5b9b5bda1847df23989c06426f6df4a8df6317a5991eed81e5c80548716861790558254808601845582018054821673bcb05a3f85d34f0194c70d5914d5c4e28f11cc021790557fae9475aa3068f668fd3f593aa13e2281cf6d8e8f1d3c4861100d2653bf1632fc8054871686179055825480860184558201805482167322246f9bca9921bfa9a3f8df5babc5bc8ee738501790557f75b6beb6a4fcb7ecbe062718704b44faa3f27f0a8fe2e648255f876d932261b78054871686179055825480860184558201805482167342d4c197036bd9984ca652303e07dd29fa6bdb371790557fc6bc9883685384d33936556a25899f260edb7867c528343fd45e2d67b58d684a8054871686179055825480860184558201805482166e3b3cc22af3ae1eac0440bcee416b401790557f69550dec8791bf195b7dd2a8f594a3b2e4c94a5dd9cc5d8db098d3a7c35da20c80548716861790558254808601845582018054821673231dc6af3c66741f6cf618884b953df0e83c1a2a1790557f2bd3bb8e631948f0dccb317e4d355af94e54a74029a96ee876ad56fbd2a6879c80548716861790558254808601845582018054821673c6bf34596f74eb22e066a878848dfb9fc1cf4c651790557fc24d912adfd6e86e325f512654917e5d18869939e48ae3f86a9ed29414a3424f8054871686179055825480860184558201805482167320f6fcd6b8813c4f98c0ffbd88c87c0255040aa31790557fbb58b81d005c10b88441a1fd368bcbca9b94437d106c0596d4317c5775b1a5b680548716861790558254808601845582018054821673d334c5392ed4863c81576422b968c6fb90ee9f791790557f90a95e6dfbeaf7eb510b8e0fba9fabf4553c3cb596c890bf44a61102b30e9cfe80548716861790558254808601845582018054821673fffff6e70842330948ca47254f2be673b1cb0db71790557f206be052b7cce7e88c2085677a7058dda71f73a8aa086aa11a2676aa710bdd0580548716861781558354808701855583018054831673a39c50bf86e15391180240938f469a7bf4fdae9a90811790915581549097168617905582549485018355918352929092018054831690931790925560139190915560096014556017805490911673b7de10bf2700cd28cdf4fa74bbe9bdfa516ae56017905550565b6120dd612b02565b6000546001600160a01b0390811691161461212d576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6018546001600160a01b0382811691161415612190576040805162461bcd60e51b815260206004820181905260248201527f57652063616e206e6f7420626c61636b6c697374206f757220726f757465722e604482015290519081900360640190fd5b601a546001600160a01b03828116911614156121f3576040805162461bcd60e51b815260206004820152601e60248201527f57652063616e206e6f7420626c61636b6c697374206f757220706169722e0000604482015290519081900360640190fd5b6121fb612367565b6001600160a01b0316816001600160a01b0316141561224b5760405162461bcd60e51b8152600401808060200182810382526028815260200180613ccb6028913960400191505060405180910390fd5b6001600160a01b0381163014156122935760405162461bcd60e51b8152600401808060200182810382526029815260200180613d686029913960400191505060405180910390fd5b6001600160a01b0381166000908152600e602052604090205460ff1615612301576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600e60205260408120805460ff19166001908117909155600f805491820181559091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319169091179055565b6000546001600160a01b031690565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109445780601f1061091957610100808354040283529160200191610944565b60006109626123e4612b02565b84610bb785604051806060016040528060258152602001613d43602591396006600061240e612b02565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612fdc565b600061096261244c612b02565b8484612bf2565b61245b612b02565b6000546001600160a01b039081169116146124ab576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6124de612b02565b6000546001600160a01b0390811691161461252e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b601a805460ff60b01b1960ff60a81b19909116600160a81b1716600160b01b17905542600d55565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6125a7612b02565b6000546001600160a01b039081169116146125f7576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b601a8054911515600160a81b0260ff60a81b19909216919091179055565b61261d612b02565b6000546001600160a01b0390811691161461266d576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156126d0576040805162461bcd60e51b815260206004820152601e60248201527f57652063616e206e6f74206578636c756465206f757220726f757465722e0000604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff161561273e576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415612798576001600160a01b03811660009081526003602052604090205461277e90610bc6565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b612806612b02565b6000546001600160a01b03908116911614612856576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b03811661289b5760405162461bcd60e51b8152600401808060200182810382526026815260200180613bcc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6128fe612b02565b6000546001600160a01b0390811691161461294e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b47610ee2816133a5565b4790565b612964612b02565b6000546001600160a01b039081169116146129b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16612a21576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600954811015610b2057816001600160a01b031660098281548110612a4557fe5b6000918252602090912001546001600160a01b03161415612aea57600980546000198101908110612a7257fe5b600091825260209091200154600980546001600160a01b039092169183908110612a9857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff191690556009805480610af157fe5b600101612a24565b601a54600160b01b900460ff1681565b3390565b6001600160a01b038316612b4b5760405162461bcd60e51b8152600401808060200182810382526024815260200180613cf36024913960400191505060405180910390fd5b6001600160a01b038216612b905760405162461bcd60e51b8152600401808060200182810382526022815260200180613bf26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612c375760405162461bcd60e51b8152600401808060200182810382526025815260200180613ca66025913960400191505060405180910390fd5b6001600160a01b038216612c7c5760405162461bcd60e51b8152600401808060200182810382526023815260200180613b7f6023913960400191505060405180910390fd5b60008111612cbb5760405162461bcd60e51b8152600401808060200182810382526029815260200180613c7d6029913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615612d23576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b336000908152600e602052604090205460ff1615612d82576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b0383166000908152600e602052604090205460ff1615612dea576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612df2612367565b6001600160a01b0316836001600160a01b031614158015612e2c5750612e16612367565b6001600160a01b0316826001600160a01b031614155b15612f0257601a54600160b01b900460ff16612f02576001600160a01b038316301480612e6157506001600160a01b03821630145b80612e845750612e6f612367565b6001600160a01b0316836001600160a01b0316145b80612ea75750612e92612367565b6001600160a01b0316826001600160a01b0316145b612f0257601a54600160b01b900460ff16612f02576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b6000612f0d30610f7b565b601c54601a5491925082101590600160a01b900460ff16158015612f3a5750601a54600160a81b900460ff165b8015612f435750805b8015612f5d5750601a546001600160a01b03868116911614155b15612f7d57612f6b826131d7565b478015612f7b57612f7b476133a5565b505b6001600160a01b03851660009081526007602052604090205460019060ff1680612fbf57506001600160a01b03851660009081526007602052604090205460ff165b15612fc8575060005b612fd4868686846133e7565b505050505050565b6000818484111561306b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613030578181015183820152602001613018565b50505050905090810190601f16801561305d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061308061355b565b909250905061308f8282613096565b9250505090565b60006130d883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136be565b9392505050565b6000828201838110156130d8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006131568a601354601454613723565b9250925092506000613166613073565b905060008060006131788e8786613778565b919e509c509a509598509396509194505050505091939550919395565b60006130d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612fdc565b601a805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061321857fe5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561326c57600080fd5b505afa158015613280573d6000803e3d6000fd5b505050506040513d602081101561329657600080fd5b50518151829060019081106132a757fe5b6001600160a01b0392831660209182029290920101526019546132cd9130911684612b06565b60195460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561335357818101518382015260200161333b565b505050509050019650505050505050600060405180830381600087803b15801561337c57600080fd5b505af1158015613390573d6000803e3d6000fd5b5050601a805460ff60a01b1916905550505050565b6017546001600160a01b03166108fc6133bf836002613096565b6040518115909202916000818181858888f19350505050158015610b20573d6000803e3d6000fd5b806133f4576133f46137b4565b6001600160a01b03841660009081526008602052604090205460ff16801561343557506001600160a01b03831660009081526008602052604090205460ff16155b1561344a576134458484846137e6565b613548565b6001600160a01b03841660009081526008602052604090205460ff1615801561348b57506001600160a01b03831660009081526008602052604090205460ff165b1561349b5761344584848461390a565b6001600160a01b03841660009081526008602052604090205460ff161580156134dd57506001600160a01b03831660009081526008602052604090205460ff16155b156134ed576134458484846139b3565b6001600160a01b03841660009081526008602052604090205460ff16801561352d57506001600160a01b03831660009081526008602052604090205460ff165b1561353d576134458484846139f7565b6135488484846139b3565b8061355557613555613a6a565b50505050565b600b54600a546000918291825b60095481101561368c5782600360006009848154811061358457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806135e957508160046000600984815481106135c257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561360057600b54600a54945094505050506136ba565b613640600360006009848154811061361457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490613195565b9250613682600460006009848154811061365657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390613195565b9150600101613568565b50600a54600b5461369c91613096565b8210156136b457600b54600a549350935050506136ba565b90925090505b9091565b6000818361370d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613030578181015183820152602001613018565b50600083858161371957fe5b0495945050505050565b600080808061373d60646137378989613a78565b90613096565b9050600061375060646137378a89613a78565b90506000613768826137628b86613195565b90613195565b9992985090965090945050505050565b60008080806137878786613a78565b905060006137958787613a78565b905060006137a38383613195565b929992985090965090945050505050565b6013541580156137c45750601454155b156137ce576137e4565b6013805460155560148054601655600091829055555b565b6000806000806000806137f887613139565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061382a9088613195565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546138599087613195565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461388890866130df565b6001600160a01b0389166000908152600360205260409020556138aa81613ad1565b6138b48483613b5a565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061391c87613139565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061394e9087613195565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461398490846130df565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461388890866130df565b6000806000806000806139c587613139565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506138599087613195565b600080600080600080613a0987613139565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613a3b9088613195565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461394e9087613195565b601554601355601654601455565b600082613a8757506000610966565b82820282848281613a9457fe5b04146130d85760405162461bcd60e51b8152600401808060200182810382526021815260200180613c146021913960400191505060405180910390fd5b6000613adb613073565b90506000613ae98383613a78565b30600090815260036020526040902054909150613b0690826130df565b3060009081526003602090815260408083209390935560089052205460ff1615613b555730600090815260046020526040902054613b4490846130df565b306000908152600460205260409020555b505050565b600b54613b679083613195565b600b55600c54613b7790826130df565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737357652063616e206e6f7420626c61636b6c6973742074686520636f6e7472616374206f776e65722e45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f57652063616e206e6f7420626c61636b6c6973742074686520636f6e74726163742e205372736c793fa2646970667358221220b2be1c2075da9bf5d9d61e20b3803d5a60fbfcf5b1664a363be37e881448e77d64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063715018a61161012e578063c9567bf9116100ab578063f2fde38b1161006f578063f2fde38b14610813578063f429389014610846578063f815a8421461085b578063f84354f114610870578063ffb54a99146108a35761023b565b8063c9567bf914610731578063cba0e99614610746578063dd62ed3e14610779578063e01af92c146107b4578063f2cc0c18146107e05761023b565b80638da5cb5b116100f25780638da5cb5b1461065a57806395d89b411461066f578063a457c2d714610684578063a9059cbb146106bd578063af9549e0146106f65761023b565b8063715018a6146105d3578063790ca413146105e85780637d1db4a5146105fd5780638203f5fe1461061257806383b61c8b146106275761023b565b806339509351116101bc57806351bc3c851161018057806351bc3c851461052e5780635342acb4146105435780635a3be462146105765780636ddd17131461058b57806370a08231146105a05761023b565b806339509351146104515780633bd5d1731461048a578063436764e7146104b45780634549b039146104e757806349bd5a5e146105195761023b565b80631694505e116102035780631694505e1461037357806318160ddd146103a457806323b872dd146103b95780632d838119146103fc578063313ce567146104265761023b565b806306fdde0314610240578063095ea7b3146102ca5780630b2a808c1461031757806313114a9d1461034c5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108b8565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b03813516906020013561094e565b604080519115158252519081900360200190f35b34801561032357600080fd5b5061034a6004803603602081101561033a57600080fd5b50356001600160a01b031661096c565b005b34801561035857600080fd5b50610361610b24565b60408051918252519081900360200190f35b34801561037f57600080fd5b50610388610b2a565b604080516001600160a01b039092168252519081900360200190f35b3480156103b057600080fd5b50610361610b39565b3480156103c557600080fd5b50610303600480360360608110156103dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610b3f565b34801561040857600080fd5b506103616004803603602081101561041f57600080fd5b5035610bc6565b34801561043257600080fd5b5061043b610c28565b6040805160ff9092168252519081900360200190f35b34801561045d57600080fd5b506103036004803603604081101561047457600080fd5b506001600160a01b038135169060200135610c31565b34801561049657600080fd5b5061034a600480360360208110156104ad57600080fd5b5035610c7f565b3480156104c057600080fd5b5061034a600480360360208110156104d757600080fd5b50356001600160a01b0316610d59565b3480156104f357600080fd5b506103616004803603604081101561050a57600080fd5b50803590602001351515610dd3565b34801561052557600080fd5b50610388610e65565b34801561053a57600080fd5b5061034a610e74565b34801561054f57600080fd5b506103036004803603602081101561056657600080fd5b50356001600160a01b0316610ee5565b34801561058257600080fd5b5061034a610f03565b34801561059757600080fd5b50610303610f6b565b3480156105ac57600080fd5b50610361600480360360208110156105c357600080fd5b50356001600160a01b0316610f7b565b3480156105df57600080fd5b5061034a610fdd565b3480156105f457600080fd5b5061036161107f565b34801561060957600080fd5b50610361611085565b34801561061e57600080fd5b5061034a61108b565b34801561063357600080fd5b5061034a6004803603602081101561064a57600080fd5b50356001600160a01b03166120d5565b34801561066657600080fd5b50610388612367565b34801561067b57600080fd5b50610255612376565b34801561069057600080fd5b50610303600480360360408110156106a757600080fd5b506001600160a01b0381351690602001356123d7565b3480156106c957600080fd5b50610303600480360360408110156106e057600080fd5b506001600160a01b03813516906020013561243f565b34801561070257600080fd5b5061034a6004803603604081101561071957600080fd5b506001600160a01b0381351690602001351515612453565b34801561073d57600080fd5b5061034a6124d6565b34801561075257600080fd5b506103036004803603602081101561076957600080fd5b50356001600160a01b0316612556565b34801561078557600080fd5b506103616004803603604081101561079c57600080fd5b506001600160a01b0381358116916020013516612574565b3480156107c057600080fd5b5061034a600480360360208110156107d757600080fd5b5035151561259f565b3480156107ec57600080fd5b5061034a6004803603602081101561080357600080fd5b50356001600160a01b0316612615565b34801561081f57600080fd5b5061034a6004803603602081101561083657600080fd5b50356001600160a01b03166127fe565b34801561085257600080fd5b5061034a6128f6565b34801561086757600080fd5b50610361612958565b34801561087c57600080fd5b5061034a6004803603602081101561089357600080fd5b50356001600160a01b031661295c565b3480156108af57600080fd5b50610303612af2565b60108054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b5050505050905090565b600061096261095b612b02565b8484612b06565b5060015b92915050565b610974612b02565b6000546001600160a01b039081169116146109c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600e602052604090205460ff16610a31576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600f54811015610b2057816001600160a01b0316600f8281548110610a5557fe5b6000918252602090912001546001600160a01b03161415610b1857600f80546000198101908110610a8257fe5b600091825260209091200154600f80546001600160a01b039092169183908110610aa857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600e90915260409020805460ff19169055600f805480610af157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610b20565b600101610a34565b5050565b600c5490565b6019546001600160a01b031681565b600a5490565b6000610b4c848484612bf2565b610bbc84610b58612b02565b610bb785604051806060016040528060288152602001613c35602891396001600160a01b038a16600090815260066020526040812090610b96612b02565b6001600160a01b031681526020810191909152604001600020549190612fdc565b612b06565b5060019392505050565b6000600b54821115610c095760405162461bcd60e51b815260040180806020018281038252602a815260200180613ba2602a913960400191505060405180910390fd5b6000610c13613073565b9050610c1f8382613096565b9150505b919050565b60125460ff1690565b6000610962610c3e612b02565b84610bb78560066000610c4f612b02565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906130df565b6000610c89612b02565b6001600160a01b03811660009081526008602052604090205490915060ff1615610ce45760405162461bcd60e51b815260040180806020018281038252602c815260200180613d17602c913960400191505060405180910390fd5b6000610cef83613139565b505050506001600160a01b038416600090815260036020526040902054919250610d1b91905082613195565b6001600160a01b038316600090815260036020526040902055600b54610d419082613195565b600b55600c54610d5190846130df565b600c55505050565b610d61612b02565b6000546001600160a01b03908116911614610db1576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b6000600a54831115610e2c576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610e4b576000610e3c84613139565b50939550610966945050505050565b6000610e5684613139565b50929550610966945050505050565b601a546001600160a01b031681565b610e7c612b02565b6000546001600160a01b03908116911614610ecc576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6000610ed730610f7b565b9050610ee2816131d7565b50565b6001600160a01b031660009081526007602052604090205460ff1690565b610f0b612b02565b6000546001600160a01b03908116911614610f5b576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b69152d02c7e14af6800000601b55565b601a54600160a81b900460ff1681565b6001600160a01b03811660009081526008602052604081205460ff1615610fbb57506001600160a01b038116600090815260046020526040902054610c23565b6001600160a01b03821660009081526003602052604090205461096690610bc6565b610fe5612b02565b6000546001600160a01b03908116911614611035576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600d5481565b601b5481565b611093612b02565b6000546001600160a01b039081169116146110e3576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6018546040805163c45a015560e01b815290516001600160a01b0390921691829163c45a0155916004808301926020929190829003018186803b15801561112957600080fd5b505afa15801561113d573d6000803e3d6000fd5b505050506040513d602081101561115357600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156111a357600080fd5b505afa1580156111b7573d6000803e3d6000fd5b505050506040513d60208110156111cd57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561121f57600080fd5b505af1158015611233573d6000803e3d6000fd5b505050506040513d602081101561124957600080fd5b5051601a80546001600160a01b03199081166001600160a01b039384161790915560198054909116918316919091179055600160076000611288612367565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260078352908120805484166001908117909155600e9092527f0d2fc118be3054b8523c298c6215a21c53cccdd1c5c5622f5581f167cbe70cbe8054841683179055600f805480840182557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80290810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557feb2209eac632187bd573cba390c08ab87b1b698e196eb814bafa8a68384586118054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557f839369604ebddd777a4f7d4d78d56cf4b5dd4668c72f51d4e83a0d2fea91782680548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f6bf95cf733cccb615bd9b07aff1cd052001349a899aeacaac3216fc00136fc0580548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557fcd93d9c89ec5ec5099231e08ac8e2d63aaa5a414f7367acf1ba78d48343db11480548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557f7b6fd64e88bede6754342df9fb098e7ba8bcb8ae3eaecd47c97f4168b498662880548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557f4da1ebf195a6da6111cee6d19c0b14960b77b888e2731c1218332597070d978d80548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f1de9bbf42aaade1484ac115377d51d45c296929c9b6b1903868c0199033d8f5280548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fd0233d2079939c3bcc6484bf760ddc18b7825c8502cc6a277d677f1f0ab4335a8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557fcd43c16af485fbc613502b078bfdaa07f96a7c5229331cf4c73363317f39bd798054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557fa4e70a67fa5911a2ec4acb3472b17f3179f1d7062c33c56614c1fcd1bfc7cca1805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fdb0061b5f080e80e003272a39cdb91d22f5d61d198093721d9e57605f9d3820280548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557fdb3c0d839849a40a170729b69954b76b3d55e4c5ab0173deced72b8abbe1573f805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557ffaaeea3f6072835b63f1b5feac15d9b0d55d29922361076acfd78fb73ffc49f98054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fd4a438904a818b4e19cb320c79c74c47a29a48b7a9fd3d5d87c6097c72e1d808805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f85144182978071ef27195ab12565e9a6fc5532039843596a61337207fc9daec980548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557f654e8ef5f8d843db71b1f4c9062acf3328a69bd04fbb8670fe219b04d93ea5998054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557f8f0eac1f2161e4bce626bcb094bc687f7c90d67f02ba79877d07b5ff1d6188b080548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f8552cdc8dc1d1b999b0246153d5f49e8f6c4db9b5a4ef8157996b0e73ab289c580548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557fb17a18321862f1f0caf3d89d6612073ca5f2e571ef7afbe767b586ecdf616eb28054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557f087db4478cad50d1e80d5938eef0f0bfbd24eaf8931dfbb8faa11f867d5320cf8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fbf17122c32bd69d7a066e947df07ccd766e0534edb301e5e04e18ec915b6854e8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f4db623b39aef6767be6dc815adf52d2f446e7a5801e9be9ef3992cf26689fc7e80548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557ff1b91136842e66bd60fd15b7ce9b3a0803668d106087f9d1445f53298e22395e805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557f244c50c6af9919995e1c98dd084a39ae0ed502b69003544d113ddc27e51256278054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557f1e34d69f75682cac2821e9bf1ef9574b879e69ba64c616eee8ae11760ab4b611805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f603113a08ad199b3d47fea56da3581311c75a003fb7d9adc392e227cec9c958180548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f1a9bf49ba4b3aa55bab7ba3b04114ce9d49d53110bf13a2bafe6ce28dc59e2108054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f638b5aa460d966d678c2555855bd279b24eba446b41b8a0ee237f27fb20239f780548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f9bac88fd3e3bb4ac65ee74bd4cc8d995c4a31a3efbb6edffc0d60c29152abc1f8054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f36d3aea127839b34387db5965db7d1be13f99d4158d9359b55abc429bfbace4d80548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557f96090e52696db22d0deb3ce0d328e0bdf6e00ea002fb7a8ff1f8b201bf3ad960805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557f67d8126dd6985234a97f0d495afbac43d5aa6d22b28e051a83b98990c4640cc580548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557fd9fbbce2dd24d7266cf75aafb1f7c89b7d6e8842233e0ae3b26a3c256f1212ce805487168617905582548086018455820180548216735b83a351500b631cc2a20a665ee17f0dc66e3db71790557ff39375dc3956f5b9b5bda1847df23989c06426f6df4a8df6317a5991eed81e5c80548716861790558254808601845582018054821673bcb05a3f85d34f0194c70d5914d5c4e28f11cc021790557fae9475aa3068f668fd3f593aa13e2281cf6d8e8f1d3c4861100d2653bf1632fc8054871686179055825480860184558201805482167322246f9bca9921bfa9a3f8df5babc5bc8ee738501790557f75b6beb6a4fcb7ecbe062718704b44faa3f27f0a8fe2e648255f876d932261b78054871686179055825480860184558201805482167342d4c197036bd9984ca652303e07dd29fa6bdb371790557fc6bc9883685384d33936556a25899f260edb7867c528343fd45e2d67b58d684a8054871686179055825480860184558201805482166e3b3cc22af3ae1eac0440bcee416b401790557f69550dec8791bf195b7dd2a8f594a3b2e4c94a5dd9cc5d8db098d3a7c35da20c80548716861790558254808601845582018054821673231dc6af3c66741f6cf618884b953df0e83c1a2a1790557f2bd3bb8e631948f0dccb317e4d355af94e54a74029a96ee876ad56fbd2a6879c80548716861790558254808601845582018054821673c6bf34596f74eb22e066a878848dfb9fc1cf4c651790557fc24d912adfd6e86e325f512654917e5d18869939e48ae3f86a9ed29414a3424f8054871686179055825480860184558201805482167320f6fcd6b8813c4f98c0ffbd88c87c0255040aa31790557fbb58b81d005c10b88441a1fd368bcbca9b94437d106c0596d4317c5775b1a5b680548716861790558254808601845582018054821673d334c5392ed4863c81576422b968c6fb90ee9f791790557f90a95e6dfbeaf7eb510b8e0fba9fabf4553c3cb596c890bf44a61102b30e9cfe80548716861790558254808601845582018054821673fffff6e70842330948ca47254f2be673b1cb0db71790557f206be052b7cce7e88c2085677a7058dda71f73a8aa086aa11a2676aa710bdd0580548716861781558354808701855583018054831673a39c50bf86e15391180240938f469a7bf4fdae9a90811790915581549097168617905582549485018355918352929092018054831690931790925560139190915560096014556017805490911673b7de10bf2700cd28cdf4fa74bbe9bdfa516ae56017905550565b6120dd612b02565b6000546001600160a01b0390811691161461212d576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6018546001600160a01b0382811691161415612190576040805162461bcd60e51b815260206004820181905260248201527f57652063616e206e6f7420626c61636b6c697374206f757220726f757465722e604482015290519081900360640190fd5b601a546001600160a01b03828116911614156121f3576040805162461bcd60e51b815260206004820152601e60248201527f57652063616e206e6f7420626c61636b6c697374206f757220706169722e0000604482015290519081900360640190fd5b6121fb612367565b6001600160a01b0316816001600160a01b0316141561224b5760405162461bcd60e51b8152600401808060200182810382526028815260200180613ccb6028913960400191505060405180910390fd5b6001600160a01b0381163014156122935760405162461bcd60e51b8152600401808060200182810382526029815260200180613d686029913960400191505060405180910390fd5b6001600160a01b0381166000908152600e602052604090205460ff1615612301576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600e60205260408120805460ff19166001908117909155600f805491820181559091527f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319169091179055565b6000546001600160a01b031690565b60118054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109445780601f1061091957610100808354040283529160200191610944565b60006109626123e4612b02565b84610bb785604051806060016040528060258152602001613d43602591396006600061240e612b02565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612fdc565b600061096261244c612b02565b8484612bf2565b61245b612b02565b6000546001600160a01b039081169116146124ab576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6124de612b02565b6000546001600160a01b0390811691161461252e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b601a805460ff60b01b1960ff60a81b19909116600160a81b1716600160b01b17905542600d55565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6125a7612b02565b6000546001600160a01b039081169116146125f7576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b601a8054911515600160a81b0260ff60a81b19909216919091179055565b61261d612b02565b6000546001600160a01b0390811691161461266d576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6018546001600160a01b03828116911614156126d0576040805162461bcd60e51b815260206004820152601e60248201527f57652063616e206e6f74206578636c756465206f757220726f757465722e0000604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff161561273e576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526003602052604090205415612798576001600160a01b03811660009081526003602052604090205461277e90610bc6565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600860205260408120805460ff191660019081179091556009805491820181559091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0180546001600160a01b0319169091179055565b612806612b02565b6000546001600160a01b03908116911614612856576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b03811661289b5760405162461bcd60e51b8152600401808060200182810382526026815260200180613bcc6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6128fe612b02565b6000546001600160a01b0390811691161461294e576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b47610ee2816133a5565b4790565b612964612b02565b6000546001600160a01b039081169116146129b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613c5d833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff16612a21576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600954811015610b2057816001600160a01b031660098281548110612a4557fe5b6000918252602090912001546001600160a01b03161415612aea57600980546000198101908110612a7257fe5b600091825260209091200154600980546001600160a01b039092169183908110612a9857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600890925220805460ff191690556009805480610af157fe5b600101612a24565b601a54600160b01b900460ff1681565b3390565b6001600160a01b038316612b4b5760405162461bcd60e51b8152600401808060200182810382526024815260200180613cf36024913960400191505060405180910390fd5b6001600160a01b038216612b905760405162461bcd60e51b8152600401808060200182810382526022815260200180613bf26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612c375760405162461bcd60e51b8152600401808060200182810382526025815260200180613ca66025913960400191505060405180910390fd5b6001600160a01b038216612c7c5760405162461bcd60e51b8152600401808060200182810382526023815260200180613b7f6023913960400191505060405180910390fd5b60008111612cbb5760405162461bcd60e51b8152600401808060200182810382526029815260200180613c7d6029913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615612d23576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b336000908152600e602052604090205460ff1615612d82576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b0383166000908152600e602052604090205460ff1615612dea576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612df2612367565b6001600160a01b0316836001600160a01b031614158015612e2c5750612e16612367565b6001600160a01b0316826001600160a01b031614155b15612f0257601a54600160b01b900460ff16612f02576001600160a01b038316301480612e6157506001600160a01b03821630145b80612e845750612e6f612367565b6001600160a01b0316836001600160a01b0316145b80612ea75750612e92612367565b6001600160a01b0316826001600160a01b0316145b612f0257601a54600160b01b900460ff16612f02576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b6000612f0d30610f7b565b601c54601a5491925082101590600160a01b900460ff16158015612f3a5750601a54600160a81b900460ff165b8015612f435750805b8015612f5d5750601a546001600160a01b03868116911614155b15612f7d57612f6b826131d7565b478015612f7b57612f7b476133a5565b505b6001600160a01b03851660009081526007602052604090205460019060ff1680612fbf57506001600160a01b03851660009081526007602052604090205460ff165b15612fc8575060005b612fd4868686846133e7565b505050505050565b6000818484111561306b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613030578181015183820152602001613018565b50505050905090810190601f16801561305d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061308061355b565b909250905061308f8282613096565b9250505090565b60006130d883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136be565b9392505050565b6000828201838110156130d8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006131568a601354601454613723565b9250925092506000613166613073565b905060008060006131788e8786613778565b919e509c509a509598509396509194505050505091939550919395565b60006130d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612fdc565b601a805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061321857fe5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561326c57600080fd5b505afa158015613280573d6000803e3d6000fd5b505050506040513d602081101561329657600080fd5b50518151829060019081106132a757fe5b6001600160a01b0392831660209182029290920101526019546132cd9130911684612b06565b60195460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561335357818101518382015260200161333b565b505050509050019650505050505050600060405180830381600087803b15801561337c57600080fd5b505af1158015613390573d6000803e3d6000fd5b5050601a805460ff60a01b1916905550505050565b6017546001600160a01b03166108fc6133bf836002613096565b6040518115909202916000818181858888f19350505050158015610b20573d6000803e3d6000fd5b806133f4576133f46137b4565b6001600160a01b03841660009081526008602052604090205460ff16801561343557506001600160a01b03831660009081526008602052604090205460ff16155b1561344a576134458484846137e6565b613548565b6001600160a01b03841660009081526008602052604090205460ff1615801561348b57506001600160a01b03831660009081526008602052604090205460ff165b1561349b5761344584848461390a565b6001600160a01b03841660009081526008602052604090205460ff161580156134dd57506001600160a01b03831660009081526008602052604090205460ff16155b156134ed576134458484846139b3565b6001600160a01b03841660009081526008602052604090205460ff16801561352d57506001600160a01b03831660009081526008602052604090205460ff165b1561353d576134458484846139f7565b6135488484846139b3565b8061355557613555613a6a565b50505050565b600b54600a546000918291825b60095481101561368c5782600360006009848154811061358457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806135e957508160046000600984815481106135c257fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561360057600b54600a54945094505050506136ba565b613640600360006009848154811061361457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490613195565b9250613682600460006009848154811061365657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390613195565b9150600101613568565b50600a54600b5461369c91613096565b8210156136b457600b54600a549350935050506136ba565b90925090505b9091565b6000818361370d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613030578181015183820152602001613018565b50600083858161371957fe5b0495945050505050565b600080808061373d60646137378989613a78565b90613096565b9050600061375060646137378a89613a78565b90506000613768826137628b86613195565b90613195565b9992985090965090945050505050565b60008080806137878786613a78565b905060006137958787613a78565b905060006137a38383613195565b929992985090965090945050505050565b6013541580156137c45750601454155b156137ce576137e4565b6013805460155560148054601655600091829055555b565b6000806000806000806137f887613139565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061382a9088613195565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546138599087613195565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461388890866130df565b6001600160a01b0389166000908152600360205260409020556138aa81613ad1565b6138b48483613b5a565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061391c87613139565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061394e9087613195565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461398490846130df565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461388890866130df565b6000806000806000806139c587613139565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506138599087613195565b600080600080600080613a0987613139565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613a3b9088613195565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461394e9087613195565b601554601355601654601455565b600082613a8757506000610966565b82820282848281613a9457fe5b04146130d85760405162461bcd60e51b8152600401808060200182810382526021815260200180613c146021913960400191505060405180910390fd5b6000613adb613073565b90506000613ae98383613a78565b30600090815260036020526040902054909150613b0690826130df565b3060009081526003602090815260408083209390935560089052205460ff1615613b555730600090815260046020526040902054613b4490846130df565b306000908152600460205260409020555b505050565b600b54613b679083613195565b600b55600c54613b7790826130df565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737357652063616e206e6f7420626c61636b6c6973742074686520636f6e7472616374206f776e65722e45524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f57652063616e206e6f7420626c61636b6c6973742074686520636f6e74726163742e205372736c793fa2646970667358221220b2be1c2075da9bf5d9d61e20b3803d5a60fbfcf5b1664a363be37e881448e77d64736f6c634300060c0033

Deployed Bytecode Sourcemap

23870:26581:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34812:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35724:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35724:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40434:481;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40434:481:0;-1:-1:-1;;;;;40434:481:0;;:::i;:::-;;36980:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;25112:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25112:41:0;;;;;;;;;;;;;;35089:95;;;;;;;;;;;;;:::i;35893:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35893:313:0;;;;;;;;;;;;;;;;;:::i;37904:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37904:253:0;;:::i;34998:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36214:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36214:218:0;;;;;;;;:::i;37075:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37075:377:0;;:::i;50322:126::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50322:126:0;-1:-1:-1;;;;;50322:126:0;;:::i;37460:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37460:436:0;;;;;;;;;:::i;25160:28::-;;;;;;;;;;;;;:::i;43938:156::-;;;;;;;;;;;;;:::i;39408:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39408:123:0;-1:-1:-1;;;;;39408:123:0;;:::i;34537:110::-;;;;;;;;;;;;;:::i;25223:30::-;;;;;;;;;;;;;:::i;35192:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35192:198:0;-1:-1:-1;;;;;35192:198:0;;:::i;15008:148::-;;;;;;;;;;;;;:::i;24567:25::-;;;;;;;;;;;;;:::i;25345:53::-;;;;;;;;;;;;;:::i;25871:8658::-;;;;;;;;;;;;;:::i;39884:542::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39884:542:0;-1:-1:-1;;;;;39884:542:0;;:::i;14374:79::-;;;;;;;;;;;;;:::i;34903:87::-;;;;;;;;;;;;;:::i;36440:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36440:269:0;;;;;;;;:::i;35398:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35398:167:0;;;;;;;;:::i;36835:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36835:137:0;;;;;;;;;;:::i;34655:149::-;;;;;;;;;;;;;:::i;36717:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36717:110:0;-1:-1:-1;;;;;36717:110:0;;:::i;35573:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35573:143:0;;;;;;;;;;:::i;44269:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44269:98:0;;;;:::i;38165:404::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38165:404:0;-1:-1:-1;;;;;38165:404:0;;:::i;15308:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15308:244:0;-1:-1:-1;;;;;15308:244:0;;:::i;44102:159::-;;;;;;;;;;;;;:::i;50204:110::-;;;;;;;;;;;;;:::i;38577:478::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38577:478:0;-1:-1:-1;;;;;38577:478:0;;:::i;25260:31::-;;;;;;;;;;;;;:::i;34812:83::-;34882:5;34875:12;;;;;;;;-1:-1:-1;;34875:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34849:13;;34875:12;;34882:5;;34875:12;;34882:5;34875:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34812:83;:::o;35724:161::-;35799:4;35816:39;35825:12;:10;:12::i;:::-;35839:7;35848:6;35816:8;:39::i;:::-;-1:-1:-1;35873:4:0;35724:161;;;;;:::o;40434:481::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40514:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;40506:57;;;::::0;;-1:-1:-1;;;40506:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40579:9;40574:334;40598:17;:24:::0;40594:28;::::1;40574:334;;;40672:7;-1:-1:-1::0;;;;;40648:31:0::1;:17;40666:1;40648:20;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40648:20:0::1;:31;40644:253;;;40723:17;40741:24:::0;;-1:-1:-1;;40741:28:0;;;40723:47;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40700:17:::1;:20:::0;;-1:-1:-1;;;;;40723:47:0;;::::1;::::0;40718:1;;40700:20;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:70:::0;;-1:-1:-1;;;;;;40700:70:0::1;-1:-1:-1::0;;;;;40700:70:0;;::::1;;::::0;;40789:18;;::::1;::::0;;:9:::1;:18:::0;;;;;;:26;;-1:-1:-1;;40789:26:0::1;::::0;;40834:17:::1;:23:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;40834:23:0;;;;;-1:-1:-1;;;;;;40834:23:0::1;::::0;;;;;40876:5:::1;;40644:253;40624:3;;40574:334;;;;40434:481:::0;:::o;36980:87::-;37049:10;;36980:87;:::o;25112:41::-;;;-1:-1:-1;;;;;25112:41:0;;:::o;35089:95::-;35169:7;;35089:95;:::o;35893:313::-;35991:4;36008:36;36018:6;36026:9;36037:6;36008:9;:36::i;:::-;36055:121;36064:6;36072:12;:10;:12::i;:::-;36086:89;36124:6;36086:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36086:19:0;;;;;;:11;:19;;;;;;36106:12;:10;:12::i;:::-;-1:-1:-1;;;;;36086:33:0;;;;;;;;;;;;-1:-1:-1;36086:33:0;;;:89;:37;:89::i;:::-;36055:8;:121::i;:::-;-1:-1:-1;36194:4:0;35893:313;;;;;:::o;37904:253::-;37970:7;38009;;37998;:18;;37990:73;;;;-1:-1:-1;;;37990:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38074:19;38097:10;:8;:10::i;:::-;38074:33;-1:-1:-1;38125:24:0;:7;38074:33;38125:11;:24::i;:::-;38118:31;;;37904:253;;;;:::o;34998:83::-;35064:9;;;;34998:83;:::o;36214:218::-;36302:4;36319:83;36328:12;:10;:12::i;:::-;36342:7;36351:50;36390:10;36351:11;:25;36363:12;:10;:12::i;:::-;-1:-1:-1;;;;;36351:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;36351:25:0;;;:34;;;;;;;;;;;:38;:50::i;37075:377::-;37127:14;37144:12;:10;:12::i;:::-;-1:-1:-1;;;;;37176:19:0;;;;;;:11;:19;;;;;;37127:29;;-1:-1:-1;37176:19:0;;37175:20;37167:77;;;;-1:-1:-1;;;37167:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37256:15;37280:19;37291:7;37280:10;:19::i;:::-;-1:-1:-1;;;;;;;;;37328:15:0;;;;;;:7;:15;;;;;;37255:44;;-1:-1:-1;37328:28:0;;:15;-1:-1:-1;37255:44:0;37328:19;:28::i;:::-;-1:-1:-1;;;;;37310:15:0;;;;;;:7;:15;;;;;:46;37377:7;;:20;;37389:7;37377:11;:20::i;:::-;37367:7;:30;37421:10;;:23;;37436:7;37421:14;:23::i;:::-;37408:10;:36;-1:-1:-1;;;37075:377:0:o;50322:126::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;50408:15:::1;:32:::0;;-1:-1:-1;;;;;;50408:32:0::1;-1:-1:-1::0;;;;;50408:32:0;;;::::1;::::0;;;::::1;::::0;;50322:126::o;37460:436::-;37550:7;37589;;37578;:18;;37570:62;;;;;-1:-1:-1;;;37570:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37648:17;37643:246;;37683:15;37707:19;37718:7;37707:10;:19::i;:::-;-1:-1:-1;37682:44:0;;-1:-1:-1;37741:14:0;;-1:-1:-1;;;;;37741:14:0;37643:246;37790:23;37821:19;37832:7;37821:10;:19::i;:::-;-1:-1:-1;37788:52:0;;-1:-1:-1;37855:22:0;;-1:-1:-1;;;;;37855:22:0;25160:28;;;-1:-1:-1;;;;;25160:28:0;;:::o;43938:156::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;43992:23:::1;44018:24;44036:4;44018:9;:24::i;:::-;43992:50;;44053:33;44070:15;44053:16;:33::i;:::-;14654:1;43938:156::o:0;39408:123::-;-1:-1:-1;;;;;39496:27:0;39472:4;39496:27;;;:18;:27;;;;;;;;;39408:123::o;34537:110::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;34615:24:::1;34600:12;:39:::0;34537:110::o;25223:30::-;;;-1:-1:-1;;;25223:30:0;;;;;:::o;35192:198::-;-1:-1:-1;;;;;35282:20:0;;35258:7;35282:20;;;:11;:20;;;;;;;;35278:49;;;-1:-1:-1;;;;;;35311:16:0;;;;;;:7;:16;;;;;;35304:23;;35278:49;-1:-1:-1;;;;;35365:16:0;;;;;;:7;:16;;;;;;35345:37;;:19;:37::i;15008:148::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;15115:1:::1;15099:6:::0;;15078:40:::1;::::0;-1:-1:-1;;;;;15099:6:0;;::::1;::::0;15078:40:::1;::::0;15115:1;;15078:40:::1;15146:1;15129:19:::0;;-1:-1:-1;;;;;;15129:19:0::1;::::0;;15008:148::o;24567:25::-;;;;:::o;25345:53::-;;;;:::o;25871:8658::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;25984:7:::1;::::0;26090:26:::1;::::0;;-1:-1:-1;;;26090:26:0;;;;-1:-1:-1;;;;;25984:7:0;;::::1;::::0;;;26090:24:::1;::::0;:26:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;25984:7;26090:26;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;26090:26:0;26154:23:::1;::::0;;-1:-1:-1;;;26154:23:0;;;;-1:-1:-1;;;;;26072:66:0;;::::1;::::0;::::1;::::0;26147:4:::1;::::0;26154:21;;::::1;::::0;::::1;::::0;:23:::1;::::0;;::::1;::::0;26090:26:::1;::::0;26154:23;;;;;;;;:21;:23;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;26154:23:0;26072:106:::1;::::0;;-1:-1:-1;;;;;;26072:106:0::1;::::0;;;;;;-1:-1:-1;;;;;26072:106:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;26154:23:::1;::::0;26072:106;;;;;;;-1:-1:-1;26072:106:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;26072:106:0;26056:13:::1;:122:::0;;-1:-1:-1;;;;;;26056:122:0;;::::1;-1:-1:-1::0;;;;;26056:122:0;;::::1;;::::0;;;26242:15:::1;:34:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;26340:18:0::1;-1:-1:-1::0;26359:7:0::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;26340:27:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;26340:27:0;;;:34;;;::::1;;-1:-1:-1::0;;26340:34:0;;::::1;;::::0;;26412:4:::1;26385:33:::0;;:18:::1;:33:::0;;;;;:40;;;::::1;26340:34:::0;26385:40;;::::1;::::0;;;26511:9:::1;:62:::0;;;;:69;;;::::1;::::0;::::1;::::0;;26591:17:::1;:75:::0;;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;26591:75:0;;::::1;26529:42;26591:75;::::0;;;26679:62;:69;;;::::1;::::0;::::1;::::0;;26759:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;26697:42;26759:75;::::0;;26847:62;:69;;;::::1;::::0;::::1;::::0;;26927:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;26865:42;26927:75:::0;;::::1;::::0;;;27015:69;;;::::1;::::0;::::1;::::0;;;27095:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;27183:62;:69;;;::::1;::::0;::::1;::::0;;27263:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;27201:42;27263:75;::::0;;27351:62;:69;;;::::1;::::0;::::1;::::0;;27431:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;27369:42;27431:75;::::0;;27519:62;:69;;;::::1;::::0;::::1;::::0;;27599:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;27537:42;27599:75;::::0;;27687:62;:69;;;::::1;::::0;::::1;::::0;;27767:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;27705:42;27767:75;::::0;;27855:62;:69;;;::::1;::::0;::::1;::::0;;27935:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;27873:42;27935:75;::::0;;28023:62;:69;;;::::1;::::0;::::1;::::0;;28103:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;28041:42;28103:75;::::0;;28191:62;:69;;;::::1;::::0;::::1;::::0;;28271:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;28209:42;28271:75;::::0;;28359:62;:69;;;::::1;::::0;::::1;::::0;;28439:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;28377:42;28439:75;::::0;;28527:62;:69;;;::::1;::::0;::::1;::::0;;28607:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;28545:42;28607:75;::::0;;28695:62;:69;;;::::1;::::0;::::1;::::0;;28775:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;28713:42;28775:75;::::0;;28863:62;:69;;;::::1;::::0;::::1;::::0;;28943:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;28881:42;28943:75;::::0;;29031:62;:69;;;::::1;::::0;::::1;::::0;;29111:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29049:42;29111:75;::::0;;29199:62;:69;;;::::1;::::0;::::1;::::0;;29279:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29217:42;29279:75;::::0;;29367:62;:69;;;::::1;::::0;::::1;::::0;;29447:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29385:42;29447:75;::::0;;29535:62;:69;;;::::1;::::0;::::1;::::0;;29615:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29553:42;29615:75;::::0;;29703:62;:69;;;::::1;::::0;::::1;::::0;;29783:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29721:42;29783:75;::::0;;29871:62;:69;;;::::1;::::0;::::1;::::0;;29951:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29889:42;29951:75;::::0;;30039:62;:69;;;::::1;::::0;::::1;::::0;;30119:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30057:42;30119:75;::::0;;30207:62;:69;;;::::1;::::0;::::1;::::0;;30287:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30225:42;30287:75;::::0;;30375:62;:69;;;::::1;::::0;::::1;::::0;;30455:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30393:42;30455:75;::::0;;30543:62;:69;;;::::1;::::0;::::1;::::0;;30623:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30561:42;30623:75;::::0;;30711:62;:69;;;::::1;::::0;::::1;::::0;;30791:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30729:42;30791:75;::::0;;30879:62;:69;;;::::1;::::0;::::1;::::0;;30959:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30897:42;30959:75;::::0;;31047:62;:69;;;::::1;::::0;::::1;::::0;;31127:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31065:42;31127:75;::::0;;31215:62;:69;;;::::1;::::0;::::1;::::0;;31295:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31233:42;31295:75:::0;;::::1;::::0;;;31383:62;:69;;;::::1;::::0;::::1;::::0;;31463:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31401:42;31463:75;::::0;;31551:62;:69;;;::::1;::::0;::::1;::::0;;31631:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31569:42;31631:75;::::0;;31719:62;:69;;;::::1;::::0;::::1;::::0;;31799:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31737:42;31799:75;::::0;;31887:62;:69;;;::::1;::::0;::::1;::::0;;31967:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31905:42;31967:75;::::0;;32055:62;:69;;;::::1;::::0;::::1;::::0;;32135:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32073:42;32135:75;::::0;;32223:69;;;::::1;::::0;::::1;::::0;;;32303:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;32391:62;:69;;;::::1;::::0;::::1;::::0;;32471:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32409:42;32471:75;::::0;;32559:62;:69;;;::::1;::::0;::::1;::::0;;32639:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32577:42;32639:75;::::0;;32727:62;:69;;;::::1;::::0;::::1;::::0;;32807:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32745:42;32807:75;::::0;;32895:62;:69;;;::::1;::::0;::::1;::::0;;32975:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32913:42;32975:75;::::0;;33063:62;:69;;;::::1;::::0;::::1;::::0;;33143:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33081:42;33143:75;::::0;;33231:62;:69;;;::::1;::::0;::::1;::::0;;33311:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33249:42;33311:75;::::0;;33399:62;:69;;;::::1;::::0;::::1;::::0;;33479:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33417:42;33479:75;::::0;;33567:62;:69;;;::::1;::::0;::::1;::::0;;33647:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33585:42;33647:75;::::0;;33735:62;:69;;;::::1;::::0;::::1;::::0;;33815:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33753:42;33815:75;::::0;;33903:62;:69;;;::::1;::::0;::::1;::::0;;33983:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33921:42;33983:75;::::0;;34071:62;:69;;;::::1;::::0;::::1;::::0;;34151:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;34089:42;34151:75:::0;;::::1;::::0;;;34239:69;;;;::::1;::::0;::::1;::::0;;34319:75;;;;::::1;::::0;;;;;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;;34407:7:::1;:11:::0;;;;34440:1:::1;34429:8;:12:::0;34452:15:::1;:69:::0;;;;::::1;34478:42;34452:69;::::0;;-1:-1:-1;25871:8658:0:o;39884:542::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;39974:7:::1;::::0;-1:-1:-1;;;;;39963:18:0;;::::1;39974:7:::0;::::1;39963:18;;39955:63;;;::::0;;-1:-1:-1;;;39955:63:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40048:13;::::0;-1:-1:-1;;;;;40037:24:0;;::::1;40048:13:::0;::::1;40037:24;;40029:67;;;::::0;;-1:-1:-1;;;40029:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40126:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;40115:18:0::1;:7;-1:-1:-1::0;;;;;40115:18:0::1;;;40107:71;;;;-1:-1:-1::0;;;40107:71:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;40197:24:0;::::1;40216:4;40197:24;;40189:78;;;;-1:-1:-1::0;;;40189:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;40287:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;40286:19;40278:62;;;::::0;;-1:-1:-1;;;40278:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40351:18:0::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;40351:25:0::1;40372:4;40351:25:::0;;::::1;::::0;;;40387:17:::1;:31:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40387:31:0::1;::::0;;::::1;::::0;;39884:542::o;14374:79::-;14412:7;14439:6;-1:-1:-1;;;;;14439:6:0;14374:79;:::o;34903:87::-;34975:7;34968:14;;;;;;;;-1:-1:-1;;34968:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34942:13;;34968:14;;34975:7;;34968:14;;34975:7;34968:14;;;;;;;;;;;;;;;;;;;;;;;;36440:269;36533:4;36550:129;36559:12;:10;:12::i;:::-;36573:7;36582:96;36621:15;36582:96;;;;;;;;;;;;;;;;;:11;:25;36594:12;:10;:12::i;:::-;-1:-1:-1;;;;;36582:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;36582:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;35398:167::-;35476:4;35493:42;35503:12;:10;:12::i;:::-;35517:9;35528:6;35493:9;:42::i;36835:137::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36926:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;36926:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36835:137::o;34655:149::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;34710:11:::1;:18:::0;;-1:-1:-1;;;;;;;;34710:18:0;;::::1;-1:-1:-1::0;;;34710:18:0::1;34739;-1:-1:-1::0;;;34739:18:0::1;::::0;;34781:15:::1;34768:10;:28:::0;34655:149::o;36717:110::-;-1:-1:-1;;;;;36799:20:0;36775:4;36799:20;;;:11;:20;;;;;;;;;36717:110::o;35573:143::-;-1:-1:-1;;;;;35681:18:0;;;35654:7;35681:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;35573:143::o;44269:98::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;44338:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;44338:21:0::1;-1:-1:-1::0;;;;44338:21:0;;::::1;::::0;;;::::1;::::0;;44269:98::o;38165:404::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;38257:7:::1;::::0;-1:-1:-1;;;;;38246:18:0;;::::1;38257:7:::0;::::1;38246:18;;38238:61;;;::::0;;-1:-1:-1;;;38238:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;38319:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38318:21;38310:61;;;::::0;;-1:-1:-1;;;38310:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;38385:16:0;::::1;38404:1;38385:16:::0;;;:7:::1;:16;::::0;;;;;:20;38382:108:::1;;-1:-1:-1::0;;;;;38461:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;38441:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;38422:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;38382:108:::1;-1:-1:-1::0;;;;;38500:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;38500:27:0::1;38523:4;38500:27:::0;;::::1;::::0;;;38538:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;38538:23:0::1;::::0;;::::1;::::0;;38165:404::o;15308:244::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15397:22:0;::::1;15389:73;;;;-1:-1:-1::0;;;15389:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15499:6;::::0;;15478:38:::1;::::0;-1:-1:-1;;;;;15478:38:0;;::::1;::::0;15499:6;::::1;::::0;15478:38:::1;::::0;::::1;15527:6;:17:::0;;-1:-1:-1;;;;;;15527:17:0::1;-1:-1:-1::0;;;;;15527:17:0;;;::::1;::::0;;;::::1;::::0;;15308:244::o;44102:159::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;44185:21:::1;44217:36;44185:21:::0;44217:16:::1;:36::i;50204:110::-:0;50285:21;50204:110;:::o;38577:478::-;14594:12;:10;:12::i;:::-;14584:6;;-1:-1:-1;;;;;14584:6:0;;;:22;;;14576:67;;;;;-1:-1:-1;;;14576:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14576:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38658:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38650:60;;;::::0;;-1:-1:-1;;;38650:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38726:9;38721:327;38745:9;:16:::0;38741:20;::::1;38721:327;;;38803:7;-1:-1:-1::0;;;;;38787:23:0::1;:9;38797:1;38787:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;38787:12:0::1;:23;38783:254;;;38846:9;38856:16:::0;;-1:-1:-1;;38856:20:0;;;38846:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;38831:9:::1;:12:::0;;-1:-1:-1;;;;;38846:31:0;;::::1;::::0;38841:1;;38831:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;38831:46:0::1;-1:-1:-1::0;;;;;38831:46:0;;::::1;;::::0;;38896:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;38935:11:::1;:20:::0;;;;:28;;-1:-1:-1;;38935:28:0::1;::::0;;38982:9:::1;:15:::0;;;::::1;;;38783:254;38763:3;;38721:327;;25260:31:::0;;;-1:-1:-1;;;25260:31:0;;;;;:::o;195:106::-;283:10;195:106;:::o;39539:337::-;-1:-1:-1;;;;;39632:19:0;;39624:68;;;;-1:-1:-1;;;39624:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39711:21:0;;39703:68;;;;-1:-1:-1;;;39703:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39784:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;39836:32;;;;;;;;;;;;;;;;;39539:337;;;:::o;40923:2141::-;-1:-1:-1;;;;;41020:20:0;;41012:70;;;;-1:-1:-1;;;41012:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41101:23:0;;41093:71;;;;-1:-1:-1;;;41093:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41192:1;41183:6;:10;41175:64;;;;-1:-1:-1;;;41175:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41259:20:0;;;;;;:9;:20;;;;;;;;41258:21;41250:57;;;;;-1:-1:-1;;;41250:57:0;;;;;;;;;;;;-1:-1:-1;;;41250:57:0;;;;;;;;;;;;;;;41337:10;41327:21;;;;:9;:21;;;;;;;;41326:22;41318:58;;;;;-1:-1:-1;;;41318:58:0;;;;;;;;;;;;-1:-1:-1;;;41318:58:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41396:17:0;;;;;;:9;:17;;;;;;;;41395:18;41387:54;;;;;-1:-1:-1;;;41387:54:0;;;;;;;;;;;;-1:-1:-1;;;41387:54:0;;;;;;;;;;;;;;;41467:7;:5;:7::i;:::-;-1:-1:-1;;;;;41457:17:0;:6;-1:-1:-1;;;;;41457:17:0;;;:41;;;;;41491:7;:5;:7::i;:::-;-1:-1:-1;;;;;41478:20:0;:9;-1:-1:-1;;;;;41478:20:0;;;41457:41;41454:357;;;41522:11;;-1:-1:-1;;;41522:11:0;;;;41517:283;;-1:-1:-1;;;;;41560:23:0;;41578:4;41560:23;;:53;;-1:-1:-1;;;;;;41587:26:0;;41608:4;41587:26;41560:53;:100;;;;41652:7;:5;:7::i;:::-;-1:-1:-1;;;;;41634:26:0;:6;-1:-1:-1;;;;;41634:26:0;;41560:100;:133;;;;41685:7;:5;:7::i;:::-;-1:-1:-1;;;;;41664:29:0;:9;-1:-1:-1;;;;;41664:29:0;;41560:133;41554:231;;41727:11;;-1:-1:-1;;;41727:11:0;;;;41719:46;;;;;-1:-1:-1;;;41719:46:0;;;;;;;;;;;;-1:-1:-1;;;41719:46:0;;;;;;;;;;;;;;;42076:28;42107:24;42125:4;42107:9;:24::i;:::-;42195:32;;42243:6;;42076:55;;-1:-1:-1;42171:56:0;;;;-1:-1:-1;;;42243:6:0;;;;42242:7;:22;;;;-1:-1:-1;42253:11:0;;-1:-1:-1;;;42253:11:0;;;;42242:22;:45;;;;;42268:19;42242:45;:72;;;;-1:-1:-1;42301:13:0;;-1:-1:-1;;;;;42291:23:0;;;42301:13;;42291:23;;42242:72;42238:410;;;42416:38;42433:20;42416:16;:38::i;:::-;42500:21;42539:22;;42536:101;;42582:39;42599:21;42582:16;:39::i;:::-;42238:410;;-1:-1:-1;;;;;42840:26:0;;42721:12;42840:26;;;:18;:26;;;;;;42736:4;;42840:26;;;:59;;-1:-1:-1;;;;;;42870:29:0;;;;;;:18;:29;;;;;;;;42840:59;42837:105;;;-1:-1:-1;42925:5:0;42837:105;43009:47;43024:6;43031:9;43041:6;43048:7;43009:14;:47::i;:::-;40923:2141;;;;;;:::o;4282:192::-;4368:7;4404:12;4396:6;;;;4388:29;;;;-1:-1:-1;;;4388:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4440:5:0;;;4282:192::o;49274:163::-;49315:7;49336:15;49353;49372:19;:17;:19::i;:::-;49335:56;;-1:-1:-1;49335:56:0;-1:-1:-1;49409:20:0;49335:56;;49409:11;:20::i;:::-;49402:27;;;;49274:163;:::o;5660:132::-;5718:7;5745:39;5749:1;5752;5745:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5738:46;5660:132;-1:-1:-1;;;5660:132:0:o;3397:181::-;3455:7;3487:5;;;3511:6;;;;3503:46;;;;;-1:-1:-1;;;3503:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;48083:467;48142:7;48151;48160;48169;48178;48187;48208:23;48233:12;48247:16;48267:39;48279:7;48288;;48297:8;;48267:11;:39::i;:::-;48207:99;;;;;;48317:19;48340:10;:8;:10::i;:::-;48317:33;;48362:15;48379:23;48404:12;48420:39;48432:7;48441:4;48447:11;48420;:39::i;:::-;48361:98;;-1:-1:-1;48361:98:0;-1:-1:-1;48361:98:0;-1:-1:-1;48510:15:0;;-1:-1:-1;48527:4:0;;-1:-1:-1;48533:8:0;;-1:-1:-1;;;;;48083:467:0;;;;;;;:::o;3852:136::-;3910:7;3937:43;3941:1;3944;3937:43;;;;;;;;;;;;;;;;;:3;:43::i;43072:600::-;25664:6;:13;;-1:-1:-1;;;;25664:13:0;-1:-1:-1;;;25664:13:0;;;43233:16:::1;::::0;;43247:1:::1;43233:16:::0;;;43209:21:::1;43233:16:::0;;::::1;::::0;;43209:21;43233:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;43233:16:0::1;43209:40;;43278:4;43260;43265:1;43260:7;;;;;;;;-1:-1:-1::0;;;;;43260:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;43304:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;43304:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;43260:7;;43304:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;43304:22:0;43294:7;;:4;;43299:1:::1;::::0;43294:7;::::1;;;;;-1:-1:-1::0;;;;;43294:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;43371:15:::1;::::0;43339:62:::1;::::0;43356:4:::1;::::0;43371:15:::1;43389:11:::0;43339:8:::1;:62::i;:::-;43440:15;::::0;:224:::1;::::0;-1:-1:-1;;;43440:224:0;;::::1;::::0;::::1;::::0;;;:15:::1;:224:::0;;;;;;43618:4:::1;43440:224:::0;;;;;;43638:15:::1;43440:224:::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43440:15:0;;::::1;::::0;:66:::1;::::0;43521:11;;43591:4;;43618;43638:15;43440:224;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;:15;:224:::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;25700:6:0;:14;;-1:-1:-1;;;;25700:14:0;;;-1:-1:-1;;;;43072:600:0:o;43680:108::-;43741:15;;-1:-1:-1;;;;;43741:15:0;:39;43766:13;:6;43777:1;43766:10;:13::i;:::-;43741:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44375:819;44487:7;44483:40;;44509:14;:12;:14::i;:::-;-1:-1:-1;;;;;44540:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44564:22:0;;;;;;:11;:22;;;;;;;;44563:23;44540:46;44536:597;;;44603:48;44625:6;44633:9;44644:6;44603:21;:48::i;:::-;44536:597;;;-1:-1:-1;;;;;44674:19:0;;;;;;:11;:19;;;;;;;;44673:20;:46;;;;-1:-1:-1;;;;;;44697:22:0;;;;;;:11;:22;;;;;;;;44673:46;44669:464;;;44736:46;44756:6;44764:9;44775:6;44736:19;:46::i;44669:464::-;-1:-1:-1;;;;;44805:19:0;;;;;;:11;:19;;;;;;;;44804:20;:47;;;;-1:-1:-1;;;;;;44829:22:0;;;;;;:11;:22;;;;;;;;44828:23;44804:47;44800:333;;;44868:44;44886:6;44894:9;44905:6;44868:17;:44::i;44800:333::-;-1:-1:-1;;;;;44934:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44957:22:0;;;;;;:11;:22;;;;;;;;44934:45;44930:203;;;44996:48;45018:6;45026:9;45037:6;44996:21;:48::i;44930:203::-;45077:44;45095:6;45103:9;45114:6;45077:17;:44::i;:::-;45149:7;45145:41;;45171:15;:13;:15::i;:::-;44375:819;;;;:::o;49445:555::-;49542:7;;49578;;49495;;;;;49596:289;49620:9;:16;49616:20;;49596:289;;;49686:7;49662;:21;49670:9;49680:1;49670:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49670:12:0;49662:21;;;;;;;;;;;;;:31;;:66;;;49721:7;49697;:21;49705:9;49715:1;49705:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49705:12:0;49697:21;;;;;;;;;;;;;:31;49662:66;49658:97;;;49738:7;;49747;;49730:25;;;;;;;;;49658:97;49780:34;49792:7;:21;49800:9;49810:1;49800:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49800:12:0;49792:21;;;;;;;;;;;;;49780:7;;:11;:34::i;:::-;49770:44;;49839:34;49851:7;:21;49859:9;49869:1;49859:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49859:12:0;49851:21;;;;;;;;;;;;;49839:7;;:11;:34::i;:::-;49829:44;-1:-1:-1;49638:3:0;;49596:289;;;-1:-1:-1;49921:7:0;;49909;;:20;;:11;:20::i;:::-;49899:7;:30;49895:61;;;49939:7;;49948;;49931:25;;;;;;;;49895:61;49975:7;;-1:-1:-1;49984:7:0;-1:-1:-1;49445:555:0;;;:::o;6277:278::-;6363:7;6398:12;6391:5;6383:28;;;;-1:-1:-1;;;6383:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6422:9;6438:1;6434;:5;;;;;;;6277:278;-1:-1:-1;;;;;6277:278:0:o;48558:366::-;48654:7;;;;48707:28;48731:3;48707:19;:7;48719:6;48707:11;:19::i;:::-;:23;;:28::i;:::-;48692:43;-1:-1:-1;48746:16:0;48765:32;48793:3;48765:23;:7;48777:10;48765:11;:23::i;:32::-;48746:51;-1:-1:-1;48808:23:0;48834:31;48746:51;48834:17;:7;48846:4;48834:11;:17::i;:::-;:21;;:31::i;:::-;48808:57;48901:4;;-1:-1:-1;48907:8:0;;-1:-1:-1;48558:366:0;;-1:-1:-1;;;;;48558:366:0:o;48932:334::-;49027:7;;;;49083:24;:7;49095:11;49083;:24::i;:::-;49065:42;-1:-1:-1;49118:12:0;49133:21;:4;49142:11;49133:8;:21::i;:::-;49118:36;-1:-1:-1;49165:23:0;49191:17;:7;49118:36;49191:11;:17::i;:::-;49227:7;;;;-1:-1:-1;49253:4:0;;-1:-1:-1;48932:334:0;;-1:-1:-1;;;;;48932:334:0:o;39063:214::-;39109:7;;:12;:29;;;;-1:-1:-1;39125:8:0;;:13;39109:29;39106:41;;;39140:7;;39106:41;39177:7;;;39159:15;:25;39214:8;;;39195:16;:27;-1:-1:-1;39235:11:0;;;;39257:12;39063:214;:::o;46283:557::-;46386:15;46403:23;46428:12;46442:23;46467:12;46481:16;46501:19;46512:7;46501:10;:19::i;:::-;-1:-1:-1;;;;;46549:15:0;;;;;;:7;:15;;;;;;46385:135;;-1:-1:-1;46385:135:0;;-1:-1:-1;46385:135:0;;-1:-1:-1;46385:135:0;-1:-1:-1;46385:135:0;-1:-1:-1;46385:135:0;-1:-1:-1;46549:28:0;;46569:7;46549:19;:28::i;:::-;-1:-1:-1;;;;;46531:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46606:7;:15;;;;:28;;46626:7;46606:19;:28::i;:::-;-1:-1:-1;;;;;46588:15:0;;;;;;;:7;:15;;;;;;:46;;;;46666:18;;;;;;;:39;;46689:15;46666:22;:39::i;:::-;-1:-1:-1;;;;;46645:18:0;;;;;;:7;:18;;;;;:60;46716:22;46729:8;46716:12;:22::i;:::-;46749:23;46761:4;46767;46749:11;:23::i;:::-;46805:9;-1:-1:-1;;;;;46788:44:0;46797:6;-1:-1:-1;;;;;46788:44:0;;46816:15;46788:44;;;;;;;;;;;;;;;;;;46283:557;;;;;;;;;:::o;45706:569::-;45807:15;45824:23;45849:12;45863:23;45888:12;45902:16;45922:19;45933:7;45922:10;:19::i;:::-;-1:-1:-1;;;;;45970:15:0;;;;;;:7;:15;;;;;;45806:135;;-1:-1:-1;45806:135:0;;-1:-1:-1;45806:135:0;;-1:-1:-1;45806:135:0;-1:-1:-1;45806:135:0;-1:-1:-1;45806:135:0;-1:-1:-1;45970:28:0;;45806:135;45970:19;:28::i;:::-;-1:-1:-1;;;;;45952:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;46030:18;;;;;:7;:18;;;;;:39;;46053:15;46030:22;:39::i;:::-;-1:-1:-1;;;;;46009:18:0;;;;;;:7;:18;;;;;;;;:60;;;;46101:7;:18;;;;:39;;46124:15;46101:22;:39::i;45202:496::-;45301:15;45318:23;45343:12;45357:23;45382:12;45396:16;45416:19;45427:7;45416:10;:19::i;:::-;-1:-1:-1;;;;;45464:15:0;;;;;;:7;:15;;;;;;45300:135;;-1:-1:-1;45300:135:0;;-1:-1:-1;45300:135:0;;-1:-1:-1;45300:135:0;-1:-1:-1;45300:135:0;-1:-1:-1;45300:135:0;-1:-1:-1;45464:28:0;;45300:135;45464:19;:28::i;46848:628::-;46951:15;46968:23;46993:12;47007:23;47032:12;47046:16;47066:19;47077:7;47066:10;:19::i;:::-;-1:-1:-1;;;;;47114:15:0;;;;;;:7;:15;;;;;;46950:135;;-1:-1:-1;46950:135:0;;-1:-1:-1;46950:135:0;;-1:-1:-1;46950:135:0;-1:-1:-1;46950:135:0;-1:-1:-1;46950:135:0;-1:-1:-1;47114:28:0;;47134:7;47114:19;:28::i;:::-;-1:-1:-1;;;;;47096:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47171:7;:15;;;;:28;;47191:7;47171:19;:28::i;39285:115::-;39339:15;;39329:7;:25;39376:16;;39365:8;:27;39285:115::o;4724:471::-;4782:7;5027:6;5023:47;;-1:-1:-1;5057:1:0;5050:8;;5023:47;5094:5;;;5098:1;5094;:5;:1;5118:5;;;;;:10;5110:56;;;;-1:-1:-1;;;5110:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47484:343;47543:19;47566:10;:8;:10::i;:::-;47543:33;-1:-1:-1;47587:16:0;47606:25;:8;47543:33;47606:12;:25::i;:::-;47683:4;47667:22;;;;:7;:22;;;;;;47587:44;;-1:-1:-1;47667:36:0;;47587:44;47667:26;:36::i;:::-;47658:4;47642:22;;;;:7;:22;;;;;;;;:61;;;;47717:11;:26;;;;;;47714:105;;;47799:4;47783:22;;;;:7;:22;;;;;;:36;;47810:8;47783:26;:36::i;:::-;47774:4;47758:22;;;;:7;:22;;;;;:61;47714:105;47484:343;;;:::o;47835:147::-;47913:7;;:17;;47925:4;47913:11;:17::i;:::-;47903:7;:27;47954:10;;:20;;47969:4;47954:14;:20::i;:::-;47941:10;:33;-1:-1:-1;;47835:147:0:o

Swarm Source

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