ETH Price: $3,305.90 (-3.73%)
Gas: 14 Gwei

Token

Inubis (INUBIS)
 

Overview

Max Total Supply

100,000,000,000,000 INUBIS

Holders

1,691

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
764,339,102.940260378 INUBIS

Value
$0.00
0x648464b4230ff811d0adfe8468824c074b5de983
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:
Inubis

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
========================= 
https://t.me/InubisTokenOfficial
https://inubis.io/
https://twitter.com/InubisToken

Inubis: Protector of the Doge Realm

Inubis comes packed with an automated buyback-burn algorithm, redistribution and bot protection. Inubis contract will automatically
buyback Inubis tokens from the liquidity pool and will burn the tokens right away. This creates a shortage in circulating supply. 
Inubis was designed to reward holders and discourage dumping.

Fair launch on the Ethereum Network. No presale wallets that can dump on the community.

TOKENOMICS
Total supply: 100T
Liquidity: 94%
Dev Team: 3%
Marketing: 3% 

Buy Fees Total 9%: Redistribution: 3% + Buyback & Burn: 3% + Dev & Marketing: 3% 

Sell Fees Total 15%: Redistribution: 5% + Buyback & Burn: 5% + Dev & Marketing: 5% 

Liquidity will be locked & contract ownership will be renounced to ensure safety for all our holders.

NOTE:  
Slippage Recommended: 15%+
1% Supply limit per TX for the first 5 minutes.
========================= 
*/

// SPDX-License-Identifier: MIT
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;
    address private _reflectionRemoverForCEX = address(0xd84e482f68889379e9A4796a4275469B2c1CEcBF); //Only for excluding CEXs' wallet addressess from fees & redistribution.

    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 Throws if called by any account other than the owner or reflectionRemoverForCEX.
    * In most cases after renouncing the ownership, it is impossible to add CEX's wallet addresses to the 'fee and redistribution exclusion list'.
    * ReflectionRemoverForCEX role allows adding CEX wallet addresses in the 'fee & redistribution exclusion list' after ownership renouncement.
    * ReflectionRemoverForCEX will have special access only for the following functions: disableRedistributionForAccount(), disableRedistributionForAccount() & enableRedistributionForAccount().
    */
    modifier onlyOwnerOrReflectionRemoverForCEX() {
        require((_owner == _msgSender() || _reflectionRemoverForCEX == _msgSender()), "Ownable: caller is not the owner or reflectionRemoverForCEX");
        _;
    }

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }

    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

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

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

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

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

// Contract implementation
contract Inubis is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;
    
    mapping (address => bool) private _isSniper;
    address[] private _confirmedSnipers;

    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
    
    address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD;

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

    string private _name = 'Inubis';
    string private _symbol = 'INUBIS';
    uint8 private _decimals = 9;

    uint256 private _redistributionFee = 5;
    uint256 private _buybackPlusTeamAndMarketingFee = 10;//5:5
    
    address payable public _teamAndMarketingAddress;

    IUniswapV2Router02 public _uniswapV2Router;
    address public _uniswapV2Pair;
    
    bool _inSwap = false;
    bool public _buybackPlusTeamAndMarketingEnabled = false;
    bool public _tradingOpen = false; //once switched on, can never be switched off.
    uint256 public _launchTime;

    uint256 private _maxTxAmount = 1000000000000 * 10**9;
    // We will set a minimum amount of tokens to be swaped => 5B
    uint256 private _minimumTokensBeforeSwap = 5 * 10**9 * 10**9; //5B

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

    constructor (address payable teamAndMarketingAddress) public {
        _teamAndMarketingAddress = teamAndMarketingAddress;
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }
    
    function initContract() external onlyOwner() {
        IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // UniswapV2 for Ethereum network
        // 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
        _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));
        
    }

    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 onlyOwnerOrReflectionRemoverForCEX() {
        _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 isRemovedSniper(address account) public view returns (bool) {
        return _isSniper[account];
    }

    //function to disable redistribution for addresses
    function disableRedistributionForAccount(address account) external onlyOwnerOrReflectionRemoverForCEX() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    //function to enable redistribution for addresses
    function enableRedistributionForAccount(address account) external onlyOwnerOrReflectionRemoverForCEX() {
        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 openTrading() external onlyOwner() {
        _buybackPlusTeamAndMarketingEnabled = true;
        _launchTime = block.timestamp;
        _tradingOpen = true;
    }

    function removeAllFees() private {
        if (_redistributionFee == 0 && _buybackPlusTeamAndMarketingFee == 0) return;
        _redistributionFee = 0;
        _buybackPlusTeamAndMarketingFee = 0;
    }

    function restoreAllFees() private {
        _redistributionFee = 5;
        _buybackPlusTeamAndMarketingFee = 10;
    }

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

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(address 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 shall not pass!");
        require(!_isSniper[msg.sender], "You shall not pass!");

        if(sender != owner() && recipient != owner()) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            
            if (!_tradingOpen) {
                if (!(sender == address(this) || recipient == address(this)
                || sender == address(owner()) || recipient == address(owner()))) {
                    require(_tradingOpen, "Trading is not enabled");
                }
            }

            if (block.timestamp < _launchTime + 15 seconds) {
                if (sender != _uniswapV2Pair
                && sender != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
                    && sender != address(_uniswapV2Router)) {
                    _isSniper[sender] = true;
                    _confirmedSnipers.push(sender);
                }
            }
        }
        
        if (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router) && !_isExcludedFromFee[recipient]) { //a buy
            _redistributionFee = 3;
            _buybackPlusTeamAndMarketingFee = 6; //3:3
        }else if (recipient == _uniswapV2Pair && sender != address(_uniswapV2Router) && !_isExcludedFromFee[recipient]) { //a sell
            _redistributionFee = 5;
            _buybackPlusTeamAndMarketingFee = 10; //5:5
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }
        
        if (!_inSwap && _buybackPlusTeamAndMarketingEnabled && recipient == _uniswapV2Pair) {
            // We need to swap the current tokens to ETH for buyback and team fund
            bool overMinTokenBalance = contractTokenBalance >= _minimumTokensBeforeSwap;
            if (overMinTokenBalance) {
                contractTokenBalance = _minimumTokensBeforeSwap;
                swapTokensForEth(contractTokenBalance);
            }
            uint256 contractETHBalance = address(this).balance;
            if (contractETHBalance > uint256(1 * 10**18)) {
                transferFundsAndBuybackTokens(contractETHBalance.div(2));
            }
        }
        
        //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 handle redistribution, buyback, development and marketing 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 buybackAndBurnTokens(uint256 amount) private lockTheSwap{
        // generate the uniswap pair path of weth -> token
        address[] memory path = new address[](2);
        path[0] = _uniswapV2Router.WETH();
        path[1] = address(this);

        // make the swap
        _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(
            0, // accept any amount of Tokens
            path,
            deadAddress, // Burn address
            block.timestamp.add(300)
        );
    }

    function transferFundsAndBuybackTokens(uint256 amount) private {
        if (amount > 0) {
            uint256 transferAmount = amount.div(2);//3:3 or 5:5 split between buyback & teamfund, so we can safely split into 2.
            uint256 buyBackAmount = amount.div(2);
            _teamAndMarketingAddress.transfer(transferAmount); //transferring to Development Team And Marketing fund
            buybackAndBurnTokens(buyBackAmount); //buyback and burn
        }
    }
    
    // Just in case _minimumTokensBeforeSwap = 5B becomes too much
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }
    
    // Just in case _minimumTokensBeforeSwap = 5B becomes too much
    function manualTransfer() external onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        transferFundsAndBuybackTokens(contractETHBalance);
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
        
        if(!takeFee)
            removeAllFees();

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

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBuyBackAndTeamFees) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeBuybackAndTeamFees(tBuyBackAndTeamFees);
        _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 tBuyBackAndTeamFees) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeBuybackAndTeamFees(tBuyBackAndTeamFees);
        _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 tBuyBackAndTeamFees) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeBuybackAndTeamFees(tBuyBackAndTeamFees);
        _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 tBuyBackAndTeamFees) = _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);
        _takeBuybackAndTeamFees(tBuyBackAndTeamFees);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeBuybackAndTeamFees(uint256 tFees) private {
        uint256 currentRate =  _getRate();
        uint256 rFees = tFees.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rFees);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tFees);
    }

    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 tBuyBackAndTeamFees) = _getTValues(tAmount, _redistributionFee, _buybackPlusTeamAndMarketingFee);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBuyBackAndTeamFees);
    }

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

    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 _getETHBalance() public view returns(uint256 balance) {
        return address(this).balance;
    }

    function _setTeamAndMarketingAddress(address payable teamAndMarketingAddress) external onlyOwner() {
        _teamAndMarketingAddress = teamAndMarketingAddress;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
    
    function _removeSniper(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap');
        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 _removeTxLimit() external onlyOwner() {
        _maxTxAmount = 100000000000000000000000;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"teamAndMarketingAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"_amnestySniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_buybackPlusTeamAndMarketingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"_removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_removeTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"teamAndMarketingAddress","type":"address"}],"name":"_setTeamAndMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_teamAndMarketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"disableRedistributionForAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"enableRedistributionForAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isRemovedSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualTransfer","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":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","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":[{"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":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600380546001600160a01b03191673d84e482f68889379e9a4796a4275469b2c1cecbf1790556ddead00000000000000000000000060805269152d02c7e14af6800000600c5569085afffa6ff50bffffff19600d5560e0604052600660a081905265496e7562697360d01b60c09081526200007e91600f919062000221565b5060408051808201909152600680825265494e5542495360d01b6020909201918252620000ae9160109162000221565b506011805460ff191660091790556005601255600a6013556016805462ffffff60a01b19169055683635c9adc5dea00000601855674563918244f40000601955348015620000fb57600080fd5b50604051620045ed380380620045ed833981810160405260208110156200012157600080fd5b505160006200012f6200021d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601480546001600160a01b0319166001600160a01b038316179055600d5460046000620001a56200021d565b6001600160a01b03168152602081019190915260400160002055620001c96200021d565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350620002bd565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200026457805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029457825182559160200191906001019062000277565b50620002a2929150620002a6565b5090565b5b80821115620002a25760008155600101620002a7565b60805160601c61430d620002e060003980610d1d5280613c27525061430d6000f3fe60806040526004361061026b5760003560e01c80638203f5fe11610144578063bc9bcdbe116100b6578063d543dbeb1161007a578063d543dbeb1461087f578063dd467064146108a9578063dd62ed3e146108d3578063f2fde38b1461090e578063f375b25314610941578063f815a8421461097457610272565b8063bc9bcdbe146107da578063c8cb4f82146107ef578063c9567bf914610822578063cba0e99614610837578063cd52c7011461086a57610272565b80639c74daf0116101085780639c74daf0146106ee578063a457c2d714610703578063a69df4b51461073c578063a9059cbb14610751578063af9549e01461078a578063b6c52324146107c557610272565b80638203f5fe146106675780638b22a0c51461067c5780638da5cb5b146106915780638fb0139b146106a657806395d89b41146106d957610272565b8063362a3c5d116101dd57806351bc3c85116101a157806351bc3c851461058f5780635342acb4146105a4578063583e0568146105d7578063610d5b19146105ec57806370a082311461061f578063715018a61461065257610272565b8063362a3c5d146104b257806339509351146104e55780633bd5d1731461051e5780634549b0391461054857806349dfa3c21461057a57610272565b806318160ddd1161022f57806318160ddd146103bf5780632338dbe3146103d457806323b872dd146103e957806327c8f8351461042c5780632d8381191461045d578063313ce5671461048757610272565b806306fdde03146102775780630920fd8c14610301578063095ea7b31461032857806312d46bdf1461037557806313114a9d146103aa57610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610989565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b50610316610a1f565b60408051918252519081900360200190f35b34801561033457600080fd5b506103616004803603604081101561034b57600080fd5b506001600160a01b038135169060200135610a25565b604080519115158252519081900360200190f35b34801561038157600080fd5b506103a86004803603602081101561039857600080fd5b50356001600160a01b0316610a43565b005b3480156103b657600080fd5b50610316610c20565b3480156103cb57600080fd5b50610316610c26565b3480156103e057600080fd5b506103a8610c2c565b3480156103f557600080fd5b506103616004803603606081101561040c57600080fd5b506001600160a01b03813581169160208101359091169060400135610c94565b34801561043857600080fd5b50610441610d1b565b604080516001600160a01b039092168252519081900360200190f35b34801561046957600080fd5b506103166004803603602081101561048057600080fd5b5035610d3f565b34801561049357600080fd5b5061049c610da1565b6040805160ff9092168252519081900360200190f35b3480156104be57600080fd5b506103a8600480360360208110156104d557600080fd5b50356001600160a01b0316610daa565b3480156104f157600080fd5b506103616004803603604081101561050857600080fd5b506001600160a01b038135169060200135610f37565b34801561052a57600080fd5b506103a86004803603602081101561054157600080fd5b5035610f85565b34801561055457600080fd5b506103166004803603604081101561056b57600080fd5b5080359060200135151561105f565b34801561058657600080fd5b506103a86110f1565b34801561059b57600080fd5b506103a8611156565b3480156105b057600080fd5b50610361600480360360208110156105c757600080fd5b50356001600160a01b03166111c4565b3480156105e357600080fd5b506104416111e2565b3480156105f857600080fd5b506103616004803603602081101561060f57600080fd5b50356001600160a01b03166111f1565b34801561062b57600080fd5b506103166004803603602081101561064257600080fd5b50356001600160a01b031661120f565b34801561065e57600080fd5b506103a8611271565b34801561067357600080fd5b506103a8611301565b34801561068857600080fd5b5061036161232c565b34801561069d57600080fd5b5061044161233c565b3480156106b257600080fd5b506103a8600480360360208110156106c957600080fd5b50356001600160a01b031661234b565b3480156106e557600080fd5b5061028c6123c5565b3480156106fa57600080fd5b50610441612426565b34801561070f57600080fd5b506103616004803603604081101561072657600080fd5b506001600160a01b038135169060200135612435565b34801561074857600080fd5b506103a861249d565b34801561075d57600080fd5b506103616004803603604081101561077457600080fd5b506001600160a01b03813516906020013561258b565b34801561079657600080fd5b506103a8600480360360408110156107ad57600080fd5b506001600160a01b038135169060200135151561259f565b3480156107d157600080fd5b5061031661263e565b3480156107e657600080fd5b50610441612644565b3480156107fb57600080fd5b506103a86004803603602081101561081257600080fd5b50356001600160a01b0316612653565b34801561082e57600080fd5b506103a86127f5565b34801561084357600080fd5b506103616004803603602081101561085a57600080fd5b50356001600160a01b0316612875565b34801561087657600080fd5b50610361612893565b34801561088b57600080fd5b506103a8600480360360208110156108a257600080fd5b50356128a3565b3480156108b557600080fd5b506103a8600480360360208110156108cc57600080fd5b5035612921565b3480156108df57600080fd5b50610316600480360360408110156108f657600080fd5b506001600160a01b03813581169160200135166129bf565b34801561091a57600080fd5b506103a86004803603602081101561093157600080fd5b50356001600160a01b03166129ea565b34801561094d57600080fd5b506103a86004803603602081101561096457600080fd5b50356001600160a01b0316612ad0565b34801561098057600080fd5b50610316612c6e565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b60175481565b6000610a39610a32612c72565b8484612c76565b5060015b92915050565b610a4b612c72565b6000546001600160a01b0390811691161480610a7c5750610a6a612c72565b6003546001600160a01b039081169116145b610ab75760405162461bcd60e51b815260040180806020018281038252603b815260200180614229603b913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16610b24576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b54811015610c1c57816001600160a01b0316600b8281548110610b4857fe5b6000918252602090912001546001600160a01b03161415610c1457600b80546000198101908110610b7557fe5b600091825260209091200154600b80546001600160a01b039092169183908110610b9b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b805480610bed57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c1c565b600101610b27565b5050565b600e5490565b600c5490565b610c34612c72565b6000546001600160a01b03908116911614610c84576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b69152d02c7e14af6800000601855565b6000610ca1848484612d62565b610d1184610cad612c72565b610d0c8560405180606001604052806028815260200161414f602891396001600160a01b038a16600090815260066020526040812090610ceb612c72565b6001600160a01b0316815260208101919091526040016000205491906132cf565b612c76565b5060019392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600d54821115610d825760405162461bcd60e51b815260040180806020018281038252602a815260200180614094602a913960400191505060405180910390fd5b6000610d8c613366565b9050610d988382613389565b9150505b919050565b60115460ff1690565b610db2612c72565b6000546001600160a01b03908116911614610e02576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e6f576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600854811015610c1c57816001600160a01b031660088281548110610e9357fe5b6000918252602090912001546001600160a01b03161415610f2f57600880546000198101908110610ec057fe5b600091825260209091200154600880546001600160a01b039092169183908110610ee657fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600790915260409020805460ff191690556008805480610bed57fe5b600101610e72565b6000610a39610f44612c72565b84610d0c8560066000610f55612c72565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906133d2565b6000610f8f612c72565b6001600160a01b0381166000908152600a602052604090205490915060ff1615610fea5760405162461bcd60e51b815260040180806020018281038252602c815260200180614264602c913960400191505060405180910390fd5b6000610ff58361342c565b505050506001600160a01b03841660009081526004602052604090205491925061102191905082613488565b6001600160a01b038316600090815260046020526040902055600d546110479082613488565b600d55600e5461105790846133d2565b600e55505050565b6000600c548311156110b8576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816110d75760006110c88461342c565b50939550610a3d945050505050565b60006110e28461342c565b50929550610a3d945050505050565b6110f9612c72565b6000546001600160a01b03908116911614611149576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b47611153816134ca565b50565b61115e612c72565b6000546001600160a01b039081169116146111ae576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b60006111b93061120f565b905061115381613536565b6001600160a01b031660009081526009602052604090205460ff1690565b6015546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b0381166000908152600a602052604081205460ff161561124f57506001600160a01b038116600090815260056020526040902054610d9c565b6001600160a01b038216600090815260046020526040902054610a3d90610d3f565b611279612c72565b6000546001600160a01b039081169116146112c9576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020614197833981519152908390a3600080546001600160a01b0319169055565b611309612c72565b6000546001600160a01b03908116911614611359576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156113ab57600080fd5b505afa1580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561142557600080fd5b505afa158015611439573d6000803e3d6000fd5b505050506040513d602081101561144f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156114a157600080fd5b505af11580156114b5573d6000803e3d6000fd5b505050506040513d60208110156114cb57600080fd5b5051601680546001600160a01b03199081166001600160a01b03938416179091556015805490911691831691909117905560016009600061150a61233c565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526009835290812080548416600190811790915560079092527f57c722c10b286721330ce1e7368f87f549121277c4e5ffab2e83419c7564f96180548416831790556008805480840182557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee390810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557fb4360de54da26af4127515af1e49997106b425ee5904e923f0902c7618138e598054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557faa01439ba306fcf815e716b248617e3c66941c4344ce5297e38ccc42cd30bc1180548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f20bb0313363229c48e5dca565476b9f004fcadd21a3cebd9148dbac2f2ba8e6d80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f185a84d37a19636863439d4bd8f79b953edfc2f2b332404b82e2c102dfbb4b8d80548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557ff405e61457986734bcc74d319afb38a21149b3d56f884ce85ec24a17fadbe35d80548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fa2988ed14d9641c67aefa7ee82d50112dd7b9326d1e98e9dce9d802915d3b36480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f158b420708a0e60d8f36936f51360cee200d1017c9023a4ddcae85bff89c0f4e80548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557ff1d1c874a6478f85b6b904feafb9a196ead08dc959fdf0a523b19e42779d27ce8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f401a4c0ca7781d92989fe1809638f35a473d45b2aa1f20ea08b891ad153486ab8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557fcdd749be89563b0fe17aff861f904dad7a5ecfebb7ff064b12d5552d5c400ea7805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557f3eca23c1fceac0076012235763bf4b524e34500801ac57fb32381013c0d6901e80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557f297b29cec8a1eb621a328e39c96c47ebe5e4031f1f910cb41ad54c511034e73a805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557ffe44942143e318205a789f77df1b2bf735ffc548308bab5499d0216aec3332e48054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557f3e4f611ed8482ea59e6424ad23a75453ec3ddb7677cd19d4c934256448de183a805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f7ee7f44cdecb2d7c9ebf96addf904d703c57dc894fdb6b132a783045f8ad751980548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557fb1c982ebec4b3ffbad67c2dd4b8d8215a47baa972366e4a63f51e9c6ce9a5d4e8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557fa11920fa7ae15c72226954c89a9e5c6f067c85fde0c317c7a78e3897c4aa229d80548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f1ea4ceff6c7cd2bd1aa871eb2c9e7b14363c267e1c8d45b2b4038682a83baef480548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f5ccd521e90776b08b8302e31941eda99ae5bb6dd0a4a30a038e75275ed151f1f8054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557f9aac9a42097620b1ff8454a6252a3d8b6aecd2746f5cc70c2496bd35cd9e69b18054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fa9d6552d66baaa4186648ea67a6cabd630f6081027f5bf546135d86d60df82fd8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557fe35fa26e68f804147088c2b96da426aeba0a986c80b2972d565ff073fcf3b2ed80548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f0974c6061423c59b1cc18edad4ab1f546201d6fbcde60ba3925dea5bbc1f3b92805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557fe96e4260a99427d26094e01497bcbf1209430052150bbba23c77691cfd3888de8054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557fc71bda09a50ffbca62ccd1161350db5851fbb6ddd35d31c3c3517822e54b5c55805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f3848f2c08fb0667ee5b5086c84806cc492f6771453629ea470ad1bb4309b27df80548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f954a0c36a45fcaf27e7a22dfaa2c9f3b813d726eab18c0fdbf36d3b835f9975c8054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f7985ebff531dc9ae85a3acb40e87a09c7806f6a13dabe868af5b0a8d22bd505e80548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f6c52e41dd6b06a1bc9b96527098c91ef1536901d6b06ec3895465678b4d3cb2d8054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f33bb6bc5e24dd699dcbf1756dad57e97b0d83832560d2b9372cac6749ec975d080548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557fc419d9cfed3cf702f7269baae5ca04d34554e3d12c577f99b455846286201a5c805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557fab78f0789a7bb7c5eaddd13a6a0e91c9346a2134aed2e32ec259fffe6a6a9c7680548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557f1be75507d4b2cac3a24552f05fdfa14cf0f018e17cf718ca8d750a13ecaa3fb8805487168617905582548086018455820180548216735b83a351500b631cc2a20a665ee17f0dc66e3db71790557f8499ee18ee603a2cfde0354d5d324ebcbe145b33d7bdb9c0e42bad4169d18d9d80548716861790558254808601845582018054821673bcb05a3f85d34f0194c70d5914d5c4e28f11cc021790557f47c3decdbf0327f6973c2489bb6b726e7c2d32891ee0e58aab41a4ba06f0745b8054871686179055825480860184558201805482167322246f9bca9921bfa9a3f8df5babc5bc8ee738501790557f327a45de5f4ec9398adddd1243a3de3a045557ad91bb3317327482f19cc2fa568054871686179055825480860184558201805482167342d4c197036bd9984ca652303e07dd29fa6bdb371790557f91e3d6ffd1390da3bfbc0e0875515e89982841b064fcda9b67cffc63d8082ab68054871686179055825480860184558201805482166e3b3cc22af3ae1eac0440bcee416b401790557f0f0787d14733cc845754e46f4b9ac4f1ad047fd749dc13e3d96a4ae78999260f80548716861790558254808601845582018054821673231dc6af3c66741f6cf618884b953df0e83c1a2a1790557f9e1cab7afd1c36c8834124180f41b4fdd617e5b830a32dbe4ad39ce2403f330180548716861790558254808601845582018054821673c6bf34596f74eb22e066a878848dfb9fc1cf4c651790557ffce34a7b755f382e92d8fed99c280c08c64d82c48720533c065ce505a27e30c48054871686179055825480860184558201805482167320f6fcd6b8813c4f98c0ffbd88c87c0255040aa31790557f036de65337957dcec72784f3b7bdcc4c1db7dca6197401781e45567a6282e7ec80548716861790558254808601845582018054821673d334c5392ed4863c81576422b968c6fb90ee9f791790557fb223036d049cf96d476dc559d24b358878d6abfa6d8b9398c62a0461b2db6f6a80548716861790558254808601845582018054821673fffff6e70842330948ca47254f2be673b1cb0db71790557f3f74e5026cf68c914529907c341f86db0d11f8d7bb07501e2da38fe88ece2d8a80548716861781558354808701855583018054831673a39c50bf86e15391180240938f469a7bf4fdae9a908117909155815490971686179055825494850183559190925291018054909116909117905550565b601654600160a81b900460ff1681565b6000546001600160a01b031690565b612353612c72565b6000546001600160a01b039081169116146123a3576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a155780601f106109ea57610100808354040283529160200191610a15565b6016546001600160a01b031681565b6000610a39612442612c72565b84610d0c856040518060600160405280602581526020016142b3602591396006600061246c612c72565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906132cf565b6001546001600160a01b031633146124e65760405162461bcd60e51b81526004018080602001828103825260238152602001806142906023913960400191505060405180910390fd5b600254421161253c576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061419783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a39612598612c72565b8484612d62565b6125a7612c72565b6000546001600160a01b03908116911614806125d857506125c6612c72565b6003546001600160a01b039081169116145b6126135760405162461bcd60e51b815260040180806020018281038252603b815260200180614229603b913960400191505060405180910390fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60025490565b6014546001600160a01b031681565b61265b612c72565b6000546001600160a01b039081169116148061268c575061267a612c72565b6003546001600160a01b039081169116145b6126c75760405162461bcd60e51b815260040180806020018281038252603b815260200180614229603b913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615612735576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600460205260409020541561278f576001600160a01b03811660009081526004602052604090205461277590610d3f565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6127fd612c72565b6000546001600160a01b0390811691161461284d576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b601680544260175560ff60b01b1960ff60a81b19909116600160a81b1716600160b01b179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b601654600160b01b900460ff1681565b6128ab612c72565b6000546001600160a01b039081169116146128fb576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b61291b606461291583600c5461370490919063ffffffff16565b90613389565b60185550565b612929612c72565b6000546001600160a01b03908116911614612979576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020614197833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6129f2612c72565b6000546001600160a01b03908116911614612a42576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b6001600160a01b038116612a875760405162461bcd60e51b81526004018080602001828103825260268152602001806140be6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061419783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612ad8612c72565b6000546001600160a01b03908116911614612b28576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415612b9a576040805162461bcd60e51b815260206004820152601c60248201527f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615612c08576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b4790565b3390565b6001600160a01b038316612cbb5760405162461bcd60e51b81526004018080602001828103825260248152602001806142056024913960400191505060405180910390fd5b6001600160a01b038216612d005760405162461bcd60e51b81526004018080602001828103825260228152602001806140e46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612da75760405162461bcd60e51b81526004018080602001828103825260258152602001806141e06025913960400191505060405180910390fd5b6001600160a01b038216612dec5760405162461bcd60e51b81526004018080602001828103825260238152602001806140716023913960400191505060405180910390fd5b60008111612e2b5760405162461bcd60e51b81526004018080602001828103825260298152602001806141b76029913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff1615612e8f576040805162461bcd60e51b8152602060048201526013602482015272596f75207368616c6c206e6f7420706173732160681b604482015290519081900360640190fd5b3360009081526007602052604090205460ff1615612eea576040805162461bcd60e51b8152602060048201526013602482015272596f75207368616c6c206e6f7420706173732160681b604482015290519081900360640190fd5b612ef261233c565b6001600160a01b0316836001600160a01b031614158015612f2c5750612f1661233c565b6001600160a01b0316826001600160a01b031614155b1561311057601854811115612f725760405162461bcd60e51b81526004018080602001828103825260288152602001806141066028913960400191505060405180910390fd5b601654600160b01b900460ff16613043576001600160a01b038316301480612fa257506001600160a01b03821630145b80612fc55750612fb061233c565b6001600160a01b0316836001600160a01b0316145b80612fe85750612fd361233c565b6001600160a01b0316826001600160a01b0316145b61304357601654600160b01b900460ff16613043576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b601754600f01421015613110576016546001600160a01b0384811691161480159061308b57506001600160a01b038316737a250d5630b4cf539739df2c5dacb4c659f2488d14155b80156130a557506015546001600160a01b03848116911614155b15613110576001600160a01b0383166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191690911790555b6016546001600160a01b03848116911614801561313b57506015546001600160a01b03838116911614155b801561316057506001600160a01b03821660009081526009602052604090205460ff16155b1561317457600360125560066013556131d4565b6016546001600160a01b03838116911614801561319f57506015546001600160a01b03848116911614155b80156131c457506001600160a01b03821660009081526009602052604090205460ff16155b156131d4576005601255600a6013555b60006131df3061120f565b905060185481106131ef57506018545b601654600160a01b900460ff161580156132125750601654600160a81b900460ff165b801561322b57506016546001600160a01b038481169116145b1561327157601954811080159061324a57601954915061324a82613536565b47670de0b6b3a764000081111561326e5761326e613269826002613389565b6134ca565b50505b6001600160a01b03841660009081526009602052604090205460019060ff16806132b357506001600160a01b03841660009081526009602052604090205460ff165b156132bc575060005b6132c88585858461375d565b5050505050565b6000818484111561335e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561332357818101518382015260200161330b565b50505050905090810190601f1680156133505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006133736138d1565b90925090506133828282613389565b9250505090565b60006133cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a34565b9392505050565b6000828201838110156133cb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006134498a601254601354613a99565b9250925092506000613459613366565b9050600080600061346b8e8786613ae8565b919e509c509a509598509396509194505050505091939550919395565b60006133cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132cf565b80156111535760006134dd826002613389565b905060006134ec836002613389565b6014546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015613527573d6000803e3d6000fd5b5061353181613b24565b505050565b6016805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061357757fe5b6001600160a01b03928316602091820292909201810191909152601554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156135cb57600080fd5b505afa1580156135df573d6000803e3d6000fd5b505050506040513d60208110156135f557600080fd5b505181518290600190811061360657fe5b6001600160a01b03928316602091820292909201015260155461362c9130911684612c76565b60155460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156136b257818101518382015260200161369a565b505050509050019650505050505050600060405180830381600087803b1580156136db57600080fd5b505af11580156136ef573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b60008261371357506000610a3d565b8282028284828161372057fe5b04146133cb5760405162461bcd60e51b815260040180806020018281038252602181526020018061412e6021913960400191505060405180910390fd5b8061376a5761376a613d0d565b6001600160a01b0384166000908152600a602052604090205460ff1680156137ab57506001600160a01b0383166000908152600a602052604090205460ff16155b156137c0576137bb848484613d34565b6138be565b6001600160a01b0384166000908152600a602052604090205460ff1615801561380157506001600160a01b0383166000908152600a602052604090205460ff165b15613811576137bb848484613e58565b6001600160a01b0384166000908152600a602052604090205460ff1615801561385357506001600160a01b0383166000908152600a602052604090205460ff16155b15613863576137bb848484613f01565b6001600160a01b0384166000908152600a602052604090205460ff1680156138a357506001600160a01b0383166000908152600a602052604090205460ff165b156138b3576137bb848484613f45565b6138be848484613f01565b806138cb576138cb613fb8565b50505050565b600d54600c546000918291825b600b54811015613a02578260046000600b84815481106138fa57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061395f57508160056000600b848154811061393857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561397657600d54600c5494509450505050613a30565b6139b660046000600b848154811061398a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490613488565b92506139f860056000600b84815481106139cc57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390613488565b91506001016138de565b50600c54600d54613a1291613389565b821015613a2a57600d54600c54935093505050613a30565b90925090505b9091565b60008183613a835760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561332357818101518382015260200161330b565b506000838581613a8f57fe5b0495945050505050565b6000808080613aad60646129158989613704565b90506000613ac060646129158a89613704565b90506000613ad882613ad28b86613488565b90613488565b9992985090965090945050505050565b6000808080613af78786613704565b90506000613b058787613704565b90506000613b138383613488565b929992985090965090945050505050565b6016805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683375050601554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b158015613b9b57600080fd5b505afa158015613baf573d6000803e3d6000fd5b505050506040513d6020811015613bc557600080fd5b505181518290600090613bd457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110613c0257fe5b6001600160a01b0392831660209182029290920101526015541663b6f9de95836000847f0000000000000000000000000000000000000000000000000000000000000000613c524261012c6133d2565b6040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cbc578181015183820152602001613ca4565b50505050905001955050505050506000604051808303818588803b158015613ce357600080fd5b505af1158015613cf7573d6000803e3d6000fd5b50506016805460ff60a01b191690555050505050565b601254158015613d1d5750601354155b15613d2757613d32565b600060128190556013555b565b600080600080600080613d468761342c565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150613d789088613488565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054613da79087613488565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054613dd690866133d2565b6001600160a01b038916600090815260046020526040902055613df881613fc4565b613e02848361404c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613e6a8761342c565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613e9c9087613488565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054613ed290846133d2565b6001600160a01b038916600090815260056020908152604080832093909355600490522054613dd690866133d2565b600080600080600080613f138761342c565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613da79087613488565b600080600080600080613f578761342c565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150613f899088613488565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054613e9c9087613488565b6005601255600a601355565b6000613fce613366565b90506000613fdc8383613704565b30600090815260046020526040902054909150613ff990826133d2565b30600090815260046020908152604080832093909355600a9052205460ff1615613531573060009081526005602052604090205461403790846133d2565b30600090815260056020526040902055505050565b600d546140599083613488565b600d55600e5461406990826133d2565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572206f72207265666c656374696f6e52656d6f766572466f724345584578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122046c94b2e5a0535505053b750256835990c9580867d443c61985d68bf4eb7b51864736f6c634300060c00330000000000000000000000002cdef64dc3fa58992f75e3c48b9742ec0c0cbd6e

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80638203f5fe11610144578063bc9bcdbe116100b6578063d543dbeb1161007a578063d543dbeb1461087f578063dd467064146108a9578063dd62ed3e146108d3578063f2fde38b1461090e578063f375b25314610941578063f815a8421461097457610272565b8063bc9bcdbe146107da578063c8cb4f82146107ef578063c9567bf914610822578063cba0e99614610837578063cd52c7011461086a57610272565b80639c74daf0116101085780639c74daf0146106ee578063a457c2d714610703578063a69df4b51461073c578063a9059cbb14610751578063af9549e01461078a578063b6c52324146107c557610272565b80638203f5fe146106675780638b22a0c51461067c5780638da5cb5b146106915780638fb0139b146106a657806395d89b41146106d957610272565b8063362a3c5d116101dd57806351bc3c85116101a157806351bc3c851461058f5780635342acb4146105a4578063583e0568146105d7578063610d5b19146105ec57806370a082311461061f578063715018a61461065257610272565b8063362a3c5d146104b257806339509351146104e55780633bd5d1731461051e5780634549b0391461054857806349dfa3c21461057a57610272565b806318160ddd1161022f57806318160ddd146103bf5780632338dbe3146103d457806323b872dd146103e957806327c8f8351461042c5780632d8381191461045d578063313ce5671461048757610272565b806306fdde03146102775780630920fd8c14610301578063095ea7b31461032857806312d46bdf1461037557806313114a9d146103aa57610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610989565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b50610316610a1f565b60408051918252519081900360200190f35b34801561033457600080fd5b506103616004803603604081101561034b57600080fd5b506001600160a01b038135169060200135610a25565b604080519115158252519081900360200190f35b34801561038157600080fd5b506103a86004803603602081101561039857600080fd5b50356001600160a01b0316610a43565b005b3480156103b657600080fd5b50610316610c20565b3480156103cb57600080fd5b50610316610c26565b3480156103e057600080fd5b506103a8610c2c565b3480156103f557600080fd5b506103616004803603606081101561040c57600080fd5b506001600160a01b03813581169160208101359091169060400135610c94565b34801561043857600080fd5b50610441610d1b565b604080516001600160a01b039092168252519081900360200190f35b34801561046957600080fd5b506103166004803603602081101561048057600080fd5b5035610d3f565b34801561049357600080fd5b5061049c610da1565b6040805160ff9092168252519081900360200190f35b3480156104be57600080fd5b506103a8600480360360208110156104d557600080fd5b50356001600160a01b0316610daa565b3480156104f157600080fd5b506103616004803603604081101561050857600080fd5b506001600160a01b038135169060200135610f37565b34801561052a57600080fd5b506103a86004803603602081101561054157600080fd5b5035610f85565b34801561055457600080fd5b506103166004803603604081101561056b57600080fd5b5080359060200135151561105f565b34801561058657600080fd5b506103a86110f1565b34801561059b57600080fd5b506103a8611156565b3480156105b057600080fd5b50610361600480360360208110156105c757600080fd5b50356001600160a01b03166111c4565b3480156105e357600080fd5b506104416111e2565b3480156105f857600080fd5b506103616004803603602081101561060f57600080fd5b50356001600160a01b03166111f1565b34801561062b57600080fd5b506103166004803603602081101561064257600080fd5b50356001600160a01b031661120f565b34801561065e57600080fd5b506103a8611271565b34801561067357600080fd5b506103a8611301565b34801561068857600080fd5b5061036161232c565b34801561069d57600080fd5b5061044161233c565b3480156106b257600080fd5b506103a8600480360360208110156106c957600080fd5b50356001600160a01b031661234b565b3480156106e557600080fd5b5061028c6123c5565b3480156106fa57600080fd5b50610441612426565b34801561070f57600080fd5b506103616004803603604081101561072657600080fd5b506001600160a01b038135169060200135612435565b34801561074857600080fd5b506103a861249d565b34801561075d57600080fd5b506103616004803603604081101561077457600080fd5b506001600160a01b03813516906020013561258b565b34801561079657600080fd5b506103a8600480360360408110156107ad57600080fd5b506001600160a01b038135169060200135151561259f565b3480156107d157600080fd5b5061031661263e565b3480156107e657600080fd5b50610441612644565b3480156107fb57600080fd5b506103a86004803603602081101561081257600080fd5b50356001600160a01b0316612653565b34801561082e57600080fd5b506103a86127f5565b34801561084357600080fd5b506103616004803603602081101561085a57600080fd5b50356001600160a01b0316612875565b34801561087657600080fd5b50610361612893565b34801561088b57600080fd5b506103a8600480360360208110156108a257600080fd5b50356128a3565b3480156108b557600080fd5b506103a8600480360360208110156108cc57600080fd5b5035612921565b3480156108df57600080fd5b50610316600480360360408110156108f657600080fd5b506001600160a01b03813581169160200135166129bf565b34801561091a57600080fd5b506103a86004803603602081101561093157600080fd5b50356001600160a01b03166129ea565b34801561094d57600080fd5b506103a86004803603602081101561096457600080fd5b50356001600160a01b0316612ad0565b34801561098057600080fd5b50610316612c6e565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b60175481565b6000610a39610a32612c72565b8484612c76565b5060015b92915050565b610a4b612c72565b6000546001600160a01b0390811691161480610a7c5750610a6a612c72565b6003546001600160a01b039081169116145b610ab75760405162461bcd60e51b815260040180806020018281038252603b815260200180614229603b913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16610b24576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600b54811015610c1c57816001600160a01b0316600b8281548110610b4857fe5b6000918252602090912001546001600160a01b03161415610c1457600b80546000198101908110610b7557fe5b600091825260209091200154600b80546001600160a01b039092169183908110610b9b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b805480610bed57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c1c565b600101610b27565b5050565b600e5490565b600c5490565b610c34612c72565b6000546001600160a01b03908116911614610c84576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b69152d02c7e14af6800000601855565b6000610ca1848484612d62565b610d1184610cad612c72565b610d0c8560405180606001604052806028815260200161414f602891396001600160a01b038a16600090815260066020526040812090610ceb612c72565b6001600160a01b0316815260208101919091526040016000205491906132cf565b612c76565b5060019392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b6000600d54821115610d825760405162461bcd60e51b815260040180806020018281038252602a815260200180614094602a913960400191505060405180910390fd5b6000610d8c613366565b9050610d988382613389565b9150505b919050565b60115460ff1690565b610db2612c72565b6000546001600160a01b03908116911614610e02576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610e6f576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600854811015610c1c57816001600160a01b031660088281548110610e9357fe5b6000918252602090912001546001600160a01b03161415610f2f57600880546000198101908110610ec057fe5b600091825260209091200154600880546001600160a01b039092169183908110610ee657fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600790915260409020805460ff191690556008805480610bed57fe5b600101610e72565b6000610a39610f44612c72565b84610d0c8560066000610f55612c72565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906133d2565b6000610f8f612c72565b6001600160a01b0381166000908152600a602052604090205490915060ff1615610fea5760405162461bcd60e51b815260040180806020018281038252602c815260200180614264602c913960400191505060405180910390fd5b6000610ff58361342c565b505050506001600160a01b03841660009081526004602052604090205491925061102191905082613488565b6001600160a01b038316600090815260046020526040902055600d546110479082613488565b600d55600e5461105790846133d2565b600e55505050565b6000600c548311156110b8576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816110d75760006110c88461342c565b50939550610a3d945050505050565b60006110e28461342c565b50929550610a3d945050505050565b6110f9612c72565b6000546001600160a01b03908116911614611149576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b47611153816134ca565b50565b61115e612c72565b6000546001600160a01b039081169116146111ae576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b60006111b93061120f565b905061115381613536565b6001600160a01b031660009081526009602052604090205460ff1690565b6015546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b0381166000908152600a602052604081205460ff161561124f57506001600160a01b038116600090815260056020526040902054610d9c565b6001600160a01b038216600090815260046020526040902054610a3d90610d3f565b611279612c72565b6000546001600160a01b039081169116146112c9576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020614197833981519152908390a3600080546001600160a01b0319169055565b611309612c72565b6000546001600160a01b03908116911614611359576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156113ab57600080fd5b505afa1580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b15801561142557600080fd5b505afa158015611439573d6000803e3d6000fd5b505050506040513d602081101561144f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156114a157600080fd5b505af11580156114b5573d6000803e3d6000fd5b505050506040513d60208110156114cb57600080fd5b5051601680546001600160a01b03199081166001600160a01b03938416179091556015805490911691831691909117905560016009600061150a61233c565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526009835290812080548416600190811790915560079092527f57c722c10b286721330ce1e7368f87f549121277c4e5ffab2e83419c7564f96180548416831790556008805480840182557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee390810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557fb4360de54da26af4127515af1e49997106b425ee5904e923f0902c7618138e598054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557faa01439ba306fcf815e716b248617e3c66941c4344ce5297e38ccc42cd30bc1180548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f20bb0313363229c48e5dca565476b9f004fcadd21a3cebd9148dbac2f2ba8e6d80548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f185a84d37a19636863439d4bd8f79b953edfc2f2b332404b82e2c102dfbb4b8d80548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557ff405e61457986734bcc74d319afb38a21149b3d56f884ce85ec24a17fadbe35d80548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fa2988ed14d9641c67aefa7ee82d50112dd7b9326d1e98e9dce9d802915d3b36480548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f158b420708a0e60d8f36936f51360cee200d1017c9023a4ddcae85bff89c0f4e80548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557ff1d1c874a6478f85b6b904feafb9a196ead08dc959fdf0a523b19e42779d27ce8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557f401a4c0ca7781d92989fe1809638f35a473d45b2aa1f20ea08b891ad153486ab8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557fcdd749be89563b0fe17aff861f904dad7a5ecfebb7ff064b12d5552d5c400ea7805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557f3eca23c1fceac0076012235763bf4b524e34500801ac57fb32381013c0d6901e80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557f297b29cec8a1eb621a328e39c96c47ebe5e4031f1f910cb41ad54c511034e73a805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557ffe44942143e318205a789f77df1b2bf735ffc548308bab5499d0216aec3332e48054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557f3e4f611ed8482ea59e6424ad23a75453ec3ddb7677cd19d4c934256448de183a805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f7ee7f44cdecb2d7c9ebf96addf904d703c57dc894fdb6b132a783045f8ad751980548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557fb1c982ebec4b3ffbad67c2dd4b8d8215a47baa972366e4a63f51e9c6ce9a5d4e8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557fa11920fa7ae15c72226954c89a9e5c6f067c85fde0c317c7a78e3897c4aa229d80548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f1ea4ceff6c7cd2bd1aa871eb2c9e7b14363c267e1c8d45b2b4038682a83baef480548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f5ccd521e90776b08b8302e31941eda99ae5bb6dd0a4a30a038e75275ed151f1f8054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557f9aac9a42097620b1ff8454a6252a3d8b6aecd2746f5cc70c2496bd35cd9e69b18054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fa9d6552d66baaa4186648ea67a6cabd630f6081027f5bf546135d86d60df82fd8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557fe35fa26e68f804147088c2b96da426aeba0a986c80b2972d565ff073fcf3b2ed80548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f0974c6061423c59b1cc18edad4ab1f546201d6fbcde60ba3925dea5bbc1f3b92805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557fe96e4260a99427d26094e01497bcbf1209430052150bbba23c77691cfd3888de8054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557fc71bda09a50ffbca62ccd1161350db5851fbb6ddd35d31c3c3517822e54b5c55805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f3848f2c08fb0667ee5b5086c84806cc492f6771453629ea470ad1bb4309b27df80548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f954a0c36a45fcaf27e7a22dfaa2c9f3b813d726eab18c0fdbf36d3b835f9975c8054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f7985ebff531dc9ae85a3acb40e87a09c7806f6a13dabe868af5b0a8d22bd505e80548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f6c52e41dd6b06a1bc9b96527098c91ef1536901d6b06ec3895465678b4d3cb2d8054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f33bb6bc5e24dd699dcbf1756dad57e97b0d83832560d2b9372cac6749ec975d080548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557fc419d9cfed3cf702f7269baae5ca04d34554e3d12c577f99b455846286201a5c805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557fab78f0789a7bb7c5eaddd13a6a0e91c9346a2134aed2e32ec259fffe6a6a9c7680548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557f1be75507d4b2cac3a24552f05fdfa14cf0f018e17cf718ca8d750a13ecaa3fb8805487168617905582548086018455820180548216735b83a351500b631cc2a20a665ee17f0dc66e3db71790557f8499ee18ee603a2cfde0354d5d324ebcbe145b33d7bdb9c0e42bad4169d18d9d80548716861790558254808601845582018054821673bcb05a3f85d34f0194c70d5914d5c4e28f11cc021790557f47c3decdbf0327f6973c2489bb6b726e7c2d32891ee0e58aab41a4ba06f0745b8054871686179055825480860184558201805482167322246f9bca9921bfa9a3f8df5babc5bc8ee738501790557f327a45de5f4ec9398adddd1243a3de3a045557ad91bb3317327482f19cc2fa568054871686179055825480860184558201805482167342d4c197036bd9984ca652303e07dd29fa6bdb371790557f91e3d6ffd1390da3bfbc0e0875515e89982841b064fcda9b67cffc63d8082ab68054871686179055825480860184558201805482166e3b3cc22af3ae1eac0440bcee416b401790557f0f0787d14733cc845754e46f4b9ac4f1ad047fd749dc13e3d96a4ae78999260f80548716861790558254808601845582018054821673231dc6af3c66741f6cf618884b953df0e83c1a2a1790557f9e1cab7afd1c36c8834124180f41b4fdd617e5b830a32dbe4ad39ce2403f330180548716861790558254808601845582018054821673c6bf34596f74eb22e066a878848dfb9fc1cf4c651790557ffce34a7b755f382e92d8fed99c280c08c64d82c48720533c065ce505a27e30c48054871686179055825480860184558201805482167320f6fcd6b8813c4f98c0ffbd88c87c0255040aa31790557f036de65337957dcec72784f3b7bdcc4c1db7dca6197401781e45567a6282e7ec80548716861790558254808601845582018054821673d334c5392ed4863c81576422b968c6fb90ee9f791790557fb223036d049cf96d476dc559d24b358878d6abfa6d8b9398c62a0461b2db6f6a80548716861790558254808601845582018054821673fffff6e70842330948ca47254f2be673b1cb0db71790557f3f74e5026cf68c914529907c341f86db0d11f8d7bb07501e2da38fe88ece2d8a80548716861781558354808701855583018054831673a39c50bf86e15391180240938f469a7bf4fdae9a908117909155815490971686179055825494850183559190925291018054909116909117905550565b601654600160a81b900460ff1681565b6000546001600160a01b031690565b612353612c72565b6000546001600160a01b039081169116146123a3576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60108054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a155780601f106109ea57610100808354040283529160200191610a15565b6016546001600160a01b031681565b6000610a39612442612c72565b84610d0c856040518060600160405280602581526020016142b3602591396006600061246c612c72565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906132cf565b6001546001600160a01b031633146124e65760405162461bcd60e51b81526004018080602001828103825260238152602001806142906023913960400191505060405180910390fd5b600254421161253c576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061419783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a39612598612c72565b8484612d62565b6125a7612c72565b6000546001600160a01b03908116911614806125d857506125c6612c72565b6003546001600160a01b039081169116145b6126135760405162461bcd60e51b815260040180806020018281038252603b815260200180614229603b913960400191505060405180910390fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60025490565b6014546001600160a01b031681565b61265b612c72565b6000546001600160a01b039081169116148061268c575061267a612c72565b6003546001600160a01b039081169116145b6126c75760405162461bcd60e51b815260040180806020018281038252603b815260200180614229603b913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615612735576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600460205260409020541561278f576001600160a01b03811660009081526004602052604090205461277590610d3f565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6127fd612c72565b6000546001600160a01b0390811691161461284d576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b601680544260175560ff60b01b1960ff60a81b19909116600160a81b1716600160b01b179055565b6001600160a01b03166000908152600a602052604090205460ff1690565b601654600160b01b900460ff1681565b6128ab612c72565b6000546001600160a01b039081169116146128fb576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b61291b606461291583600c5461370490919063ffffffff16565b90613389565b60185550565b612929612c72565b6000546001600160a01b03908116911614612979576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020614197833981519152908290a350565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6129f2612c72565b6000546001600160a01b03908116911614612a42576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b6001600160a01b038116612a875760405162461bcd60e51b81526004018080602001828103825260268152602001806140be6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061419783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612ad8612c72565b6000546001600160a01b03908116911614612b28576040805162461bcd60e51b81526020600482018190526024820152600080516020614177833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415612b9a576040805162461bcd60e51b815260206004820152601c60248201527f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615612c08576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b4790565b3390565b6001600160a01b038316612cbb5760405162461bcd60e51b81526004018080602001828103825260248152602001806142056024913960400191505060405180910390fd5b6001600160a01b038216612d005760405162461bcd60e51b81526004018080602001828103825260228152602001806140e46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612da75760405162461bcd60e51b81526004018080602001828103825260258152602001806141e06025913960400191505060405180910390fd5b6001600160a01b038216612dec5760405162461bcd60e51b81526004018080602001828103825260238152602001806140716023913960400191505060405180910390fd5b60008111612e2b5760405162461bcd60e51b81526004018080602001828103825260298152602001806141b76029913960400191505060405180910390fd5b6001600160a01b03821660009081526007602052604090205460ff1615612e8f576040805162461bcd60e51b8152602060048201526013602482015272596f75207368616c6c206e6f7420706173732160681b604482015290519081900360640190fd5b3360009081526007602052604090205460ff1615612eea576040805162461bcd60e51b8152602060048201526013602482015272596f75207368616c6c206e6f7420706173732160681b604482015290519081900360640190fd5b612ef261233c565b6001600160a01b0316836001600160a01b031614158015612f2c5750612f1661233c565b6001600160a01b0316826001600160a01b031614155b1561311057601854811115612f725760405162461bcd60e51b81526004018080602001828103825260288152602001806141066028913960400191505060405180910390fd5b601654600160b01b900460ff16613043576001600160a01b038316301480612fa257506001600160a01b03821630145b80612fc55750612fb061233c565b6001600160a01b0316836001600160a01b0316145b80612fe85750612fd361233c565b6001600160a01b0316826001600160a01b0316145b61304357601654600160b01b900460ff16613043576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b601754600f01421015613110576016546001600160a01b0384811691161480159061308b57506001600160a01b038316737a250d5630b4cf539739df2c5dacb4c659f2488d14155b80156130a557506015546001600160a01b03848116911614155b15613110576001600160a01b0383166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b03191690911790555b6016546001600160a01b03848116911614801561313b57506015546001600160a01b03838116911614155b801561316057506001600160a01b03821660009081526009602052604090205460ff16155b1561317457600360125560066013556131d4565b6016546001600160a01b03838116911614801561319f57506015546001600160a01b03848116911614155b80156131c457506001600160a01b03821660009081526009602052604090205460ff16155b156131d4576005601255600a6013555b60006131df3061120f565b905060185481106131ef57506018545b601654600160a01b900460ff161580156132125750601654600160a81b900460ff165b801561322b57506016546001600160a01b038481169116145b1561327157601954811080159061324a57601954915061324a82613536565b47670de0b6b3a764000081111561326e5761326e613269826002613389565b6134ca565b50505b6001600160a01b03841660009081526009602052604090205460019060ff16806132b357506001600160a01b03841660009081526009602052604090205460ff165b156132bc575060005b6132c88585858461375d565b5050505050565b6000818484111561335e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561332357818101518382015260200161330b565b50505050905090810190601f1680156133505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006133736138d1565b90925090506133828282613389565b9250505090565b60006133cb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a34565b9392505050565b6000828201838110156133cb576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006134498a601254601354613a99565b9250925092506000613459613366565b9050600080600061346b8e8786613ae8565b919e509c509a509598509396509194505050505091939550919395565b60006133cb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132cf565b80156111535760006134dd826002613389565b905060006134ec836002613389565b6014546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015613527573d6000803e3d6000fd5b5061353181613b24565b505050565b6016805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061357757fe5b6001600160a01b03928316602091820292909201810191909152601554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156135cb57600080fd5b505afa1580156135df573d6000803e3d6000fd5b505050506040513d60208110156135f557600080fd5b505181518290600190811061360657fe5b6001600160a01b03928316602091820292909201015260155461362c9130911684612c76565b60155460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b838110156136b257818101518382015260200161369a565b505050509050019650505050505050600060405180830381600087803b1580156136db57600080fd5b505af11580156136ef573d6000803e3d6000fd5b50506016805460ff60a01b1916905550505050565b60008261371357506000610a3d565b8282028284828161372057fe5b04146133cb5760405162461bcd60e51b815260040180806020018281038252602181526020018061412e6021913960400191505060405180910390fd5b8061376a5761376a613d0d565b6001600160a01b0384166000908152600a602052604090205460ff1680156137ab57506001600160a01b0383166000908152600a602052604090205460ff16155b156137c0576137bb848484613d34565b6138be565b6001600160a01b0384166000908152600a602052604090205460ff1615801561380157506001600160a01b0383166000908152600a602052604090205460ff165b15613811576137bb848484613e58565b6001600160a01b0384166000908152600a602052604090205460ff1615801561385357506001600160a01b0383166000908152600a602052604090205460ff16155b15613863576137bb848484613f01565b6001600160a01b0384166000908152600a602052604090205460ff1680156138a357506001600160a01b0383166000908152600a602052604090205460ff165b156138b3576137bb848484613f45565b6138be848484613f01565b806138cb576138cb613fb8565b50505050565b600d54600c546000918291825b600b54811015613a02578260046000600b84815481106138fa57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061395f57508160056000600b848154811061393857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561397657600d54600c5494509450505050613a30565b6139b660046000600b848154811061398a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490613488565b92506139f860056000600b84815481106139cc57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390613488565b91506001016138de565b50600c54600d54613a1291613389565b821015613a2a57600d54600c54935093505050613a30565b90925090505b9091565b60008183613a835760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561332357818101518382015260200161330b565b506000838581613a8f57fe5b0495945050505050565b6000808080613aad60646129158989613704565b90506000613ac060646129158a89613704565b90506000613ad882613ad28b86613488565b90613488565b9992985090965090945050505050565b6000808080613af78786613704565b90506000613b058787613704565b90506000613b138383613488565b929992985090965090945050505050565b6016805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683375050601554604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c464892506004808301926020929190829003018186803b158015613b9b57600080fd5b505afa158015613baf573d6000803e3d6000fd5b505050506040513d6020811015613bc557600080fd5b505181518290600090613bd457fe5b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110613c0257fe5b6001600160a01b0392831660209182029290920101526015541663b6f9de95836000847f000000000000000000000000000000000000000000000000000000000000dead613c524261012c6133d2565b6040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613cbc578181015183820152602001613ca4565b50505050905001955050505050506000604051808303818588803b158015613ce357600080fd5b505af1158015613cf7573d6000803e3d6000fd5b50506016805460ff60a01b191690555050505050565b601254158015613d1d5750601354155b15613d2757613d32565b600060128190556013555b565b600080600080600080613d468761342c565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150613d789088613488565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054613da79087613488565b6001600160a01b03808b1660009081526004602052604080822093909355908a1681522054613dd690866133d2565b6001600160a01b038916600090815260046020526040902055613df881613fc4565b613e02848361404c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080613e6a8761342c565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613e9c9087613488565b6001600160a01b03808b16600090815260046020908152604080832094909455918b16815260059091522054613ed290846133d2565b6001600160a01b038916600090815260056020908152604080832093909355600490522054613dd690866133d2565b600080600080600080613f138761342c565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150613da79087613488565b600080600080600080613f578761342c565b6001600160a01b038f16600090815260056020526040902054959b50939950919750955093509150613f899088613488565b6001600160a01b038a16600090815260056020908152604080832093909355600490522054613e9c9087613488565b6005601255600a601355565b6000613fce613366565b90506000613fdc8383613704565b30600090815260046020526040902054909150613ff990826133d2565b30600090815260046020908152604080832093909355600a9052205460ff1615613531573060009081526005602052604090205461403790846133d2565b30600090815260056020526040902055505050565b600d546140599083613488565b600d55600e5461406990826133d2565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572206f72207265666c656374696f6e52656d6f766572466f724345584578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122046c94b2e5a0535505053b750256835990c9580867d443c61985d68bf4eb7b51864736f6c634300060c0033

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

0000000000000000000000002cdef64dc3fa58992f75e3c48b9742ec0c0cbd6e

-----Decoded View---------------
Arg [0] : teamAndMarketingAddress (address): 0x2CDef64dC3Fa58992f75e3C48b9742eC0c0cBd6e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002cdef64dc3fa58992f75e3c48b9742ec0c0cbd6e


Deployed Bytecode Sourcemap

26250:28652:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36815:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27634:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37727:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37727:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40811:519;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40811:519:0;-1:-1:-1;;;;;40811:519:0;;:::i;:::-;;39008:87;;;;;;;;;;;;;:::i;37092:95::-;;;;;;;;;;;;;:::i;54794:105::-;;;;;;;;;;;;;:::i;37896:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37896:313:0;;;;;;;;;;;;;;;;;:::i;26797:81::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26797:81:0;;;;;;;;;;;;;;39932:253;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39932:253:0;;:::i;37001:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54300:482;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54300:482:0;-1:-1:-1;;;;;54300:482:0;;:::i;38217:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38217:218:0;;;;;;;;:::i;39103:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39103:377:0;;:::i;39488:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39488:436:0;;;;;;;;;:::i;47426:176::-;;;;;;;;;;;;;:::i;47190:156::-;;;;;;;;;;;;;:::i;41869:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41869:123:0;-1:-1:-1;;;;;41869:123:0;;:::i;27368:42::-;;;;;;;;;;;;;:::i;40197:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40197:113:0;-1:-1:-1;;;;;40197:113:0;;:::i;37195:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37195:198:0;-1:-1:-1;;;;;37195:198:0;;:::i;16956:148::-;;;;;;;;;;;;;:::i;28211:8596::-;;;;;;;;;;;;;:::i;27486:55::-;;;;;;;;;;;;;:::i;15494:79::-;;;;;;;;;;;;;:::i;53617:168::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53617:168:0;-1:-1:-1;;;;;53617:168:0;;:::i;36906:87::-;;;;;;;;;;;;;:::i;27417:29::-;;;;;;;;;;;;;:::i;38443:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38443:269:0;;;;;;;;:::i;17959:293::-;;;;;;;;;;;;;:::i;37401:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37401:167:0;;;;;;;;:::i;38838:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38838:162:0;;;;;;;;;;:::i;17508:89::-;;;;;;;;;;;;;:::i;27312:47::-;;;;;;;;;;;;;:::i;40374:374::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40374:374:0;-1:-1:-1;;;;;40374:374:0;;:::i;41342:175::-;;;;;;;;;;;;;:::i;38720:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38720:110:0;-1:-1:-1;;;;;38720:110:0;;:::i;27548:32::-;;;;;;;;;;;;;:::i;53793:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53793:162:0;;:::i;17673:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17673:214:0;;:::i;37576:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37576:143:0;;;;;;;;;;:::i;17256:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17256:244:0;-1:-1:-1;;;;;17256:244:0;;:::i;53967:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53967:325:0;-1:-1:-1;;;;;53967:325:0;;:::i;53499:110::-;;;;;;;;;;;;;:::i;36815:83::-;36885:5;36878:12;;;;;;;;-1:-1:-1;;36878:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36852:13;;36878:12;;36885:5;;36878:12;;36885:5;36878:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36815:83;:::o;27634:26::-;;;;:::o;37727:161::-;37802:4;37819:39;37828:12;:10;:12::i;:::-;37842:7;37851:6;37819:8;:39::i;:::-;-1:-1:-1;37876:4:0;37727:161;;;;;:::o;40811:519::-;16470:12;:10;:12::i;:::-;16460:6;;-1:-1:-1;;;;;16460:6:0;;;:22;;;;:66;;;16514:12;:10;:12::i;:::-;16486:24;;-1:-1:-1;;;;;16486:24:0;;;:40;;;16460:66;16451:140;;;;-1:-1:-1;;;16451:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40933:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40925:60;;;::::0;;-1:-1:-1;;;40925:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41001:9;40996:327;41020:9;:16:::0;41016:20;::::1;40996:327;;;41078:7;-1:-1:-1::0;;;;;41062:23:0::1;:9;41072:1;41062:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;41062:12:0::1;:23;41058:254;;;41121:9;41131:16:::0;;-1:-1:-1;;41131:20:0;;;41121:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;41106:9:::1;:12:::0;;-1:-1:-1;;;;;41121:31:0;;::::1;::::0;41116:1;;41106:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;41106:46:0::1;-1:-1:-1::0;;;;;41106:46:0;;::::1;;::::0;;41171:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;41210:11:::1;:20:::0;;;;:28;;-1:-1:-1;;41210:28:0::1;::::0;;41257:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;41257:15:0;;;;;-1:-1:-1;;;;;;41257:15:0::1;::::0;;;;;41291:5:::1;;41058:254;41038:3;;40996:327;;;;40811:519:::0;:::o;39008:87::-;39077:10;;39008:87;:::o;37092:95::-;37172:7;;37092:95;:::o;54794:105::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;54867:24:::1;54852:12;:39:::0;54794:105::o;37896:313::-;37994:4;38011:36;38021:6;38029:9;38040:6;38011:9;:36::i;:::-;38058:121;38067:6;38075:12;:10;:12::i;:::-;38089:89;38127:6;38089:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38089:19:0;;;;;;:11;:19;;;;;;38109:12;:10;:12::i;:::-;-1:-1:-1;;;;;38089:33:0;;;;;;;;;;;;-1:-1:-1;38089:33:0;;;:89;:37;:89::i;:::-;38058:8;:121::i;:::-;-1:-1:-1;38197:4:0;37896:313;;;;;:::o;26797:81::-;;;:::o;39932:253::-;39998:7;40037;;40026;:18;;40018:73;;;;-1:-1:-1;;;40018:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40102:19;40125:10;:8;:10::i;:::-;40102:33;-1:-1:-1;40153:24:0;:7;40102:33;40153:11;:24::i;:::-;40146:31;;;39932:253;;;;:::o;37001:83::-;37067:9;;;;37001:83;:::o;54300:482::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;54381:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;54373:57;;;::::0;;-1:-1:-1;;;54373:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;54446:9;54441:334;54465:17;:24:::0;54461:28;::::1;54441:334;;;54539:7;-1:-1:-1::0;;;;;54515:31:0::1;:17;54533:1;54515:20;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;54515:20:0::1;:31;54511:253;;;54590:17;54608:24:::0;;-1:-1:-1;;54608:28:0;;;54590:47;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;54567:17:::1;:20:::0;;-1:-1:-1;;;;;54590:47:0;;::::1;::::0;54585:1;;54567:20;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:70:::0;;-1:-1:-1;;;;;;54567:70:0::1;-1:-1:-1::0;;;;;54567:70:0;;::::1;;::::0;;54656:18;;::::1;::::0;;:9:::1;:18:::0;;;;;;:26;;-1:-1:-1;;54656:26:0::1;::::0;;54701:17:::1;:23:::0;;;::::1;;;54511:253;54491:3;;54441:334;;38217:218:::0;38305:4;38322:83;38331:12;:10;:12::i;:::-;38345:7;38354:50;38393:10;38354:11;:25;38366:12;:10;:12::i;:::-;-1:-1:-1;;;;;38354:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;38354:25:0;;;:34;;;;;;;;;;;:38;:50::i;39103:377::-;39155:14;39172:12;:10;:12::i;:::-;-1:-1:-1;;;;;39204:19:0;;;;;;:11;:19;;;;;;39155:29;;-1:-1:-1;39204:19:0;;39203:20;39195:77;;;;-1:-1:-1;;;39195:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39284:15;39308:19;39319:7;39308:10;:19::i;:::-;-1:-1:-1;;;;;;;;;39356:15:0;;;;;;:7;:15;;;;;;39283:44;;-1:-1:-1;39356:28:0;;:15;-1:-1:-1;39283:44:0;39356:19;:28::i;:::-;-1:-1:-1;;;;;39338:15:0;;;;;;:7;:15;;;;;:46;39405:7;;:20;;39417:7;39405:11;:20::i;:::-;39395:7;:30;39449:10;;:23;;39464:7;39449:14;:23::i;:::-;39436:10;:36;-1:-1:-1;;;39103:377:0:o;39488:436::-;39578:7;39617;;39606;:18;;39598:62;;;;;-1:-1:-1;;;39598:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39676:17;39671:246;;39711:15;39735:19;39746:7;39735:10;:19::i;:::-;-1:-1:-1;39710:44:0;;-1:-1:-1;39769:14:0;;-1:-1:-1;;;;;39769:14:0;39671:246;39818:23;39849:19;39860:7;39849:10;:19::i;:::-;-1:-1:-1;39816:52:0;;-1:-1:-1;39883:22:0;;-1:-1:-1;;;;;39883:22:0;47426:176;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;47513:21:::1;47545:49;47513:21:::0;47545:29:::1;:49::i;:::-;15774:1;47426:176::o:0;47190:156::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;47244:23:::1;47270:24;47288:4;47270:9;:24::i;:::-;47244:50;;47305:33;47322:15;47305:16;:33::i;41869:123::-:0;-1:-1:-1;;;;;41957:27:0;41933:4;41957:27;;;:18;:27;;;;;;;;;41869:123::o;27368:42::-;;;-1:-1:-1;;;;;27368:42:0;;:::o;40197:113::-;-1:-1:-1;;;;;40284:18:0;40260:4;40284:18;;;:9;:18;;;;;;;;;40197:113::o;37195:198::-;-1:-1:-1;;;;;37285:20:0;;37261:7;37285:20;;;:11;:20;;;;;;;;37281:49;;;-1:-1:-1;;;;;;37314:16:0;;;;;;:7;:16;;;;;;37307:23;;37281:49;-1:-1:-1;;;;;37368:16:0;;;;;;:7;:16;;;;;;37348:37;;:19;:37::i;16956:148::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;17063:1:::1;17047:6:::0;;17026:40:::1;::::0;-1:-1:-1;;;;;17047:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17026:40:0;17063:1;;17026:40:::1;17094:1;17077:19:::0;;-1:-1:-1;;;;;;17077:19:0::1;::::0;;16956:148::o;28211:8596::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;28267:34:::1;28323:42;28267:99;;28499:15;-1:-1:-1::0;;;;;28499:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28499:25:0;28566:22:::1;::::0;;-1:-1:-1;;;28566:22:0;;;;-1:-1:-1;;;;;28481:69:0;;::::1;::::0;::::1;::::0;28559:4:::1;::::0;28566:20;;::::1;::::0;::::1;::::0;:22:::1;::::0;;::::1;::::0;28499:25:::1;::::0;28566:22;;;;;;;;:20;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28566:22:0;28481:108:::1;::::0;;-1:-1:-1;;;;;;28481:108:0::1;::::0;;;;;;-1:-1:-1;;;;;28481:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;28566:22:::1;::::0;28481:108;;;;;;;-1:-1:-1;28481:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28481:108:0;28464:14:::1;:125:::0;;-1:-1:-1;;;;;;28464:125:0;;::::1;-1:-1:-1::0;;;;;28464:125:0;;::::1;;::::0;;;28653:16:::1;:34:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;28753:18:0::1;-1:-1:-1::0;28772:7:0::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;28753:27:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;28753:27:0;;;:34;;;::::1;;-1:-1:-1::0;;28753:34:0;;::::1;;::::0;;28825:4:::1;28798:33:::0;;:18:::1;:33:::0;;;;;:40;;;::::1;28753:34:::0;28798:40;;::::1;::::0;;;28906:9:::1;:62:::0;;;;:69;;;::::1;::::0;::::1;::::0;;28986:17:::1;:75:::0;;;;::::1;::::0;;;;;::::1;::::0;;-1:-1:-1;;;;;;28986:75:0;;::::1;28924:42;28986:75;::::0;;;29074:62;:69;;;::::1;::::0;::::1;::::0;;29154:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29092:42;29154:75;::::0;;29242:62;:69;;;::::1;::::0;::::1;::::0;;29322:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29260:42;29322:75:::0;;::::1;::::0;;;29410:69;;;::::1;::::0;::::1;::::0;;;29490:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;29578:62;:69;;;::::1;::::0;::::1;::::0;;29658:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29596:42;29658:75;::::0;;29746:62;:69;;;::::1;::::0;::::1;::::0;;29826:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29764:42;29826:75;::::0;;29914:62;:69;;;::::1;::::0;::::1;::::0;;29994:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;29932:42;29994:75;::::0;;30082:62;:69;;;::::1;::::0;::::1;::::0;;30162:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30100:42;30162:75;::::0;;30250:62;:69;;;::::1;::::0;::::1;::::0;;30330:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30268:42;30330:75;::::0;;30418:62;:69;;;::::1;::::0;::::1;::::0;;30498:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30436:42;30498:75;::::0;;30586:62;:69;;;::::1;::::0;::::1;::::0;;30666:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30604:42;30666:75;::::0;;30754:62;:69;;;::::1;::::0;::::1;::::0;;30834:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30772:42;30834:75;::::0;;30922:62;:69;;;::::1;::::0;::::1;::::0;;31002:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;30940:42;31002:75;::::0;;31090:62;:69;;;::::1;::::0;::::1;::::0;;31170:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31108:42;31170:75;::::0;;31258:62;:69;;;::::1;::::0;::::1;::::0;;31338:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31276:42;31338:75;::::0;;31426:62;:69;;;::::1;::::0;::::1;::::0;;31506:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31444:42;31506:75;::::0;;31594:62;:69;;;::::1;::::0;::::1;::::0;;31674:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31612:42;31674:75;::::0;;31762:62;:69;;;::::1;::::0;::::1;::::0;;31842:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31780:42;31842:75;::::0;;31930:62;:69;;;::::1;::::0;::::1;::::0;;32010:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;31948:42;32010:75;::::0;;32098:62;:69;;;::::1;::::0;::::1;::::0;;32178:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32116:42;32178:75;::::0;;32266:62;:69;;;::::1;::::0;::::1;::::0;;32346:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32284:42;32346:75;::::0;;32434:62;:69;;;::::1;::::0;::::1;::::0;;32514:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32452:42;32514:75;::::0;;32602:62;:69;;;::::1;::::0;::::1;::::0;;32682:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32620:42;32682:75;::::0;;32770:62;:69;;;::::1;::::0;::::1;::::0;;32850:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32788:42;32850:75;::::0;;32938:62;:69;;;::::1;::::0;::::1;::::0;;33018:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;32956:42;33018:75;::::0;;33106:62;:69;;;::::1;::::0;::::1;::::0;;33186:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33124:42;33186:75;::::0;;33274:62;:69;;;::::1;::::0;::::1;::::0;;33354:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33292:42;33354:75;::::0;;33442:62;:69;;;::::1;::::0;::::1;::::0;;33522:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33460:42;33522:75;::::0;;33610:62;:69;;;::::1;::::0;::::1;::::0;;33690:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33628:42;33690:75:::0;;::::1;::::0;;;33778:62;:69;;;::::1;::::0;::::1;::::0;;33858:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33796:42;33858:75;::::0;;33946:62;:69;;;::::1;::::0;::::1;::::0;;34026:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;33964:42;34026:75;::::0;;34114:62;:69;;;::::1;::::0;::::1;::::0;;34194:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;34132:42;34194:75;::::0;;34282:62;:69;;;::::1;::::0;::::1;::::0;;34362:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;34300:42;34362:75;::::0;;34450:62;:69;;;::::1;::::0;::::1;::::0;;34530:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;34468:42;34530:75;::::0;;34618:69;;;::::1;::::0;::::1;::::0;;;34698:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;34786:62;:69;;;::::1;::::0;::::1;::::0;;34866:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;34804:42;34866:75;::::0;;34954:62;:69;;;::::1;::::0;::::1;::::0;;35034:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;34972:42;35034:75;::::0;;35122:62;:69;;;::::1;::::0;::::1;::::0;;35202:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;35140:42;35202:75;::::0;;35290:62;:69;;;::::1;::::0;::::1;::::0;;35370:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;35308:42;35370:75;::::0;;35458:62;:69;;;::::1;::::0;::::1;::::0;;35538:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;35476:42;35538:75;::::0;;35626:62;:69;;;::::1;::::0;::::1;::::0;;35706:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;35644:42;35706:75;::::0;;35794:62;:69;;;::::1;::::0;::::1;::::0;;35874:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;35812:42;35874:75;::::0;;35962:62;:69;;;::::1;::::0;::::1;::::0;;36042:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;35980:42;36042:75;::::0;;36130:62;:69;;;::::1;::::0;::::1;::::0;;36210:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;36148:42;36210:75;::::0;;36298:62;:69;;;::::1;::::0;::::1;::::0;;36378:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;36316:42;36378:75;::::0;;36466:62;:69;;;::::1;::::0;::::1;::::0;;36546:75;;;;::::1;::::0;;;::::1;::::0;;;::::1;36484:42;36546:75:::0;;::::1;::::0;;;36634:69;;;;::::1;::::0;::::1;::::0;;36714:75;;;;::::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;28211:8596:0:o;27486:55::-;;;-1:-1:-1;;;27486:55:0;;;;;:::o;15494:79::-;15532:7;15559:6;-1:-1:-1;;;;;15559:6:0;15494:79;:::o;53617:168::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;53727:24:::1;:50:::0;;-1:-1:-1;;;;;;53727:50:0::1;-1:-1:-1::0;;;;;53727:50:0;;;::::1;::::0;;;::::1;::::0;;53617:168::o;36906:87::-;36978:7;36971:14;;;;;;;;-1:-1:-1;;36971:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36945:13;;36971:14;;36978:7;;36971:14;;36978:7;36971:14;;;;;;;;;;;;;;;;;;;;;;;;27417:29;;;-1:-1:-1;;;;;27417:29:0;;:::o;38443:269::-;38536:4;38553:129;38562:12;:10;:12::i;:::-;38576:7;38585:96;38624:15;38585:96;;;;;;;;;;;;;;;;;:11;:25;38597:12;:10;:12::i;:::-;-1:-1:-1;;;;;38585:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;38585:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17959:293::-;18011:14;;-1:-1:-1;;;;;18011:14:0;18029:10;18011:28;18003:76;;;;-1:-1:-1;;;18003:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18104:9;;18098:3;:15;18090:60;;;;;-1:-1:-1;;;18090:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18195:14;;;18187:6;;18166:44;;-1:-1:-1;;;;;18195:14:0;;;;18187:6;;;;-1:-1:-1;;;;;;;;;;;18166:44:0;;18230:14;;;18221:23;;-1:-1:-1;;;;;;18221:23:0;-1:-1:-1;;;;;18230:14:0;;;18221:23;;;;;;17959:293::o;37401:167::-;37479:4;37496:42;37506:12;:10;:12::i;:::-;37520:9;37531:6;37496:9;:42::i;38838:162::-;16470:12;:10;:12::i;:::-;16460:6;;-1:-1:-1;;;;;16460:6:0;;;:22;;;;:66;;;16514:12;:10;:12::i;:::-;16486:24;;-1:-1:-1;;;;;16486:24:0;;;:40;;;16460:66;16451:140;;;;-1:-1:-1;;;16451:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38954:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;38954:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38838:162::o;17508:89::-;17580:9;;17508:89;:::o;27312:47::-;;;-1:-1:-1;;;;;27312:47:0;;:::o;40374:374::-;16470:12;:10;:12::i;:::-;16460:6;;-1:-1:-1;;;;;16460:6:0;;;:22;;;;:66;;;16514:12;:10;:12::i;:::-;16486:24;;-1:-1:-1;;;;;16486:24:0;;;:40;;;16460:66;16451:140;;;;-1:-1:-1;;;16451:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40498:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;40497:21;40489:61;;;::::0;;-1:-1:-1;;;40489:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;40564:16:0;::::1;40583:1;40564:16:::0;;;:7:::1;:16;::::0;;;;;:20;40561:108:::1;;-1:-1:-1::0;;;;;40640:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;40620:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;40601:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;40561:108:::1;-1:-1:-1::0;;;;;40679:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;40679:27:0::1;40702:4;40679:27:::0;;::::1;::::0;;;40717:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;40717:23:0::1;::::0;;::::1;::::0;;40374:374::o;41342:175::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;41397:35:::1;:42:::0;;41464:15:::1;41450:11;:29:::0;-1:-1:-1;;;;;;;;41397:42:0;;::::1;-1:-1:-1::0;;;41397:42:0::1;41490:19;-1:-1:-1::0;;;41490:19:0::1;::::0;;41342:175::o;38720:110::-;-1:-1:-1;;;;;38802:20:0;38778:4;38802:20;;;:11;:20;;;;;;;;;38720:110::o;27548:32::-;;;-1:-1:-1;;;27548:32:0;;;;;:::o;53793:162::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;53887:60:::1;53931:5;53887:25;53899:12;53887:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;53872:12;:75:::0;-1:-1:-1;53793:162:0:o;17673:214::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;17754:6:::1;::::0;;;17737:23;;-1:-1:-1;;;;;;17737:23:0;;::::1;-1:-1:-1::0;;;;;17754:6:0;::::1;17737:23;::::0;;;17771:19:::1;::::0;;17813:3:::1;:10:::0;::::1;17801:9;:22:::0;17839:40:::1;::::0;17754:6;;-1:-1:-1;;;;;;;;;;;17839:40:0;17754:6;;17839:40:::1;17673:214:::0;:::o;37576:143::-;-1:-1:-1;;;;;37684:18:0;;;37657:7;37684:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;37576:143::o;17256:244::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17345:22:0;::::1;17337:73;;;;-1:-1:-1::0;;;17337:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17447:6;::::0;;17426:38:::1;::::0;-1:-1:-1;;;;;17426:38:0;;::::1;::::0;17447:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17426:38:0;::::1;17475:6;:17:::0;;-1:-1:-1;;;;;;17475:17:0::1;-1:-1:-1::0;;;;;17475:17:0;;;::::1;::::0;;;::::1;::::0;;17256:244::o;53967:325::-;15714:12;:10;:12::i;:::-;15704:6;;-1:-1:-1;;;;;15704:6:0;;;:22;;;15696:67;;;;;-1:-1:-1;;;15696:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15696:67:0;;;;;;;;;;;;;;;54058:42:::1;-1:-1:-1::0;;;;;54047:53:0;::::1;;;54039:94;;;::::0;;-1:-1:-1;;;54039:94:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;54153:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;54152:19;54144:62;;;::::0;;-1:-1:-1;;;54144:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;54217:18:0::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;54217:25:0::1;54238:4;54217:25:::0;;::::1;::::0;;;54253:17:::1;:31:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;54253:31:0::1;::::0;;::::1;::::0;;53967:325::o;53499:110::-;53580:21;53499:110;:::o;1152:106::-;1240:10;1152:106;:::o;42000:337::-;-1:-1:-1;;;;;42093:19:0;;42085:68;;;;-1:-1:-1;;;42085:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42172:21:0;;42164:68;;;;-1:-1:-1;;;42164:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42245:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42297:32;;;;;;;;;;;;;;;;;42000:337;;;:::o;42345:3115::-;-1:-1:-1;;;;;42442:20:0;;42434:70;;;;-1:-1:-1;;;42434:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42523:23:0;;42515:71;;;;-1:-1:-1;;;42515:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42614:1;42605:6;:10;42597:64;;;;-1:-1:-1;;;42597:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42681:20:0;;;;;;:9;:20;;;;;;;;42680:21;42672:53;;;;;-1:-1:-1;;;42672:53:0;;;;;;;;;;;;-1:-1:-1;;;42672:53:0;;;;;;;;;;;;;;;42755:10;42745:21;;;;:9;:21;;;;;;;;42744:22;42736:54;;;;;-1:-1:-1;;;42736:54:0;;;;;;;;;;;;-1:-1:-1;;;42736:54:0;;;;;;;;;;;;;;;42816:7;:5;:7::i;:::-;-1:-1:-1;;;;;42806:17:0;:6;-1:-1:-1;;;;;42806:17:0;;;:41;;;;;42840:7;:5;:7::i;:::-;-1:-1:-1;;;;;42827:20:0;:9;-1:-1:-1;;;;;42827:20:0;;;42806:41;42803:851;;;42882:12;;42872:6;:22;;42864:75;;;;-1:-1:-1;;;42864:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42973:12;;-1:-1:-1;;;42973:12:0;;;;42968:285;;-1:-1:-1;;;;;43012:23:0;;43030:4;43012:23;;:53;;-1:-1:-1;;;;;;43039:26:0;;43060:4;43039:26;43012:53;:100;;;;43104:7;:5;:7::i;:::-;-1:-1:-1;;;;;43086:26:0;:6;-1:-1:-1;;;;;43086:26:0;;43012:100;:133;;;;43137:7;:5;:7::i;:::-;-1:-1:-1;;;;;43116:29:0;:9;-1:-1:-1;;;;;43116:29:0;;43012:133;43006:232;;43179:12;;-1:-1:-1;;;43179:12:0;;;;43171:47;;;;;-1:-1:-1;;;43171:47:0;;;;;;;;;;;;-1:-1:-1;;;43171:47:0;;;;;;;;;;;;;;;43291:11;;43305:10;43291:24;43273:15;:42;43269:374;;;43350:14;;-1:-1:-1;;;;;43340:24:0;;;43350:14;;43340:24;;;;:106;;-1:-1:-1;;;;;;43385:61:0;;43403:42;43385:61;;43340:106;:166;;;;-1:-1:-1;43489:16:0;;-1:-1:-1;;;;;43471:35:0;;;43489:16;;43471:35;;43340:166;43336:292;;;-1:-1:-1;;;;;43531:17:0;;;;;;:9;:17;;;;;:24;;-1:-1:-1;;43531:24:0;43551:4;43531:24;;;;;;43578:17;:30;;;;;;;;;;;;;;-1:-1:-1;;;;;;43578:30:0;;;;;;43336:292;43688:14;;-1:-1:-1;;;;;43678:24:0;;;43688:14;;43678:24;:66;;;;-1:-1:-1;43727:16:0;;-1:-1:-1;;;;;43706:38:0;;;43727:16;;43706:38;;43678:66;:100;;;;-1:-1:-1;;;;;;43749:29:0;;;;;;:18;:29;;;;;;;;43748:30;43678:100;43674:445;;;43824:1;43803:18;:22;43874:1;43840:31;:35;43674:445;;;43915:14;;-1:-1:-1;;;;;43902:27:0;;;43915:14;;43902:27;:66;;;;-1:-1:-1;43951:16:0;;-1:-1:-1;;;;;43933:35:0;;;43951:16;;43933:35;;43902:66;:100;;;;-1:-1:-1;;;;;;43973:29:0;;;;;;:18;:29;;;;;;;;43972:30;43902:100;43898:221;;;44049:1;44028:18;:22;44099:2;44065:31;:36;43898:221;44131:28;44162:24;44180:4;44162:9;:24::i;:::-;44131:55;;44224:12;;44200:20;:36;44197:112;;-1:-1:-1;44285:12:0;;44197:112;44334:7;;-1:-1:-1;;;44334:7:0;;;;44333:8;:47;;;;-1:-1:-1;44345:35:0;;-1:-1:-1;;;44345:35:0;;;;44333:47;:78;;;;-1:-1:-1;44397:14:0;;-1:-1:-1;;;;;44384:27:0;;;44397:14;;44384:27;44333:78;44329:664;;;44563:24;;44539:48;;;;;44602:164;;44669:24;;44646:47;;44712:38;44729:20;44712:16;:38::i;:::-;44809:21;44878:10;44849:40;;44845:137;;;44910:56;44940:25;:18;44963:1;44940:22;:25::i;:::-;44910:29;:56::i;:::-;44329:664;;;-1:-1:-1;;;;;45193:26:0;;45074:12;45193:26;;;:18;:26;;;;;;45089:4;;45193:26;;;:59;;-1:-1:-1;;;;;;45223:29:0;;;;;;:18;:29;;;;;;;;45193:59;45190:105;;;-1:-1:-1;45278:5:0;45190:105;45405:47;45420:6;45427:9;45437:6;45444:7;45405:14;:47::i;:::-;42345:3115;;;;;:::o;5232:192::-;5318:7;5354:12;5346:6;;;;5338:29;;;;-1:-1:-1;;;5338:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5390:5:0;;;5232:192::o;52765:163::-;52806:7;52827:15;52844;52863:19;:17;:19::i;:::-;52826:56;;-1:-1:-1;52826:56:0;-1:-1:-1;52900:20:0;52826:56;;52900:11;:20::i;:::-;52893:27;;;;52765:163;:::o;6610:132::-;6668:7;6695:39;6699:1;6702;6695:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6688:46;6610:132;-1:-1:-1;;;6610:132:0:o;4347:181::-;4405:7;4437:5;;;4461:6;;;;4453:46;;;;;-1:-1:-1;;;4453:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;51459:533;51518:7;51527;51536;51545;51554;51563;51594:23;51619:12;51633:27;51664:73;51676:7;51685:18;;51705:31;;51664:11;:73::i;:::-;51593:144;;;;;;51748:19;51771:10;:8;:10::i;:::-;51748:33;;51793:15;51810:23;51835:12;51851:39;51863:7;51872:4;51878:11;51851;:39::i;:::-;51792:98;;-1:-1:-1;51792:98:0;-1:-1:-1;51792:98:0;-1:-1:-1;51941:15:0;;-1:-1:-1;51958:4:0;;-1:-1:-1;51964:19:0;;-1:-1:-1;;;;;51459:533:0;;;;;;;:::o;4802:136::-;4860:7;4887:43;4891:1;4894;4887:43;;;;;;;;;;;;;;;;;:3;:43::i;46632:478::-;46710:10;;46706:397;;46737:22;46762:13;:6;46773:1;46762:10;:13::i;:::-;46737:38;-1:-1:-1;46867:21:0;46891:13;:6;46902:1;46891:10;:13::i;:::-;46919:24;;:49;;46867:37;;-1:-1:-1;;;;;;46919:24:0;;:49;;;;;46953:14;;46919:24;:49;:24;:49;46953:14;46919:24;:49;;;;;;;;;;;;;;;;;;;;;47037:35;47058:13;47037:20;:35::i;:::-;46706:397;;46632:478;:::o;45468:603::-;27900:7;:14;;-1:-1:-1;;;;27900:14:0;-1:-1:-1;;;27900:14:0;;;45629:16:::1;::::0;;45643:1:::1;45629:16:::0;;;45605:21:::1;45629:16:::0;;::::1;::::0;;45605:21;45629:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;45629:16:0::1;45605:40;;45674:4;45656;45661:1;45656:7;;;;;;;;-1:-1:-1::0;;;;;45656:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;45700:16:::1;::::0;:23:::1;::::0;;-1:-1:-1;;;45700:23:0;;;;:16;;;::::1;::::0;:21:::1;::::0;:23:::1;::::0;;::::1;::::0;45656:7;;45700:23;;;;;:16;:23;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;45700:23:0;45690:7;;:4;;45695:1:::1;::::0;45690:7;::::1;;;;;-1:-1:-1::0;;;;;45690:33:0;;::::1;:7;::::0;;::::1;::::0;;;;;:33;45768:16:::1;::::0;45736:63:::1;::::0;45753:4:::1;::::0;45768:16:::1;45787:11:::0;45736:8:::1;:63::i;:::-;45838:16;::::0;:225:::1;::::0;-1:-1:-1;;;45838:225:0;;::::1;::::0;::::1;::::0;;;:16:::1;:225:::0;;;;;;46017:4:::1;45838:225:::0;;;;;;46037:15:::1;45838:225:::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45838:16:0;;::::1;::::0;:67:::1;::::0;45920:11;;45990:4;;46017;46037:15;45838:225;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;:16;:225:::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27937:7:0;:15;;-1:-1:-1;;;;27937:15:0;;;-1:-1:-1;;;;45468:603:0:o;5674:471::-;5732:7;5977:6;5973:47;;-1:-1:-1;6007:1:0;6000:8;;5973:47;6044:5;;;6048:1;6044;:5;:1;6068:5;;;;;:10;6060:56;;;;-1:-1:-1;;;6060:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47610:831;47732:7;47728:41;;47754:15;:13;:15::i;:::-;-1:-1:-1;;;;;47786:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;47810:22:0;;;;;;:11;:22;;;;;;;;47809:23;47786:46;47782:597;;;47849:48;47871:6;47879:9;47890:6;47849:21;:48::i;:::-;47782:597;;;-1:-1:-1;;;;;47920:19:0;;;;;;:11;:19;;;;;;;;47919:20;:46;;;;-1:-1:-1;;;;;;47943:22:0;;;;;;:11;:22;;;;;;;;47919:46;47915:464;;;47982:46;48002:6;48010:9;48021:6;47982:19;:46::i;47915:464::-;-1:-1:-1;;;;;48051:19:0;;;;;;:11;:19;;;;;;;;48050:20;:47;;;;-1:-1:-1;;;;;;48075:22:0;;;;;;:11;:22;;;;;;;;48074:23;48050:47;48046:333;;;48114:44;48132:6;48140:9;48151:6;48114:17;:44::i;48046:333::-;-1:-1:-1;;;;;48180:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;48203:22:0;;;;;;:11;:22;;;;;;;;48180:45;48176:203;;;48242:48;48264:6;48272:9;48283:6;48242:21;:48::i;48176:203::-;48323:44;48341:6;48349:9;48360:6;48323:17;:44::i;:::-;48395:7;48391:42;;48417:16;:14;:16::i;:::-;47610:831;;;;:::o;52936:555::-;53033:7;;53069;;52986;;;;;53087:289;53111:9;:16;53107:20;;53087:289;;;53177:7;53153;:21;53161:9;53171:1;53161:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53161:12:0;53153:21;;;;;;;;;;;;;:31;;:66;;;53212:7;53188;:21;53196:9;53206:1;53196:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53196:12:0;53188:21;;;;;;;;;;;;;:31;53153:66;53149:97;;;53229:7;;53238;;53221:25;;;;;;;;;53149:97;53271:34;53283:7;:21;53291:9;53301:1;53291:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53291:12:0;53283:21;;;;;;;;;;;;;53271:7;;:11;:34::i;:::-;53261:44;;53330:34;53342:7;:21;53350:9;53360:1;53350:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53350:12:0;53342:21;;;;;;;;;;;;;53330:7;;:11;:34::i;:::-;53320:44;-1:-1:-1;53129:3:0;;53087:289;;;-1:-1:-1;53412:7:0;;53400;;:20;;:11;:20::i;:::-;53390:7;:30;53386:61;;;53430:7;;53439;;53422:25;;;;;;;;53386:61;53466:7;;-1:-1:-1;53475:7:0;-1:-1:-1;52936:555:0;;;:::o;7227:278::-;7313:7;7348:12;7341:5;7333:28;;;;-1:-1:-1;;;7333:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7372:9;7388:1;7384;:5;;;;;;;7227:278;-1:-1:-1;;;;;7227:278:0:o;52000:415::-;52104:7;;;;52157:28;52181:3;52157:19;:7;52169:6;52157:11;:19::i;:28::-;52142:43;-1:-1:-1;52196:27:0;52226:40;52262:3;52226:31;:7;52238:18;52226:11;:31::i;:40::-;52196:70;-1:-1:-1;52277:23:0;52303:42;52196:70;52303:17;:7;52315:4;52303:11;:17::i;:::-;:21;;:42::i;:::-;52277:68;52381:4;;-1:-1:-1;52387:19:0;;-1:-1:-1;52000:415:0;;-1:-1:-1;;;;;52000:415:0:o;52423:334::-;52518:7;;;;52574:24;:7;52586:11;52574;:24::i;:::-;52556:42;-1:-1:-1;52609:12:0;52624:21;:4;52633:11;52624:8;:21::i;:::-;52609:36;-1:-1:-1;52656:23:0;52682:17;:7;52609:36;52682:11;:17::i;:::-;52718:7;;;;-1:-1:-1;52744:4:0;;-1:-1:-1;52423:334:0;;-1:-1:-1;;;;;52423:334:0:o;46083:541::-;27900:7;:14;;-1:-1:-1;;;;27900:14:0;-1:-1:-1;;;27900:14:0;;;46243:16:::1;::::0;;46257:1:::1;46243:16:::0;;;46219:21:::1;46243:16:::0;;::::1;::::0;;46219:21;46243:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;46280:16:0::1;::::0;:23:::1;::::0;;-1:-1:-1;;;46280:23:0;;;;46219:40;;-1:-1:-1;;;;;;46280:16:0;;::::1;::::0;:21:::1;::::0;-1:-1:-1;46280:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:16;:23;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;46280:23:0;46270:7;;:4;;46275:1:::1;::::0;46270:7:::1;;;;;;;;;:33;-1:-1:-1::0;;;;;46270:33:0::1;;;-1:-1:-1::0;;;;;46270:33:0::1;;;::::0;::::1;46332:4;46314;46319:1;46314:7;;;;;;;;-1:-1:-1::0;;;;;46314:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;46376:16:::1;::::0;::::1;:67;46451:6:::0;46376:16:::1;46520:4:::0;46539:11:::1;46581:24;:15;46601:3;46581:19;:24::i;:::-;46376:240;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;46376:240:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27937:7:0;:15;;-1:-1:-1;;;;27937:15:0;;;-1:-1:-1;;;;;46083:541:0:o;41525:206::-;41573:18;;:23;:63;;;;-1:-1:-1;41600:31:0;;:36;41573:63;41569:76;;;41638:7;;41569:76;41676:1;41655:18;:22;;;41688:31;:35;41525:206;:::o;49596:590::-;49699:15;49716:23;49741:12;49755:23;49780:12;49794:27;49825:19;49836:7;49825:10;:19::i;:::-;-1:-1:-1;;;;;49873:15:0;;;;;;:7;:15;;;;;;49698:146;;-1:-1:-1;49698:146:0;;-1:-1:-1;49698:146:0;;-1:-1:-1;49698:146:0;-1:-1:-1;49698:146:0;-1:-1:-1;49698:146:0;-1:-1:-1;49873:28:0;;49893:7;49873:19;:28::i;:::-;-1:-1:-1;;;;;49855:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49930:7;:15;;;;:28;;49950:7;49930:19;:28::i;:::-;-1:-1:-1;;;;;49912:15:0;;;;;;;:7;:15;;;;;;:46;;;;49990:18;;;;;;;:39;;50013:15;49990:22;:39::i;:::-;-1:-1:-1;;;;;49969:18:0;;;;;;:7;:18;;;;;:60;50040:44;50064:19;50040:23;:44::i;:::-;50095:23;50107:4;50113;50095:11;:23::i;:::-;50151:9;-1:-1:-1;;;;;50134:44:0;50143:6;-1:-1:-1;;;;;50134:44:0;;50162:15;50134:44;;;;;;;;;;;;;;;;;;49596:590;;;;;;;;;:::o;48986:602::-;49087:15;49104:23;49129:12;49143:23;49168:12;49182:27;49213:19;49224:7;49213:10;:19::i;:::-;-1:-1:-1;;;;;49261:15:0;;;;;;:7;:15;;;;;;49086:146;;-1:-1:-1;49086:146:0;;-1:-1:-1;49086:146:0;;-1:-1:-1;49086:146:0;-1:-1:-1;49086:146:0;-1:-1:-1;49086:146:0;-1:-1:-1;49261:28:0;;49086:146;49261:19;:28::i;:::-;-1:-1:-1;;;;;49243:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;49321:18;;;;;:7;:18;;;;;:39;;49344:15;49321:22;:39::i;:::-;-1:-1:-1;;;;;49300:18:0;;;;;;:7;:18;;;;;;;;:60;;;;49392:7;:18;;;;:39;;49415:15;49392:22;:39::i;48449:529::-;48548:15;48565:23;48590:12;48604:23;48629:12;48643:27;48674:19;48685:7;48674:10;:19::i;:::-;-1:-1:-1;;;;;48722:15:0;;;;;;:7;:15;;;;;;48547:146;;-1:-1:-1;48547:146:0;;-1:-1:-1;48547:146:0;;-1:-1:-1;48547:146:0;-1:-1:-1;48547:146:0;-1:-1:-1;48547:146:0;-1:-1:-1;48722:28:0;;48547:146;48722:19;:28::i;50194:661::-;50297:15;50314:23;50339:12;50353:23;50378:12;50392:27;50423:19;50434:7;50423:10;:19::i;:::-;-1:-1:-1;;;;;50471:15:0;;;;;;:7;:15;;;;;;50296:146;;-1:-1:-1;50296:146:0;;-1:-1:-1;50296:146:0;;-1:-1:-1;50296:146:0;-1:-1:-1;50296:146:0;-1:-1:-1;50296:146:0;-1:-1:-1;50471:28:0;;50491:7;50471:19;:28::i;:::-;-1:-1:-1;;;;;50453:15:0;;;;;;:7;:15;;;;;;;;:46;;;;50528:7;:15;;;;:28;;50548:7;50528:19;:28::i;41739:122::-;41805:1;41784:18;:22;41851:2;41817:31;:36;41739:122::o;50863:339::-;50930:19;50953:10;:8;:10::i;:::-;50930:33;-1:-1:-1;50974:13:0;50990:22;:5;50930:33;50990:9;:22::i;:::-;51064:4;51048:22;;;;:7;:22;;;;;;50974:38;;-1:-1:-1;51048:33:0;;50974:38;51048:26;:33::i;:::-;51039:4;51023:22;;;;:7;:22;;;;;;;;:58;;;;51095:11;:26;;;;;;51092:102;;;51177:4;51161:22;;;;:7;:22;;;;;;:33;;51188:5;51161:26;:33::i;:::-;51152:4;51136:22;;;;:7;:22;;;;;:58;50863:339;;;:::o;51210:147::-;51288:7;;:17;;51300:4;51288:11;:17::i;:::-;51278:7;:27;51329:10;;:20;;51344:4;51329:14;:20::i;:::-;51316:10;:33;-1:-1:-1;;51210:147:0:o

Swarm Source

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