ETH Price: $2,515.78 (+3.06%)

Token

EpicElonMerch (eMERCH)
 

Overview

Max Total Supply

1,000,000,000 eMERCH

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,251,754.936234888340533208 eMERCH

Value
$0.00
0x271D8B45E092813793c62687522135AcE330beaC
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:
EpicElonMerch

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv2 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-29
*/

/*

 t.me/EpicElonMerch
 
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.6.12;

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

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

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

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

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

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

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

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

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

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

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

            return c;
        }

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

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

            return c;
        }

        /**
        * @dev Returns the multiplication of two unsigned integers, reverting on
        * overflow.
        *
        * Counterpart to Solidity's `*` operator.
        *
        * Requirements:
        *
        * - Multiplication cannot overflow.
        */
        function mul(uint256 a, uint256 b) internal pure returns (uint256) {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) {
                return 0;
            }

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

            return c;
        }

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

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

            return c;
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        /**
        * @dev Initializes the contract setting the deployer as the initial owner.
        */
        constructor () internal {
            address msgSender = _msgSender();
            _owner = msgSender;
            emit OwnershipTransferred(address(0), msgSender);
        }

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

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

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

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

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

    }

    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 EpicElonMerch 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 _isExcludedFromFee;

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

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

        string private constant _name = 'EpicElonMerch ';
        string private constant _symbol = 'eMERCH';
        uint8 private constant _decimals = 18;

        uint256 private _taxFee = 1;
        uint256 private _teamFee = 10;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousTeamFee = _teamFee;

        address payable public _devWalletAddress;
        address payable public _marketingWalletAddress;


        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool public swapEnabled = true;

        uint256 private _maxTxAmount = 20000000 * 10**18;
        uint256 private constant _numOfTokensToExchangeForTeam = 7000 * 10**18;
        uint256 private _maxWalletSize = 20000000 * 10**18;

        event botAddedToBlacklist(address account);
        event botRemovedFromBlacklist(address account);

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

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

        constructor (address payable devWalletAddress, address payable marketingWalletAddress) public {
            _devWalletAddress = devWalletAddress;
            _marketingWalletAddress = marketingWalletAddress;

            _rOwned[_msgSender()] = _rTotal;

            IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
            // 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;

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

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

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

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

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

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

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

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

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

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

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

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

        function isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }

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

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

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

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

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

        function addBotToBlacklist (address account) external onlyOwner() {
           require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We cannot blacklist UniSwap router');
           require (!_isBlackListedBot[account], 'Account is already blacklisted');
           _isBlackListedBot[account] = true;
           _blackListedBots.push(account);
        }

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

        function excludeAccount(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
            require(!_isExcluded[account], "Account is already excluded");
            if(_rOwned[account] > 0) {
                _tOwned[account] = tokenFromReflection(_rOwned[account]);
            }
            _isExcluded[account] = true;
            _excluded.push(account);
        }

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

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

            _previousTaxFee = _taxFee;
            _previousTeamFee = _teamFee;

            _taxFee = 0;
            _teamFee = 0;
        }

        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _teamFee = _previousTeamFee;
        }

        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(!_isBlackListedBot[sender], "You are blacklisted");
            require(!_isBlackListedBot[msg.sender], "You are blacklisted");
            require(!_isBlackListedBot[tx.origin], "You are blacklisted");
            if(sender != owner() && recipient != owner()) {
                require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            }
            if(sender != owner() && recipient != owner() && recipient != uniswapV2Pair && recipient != address(0xdead)) {
                uint256 tokenBalanceRecipient = balanceOf(recipient);
                require(tokenBalanceRecipient + amount <= _maxWalletSize, "Recipient exceeds max wallet size.");
            }
            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular team event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));

            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForTeam;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // Swap tokens for ETH and send to resepctive wallets
                swapTokensForEth(contractTokenBalance);

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

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

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

            //transfer amount, it will take tax and team 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 sendETHToTeam(uint256 amount) private {
            _devWalletAddress.transfer(amount.div(5));
            _marketingWalletAddress.transfer(amount.div(10).mul(8));
        }

        function manualSwap() external onlyOwner() {
            uint256 contractBalance = balanceOf(address(this));
            swapTokensForEth(contractBalance);
        }

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

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

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

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

            if(!takeFee)
                restoreAllFee();
        }

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

        function _takeTeam(uint256 tTeam) private {
            uint256 currentRate =  _getRate();
            uint256 rTeam = tTeam.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tTeam);
        }

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

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

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

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

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

        function _getTaxFee() public view returns(uint256) {
            return _taxFee;
        }

        function _getTeamFee() public view returns (uint256) {
          return _teamFee;
        }

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

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

        function _setTaxFee(uint256 taxFee) external onlyOwner() {
            require(taxFee >= 1 && taxFee <= 25, 'taxFee should be in 1 - 25');
            _taxFee = taxFee;
        }

        function _setTeamFee(uint256 teamFee) external onlyOwner() {
            require(teamFee >= 1 && teamFee <= 25, 'teamFee should be in 1 - 25');
            _teamFee = teamFee;
        }

        function _setDevWallet(address payable devWalletAddress) external onlyOwner() {
            _devWalletAddress = devWalletAddress;
        }

        function _setMarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
            _marketingWalletAddress = marketingWalletAddress;
        }

        function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
            _maxTxAmount = maxTxAmount;
        }

        function _setMaxWalletSize (uint256 maxWalletSize) external onlyOwner() {
          _maxWalletSize = maxWalletSize;
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"},{"internalType":"address payable","name":"marketingWalletAddress","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_devWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"devWalletAddress","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"_setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526b01d290004395eb7bbfffffff19600b556001600d819055600a600e819055600f919091556010556012805461ffff60a01b1916600160a81b1790556a108b2a2c2802909400000060138190556014553480156200006157600080fd5b506040516200349438038062003494833981810160405260408110156200008757600080fd5b50805160209091015160006200009c6200039d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601180546001600160a01b038085166001600160a01b0319928316179092556012805492841692909116919091179055600b5460036000620001276200039d565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200019e57600080fd5b505afa158015620001b3573d6000803e3d6000fd5b505050506040513d6020811015620001ca57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200021b57600080fd5b505afa15801562000230573d6000803e3d6000fd5b505050506040513d60208110156200024757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200029a57600080fd5b505af1158015620002af573d6000803e3d6000fd5b505050506040513d6020811015620002c657600080fd5b50516001600160601b0319606091821b811660a0529082901b16608052600160066000620002f3620003a1565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092529020805490911660011790556200033d6200039d565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6b033b2e3c9fd0803ce80000006040518082815260200191505060405180910390a3505050620003b0565b3390565b6000546001600160a01b031690565b60805160601c60a05160601c6130a1620003f3600039806110ac5280611fd052806120d2525080610a9252806123e5528061249d52806124c452506130a16000f3fe60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c18146108f2578063f2fde38b14610925578063f429389014610958578063f7a915911461096d578063f815a84214610982578063f84354f11461099757610272565b8063b030b34a14610810578063b425bac314610843578063cba0e99614610858578063dd62ed3e1461088b578063e01af92c146108c657610272565b806395d89b411161010857806395d89b411461070f5780639e6c752914610724578063a457c2d71461074e578063a5e8c95414610787578063a9059cbb1461079c578063af9549e0146107d557610272565b8063602bc62b146106885780636ddd17131461069d57806370a08231146106b2578063715018a6146106e55780638da5cb5b146106fa57610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e4146105ba5780634549b039146105cf57806349bd5a5e1461060157806351bc3c85146106165780635342acb41461062b5780635880b8731461065e57610272565b80632d838119146104ed5780632fbff03014610517578063313ce5671461052c57806339509351146105575780633bd5d1731461059057610272565b806318160ddd1161022f57806318160ddd146103db5780631bbae6e0146103f05780631d7ef8791461041a5780631ff53b601461044d57806323b872dd1461048057806328667162146104c357610272565b806306fdde0314610277578063095ea7b3146103015780630a1f8ea81461034e57806313114a9d146103835780631694505e146103aa57610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c6109ca565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b5061033a6004803603604081101561032457600080fd5b506001600160a01b0381351690602001356109f2565b604080519115158252519081900360200190f35b34801561035a57600080fd5b506103816004803603602081101561037157600080fd5b50356001600160a01b0316610a10565b005b34801561038f57600080fd5b50610398610a8a565b60408051918252519081900360200190f35b3480156103b657600080fd5b506103bf610a90565b604080516001600160a01b039092168252519081900360200190f35b3480156103e757600080fd5b50610398610ab4565b3480156103fc57600080fd5b506103816004803603602081101561041357600080fd5b5035610ac4565b34801561042657600080fd5b506103816004803603602081101561043d57600080fd5b50356001600160a01b0316610b21565b34801561045957600080fd5b506103816004803603602081101561047057600080fd5b50356001600160a01b0316610ca9565b34801561048c57600080fd5b5061033a600480360360608110156104a357600080fd5b506001600160a01b03813581169160208101359091169060400135610d23565b3480156104cf57600080fd5b50610381600480360360208110156104e657600080fd5b5035610daa565b3480156104f957600080fd5b506103986004803603602081101561051057600080fd5b5035610e6a565b34801561052357600080fd5b50610398610ecc565b34801561053857600080fd5b50610541610ed2565b6040805160ff9092168252519081900360200190f35b34801561056357600080fd5b5061033a6004803603604081101561057a57600080fd5b506001600160a01b038135169060200135610ed7565b34801561059c57600080fd5b50610381600480360360208110156105b357600080fd5b5035610f25565b3480156105c657600080fd5b506103bf610fff565b3480156105db57600080fd5b50610398600480360360408110156105f257600080fd5b5080359060200135151561100e565b34801561060d57600080fd5b506103bf6110aa565b34801561062257600080fd5b506103816110ce565b34801561063757600080fd5b5061033a6004803603602081101561064e57600080fd5b50356001600160a01b031661113f565b34801561066a57600080fd5b506103816004803603602081101561068157600080fd5b503561115d565b34801561069457600080fd5b5061039861121d565b3480156106a957600080fd5b5061033a611223565b3480156106be57600080fd5b50610398600480360360208110156106d557600080fd5b50356001600160a01b0316611233565b3480156106f157600080fd5b50610381611295565b34801561070657600080fd5b506103bf611337565b34801561071b57600080fd5b5061028c611346565b34801561073057600080fd5b506103816004803603602081101561074757600080fd5b5035611366565b34801561075a57600080fd5b5061033a6004803603604081101561077157600080fd5b506001600160a01b0381351690602001356113c3565b34801561079357600080fd5b5061039861142b565b3480156107a857600080fd5b5061033a600480360360408110156107bf57600080fd5b506001600160a01b038135169060200135611431565b3480156107e157600080fd5b50610381600480360360408110156107f857600080fd5b506001600160a01b0381351690602001351515611445565b34801561081c57600080fd5b506103816004803603602081101561083357600080fd5b50356001600160a01b03166114c8565b34801561084f57600080fd5b506103bf611680565b34801561086457600080fd5b5061033a6004803603602081101561087b57600080fd5b50356001600160a01b031661168f565b34801561089757600080fd5b50610398600480360360408110156108ae57600080fd5b506001600160a01b03813581169160200135166116ad565b3480156108d257600080fd5b50610381600480360360208110156108e957600080fd5b503515156116d8565b3480156108fe57600080fd5b506103816004803603602081101561091557600080fd5b50356001600160a01b031661174e565b34801561093157600080fd5b506103816004803603602081101561094857600080fd5b50356001600160a01b0316611930565b34801561096457600080fd5b50610381611a28565b34801561097957600080fd5b50610398611a8a565b34801561098e57600080fd5b50610398611a90565b3480156109a357600080fd5b50610381600480360360208110156109ba57600080fd5b50356001600160a01b0316611a94565b60408051808201909152600e81526d022b834b1a2b637b726b2b931b4160951b602082015290565b6000610a066109ff611c2a565b8484611c2e565b5060015b92915050565b610a18611c2a565b6000546001600160a01b03908116911614610a68576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600c5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b6b033b2e3c9fd0803ce800000090565b610acc611c2a565b6000546001600160a01b03908116911614610b1c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601355565b610b29611c2a565b6000546001600160a01b03908116911614610b79576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610bd55760405162461bcd60e51b8152600401808060200182810382526022815260200180612f1d6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c43576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b610cb1611c2a565b6000546001600160a01b03908116911614610d01576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d30848484611d1a565b610da084610d3c611c2a565b610d9b85604051806060016040528060288152602001612f3f602891396001600160a01b038a16600090815260056020526040812090610d7a611c2a565b6001600160a01b031681526020810191909152604001600020549190612186565b611c2e565b5060019392505050565b610db2611c2a565b6000546001600160a01b03908116911614610e02576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b60018110158015610e14575060198111155b610e65576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2032350000000000604482015290519081900360640190fd5b600e55565b6000600b54821115610ead5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e40602a913960400191505060405180910390fd5b6000610eb761221d565b9050610ec38382612240565b9150505b919050565b600d5490565b601290565b6000610a06610ee4611c2a565b84610d9b8560056000610ef5611c2a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612289565b6000610f2f611c2a565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f8a5760405162461bcd60e51b815260040180806020018281038252602c81526020018061301b602c913960400191505060405180910390fd5b6000610f95836122e3565b505050506001600160a01b038416600090815260036020526040902054919250610fc191905082612340565b6001600160a01b038316600090815260036020526040902055600b54610fe79082612340565b600b55600c54610ff79084612289565b600c55505050565b6012546001600160a01b031681565b60006b033b2e3c9fd0803ce8000000831115611071576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611090576000611081846122e3565b50939550610a0a945050505050565b600061109b846122e3565b50929550610a0a945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6110d6611c2a565b6000546001600160a01b03908116911614611126576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b600061113130611233565b905061113c81612382565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b611165611c2a565b6000546001600160a01b039081169116146111b5576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b600181101580156111c7575060198111155b611218576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600d55565b60025490565b601254600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561127357506001600160a01b038116600090815260046020526040902054610ec7565b6001600160a01b038216600090815260036020526040902054610a0a90610e6a565b61129d611c2a565b6000546001600160a01b039081169116146112ed576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6040805180820190915260068152650ca9a8aa486960d31b602082015290565b61136e611c2a565b6000546001600160a01b039081169116146113be576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601455565b6000610a066113d0611c2a565b84610d9b8560405180606001604052806025815260200161304760259139600560006113fa611c2a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612186565b600e5490565b6000610a0661143e611c2a565b8484611d1a565b61144d611c2a565b6000546001600160a01b0390811691161461149d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6114d0611c2a565b6000546001600160a01b03908116911614611520576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1661158d576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561167c57816001600160a01b0316600a82815481106115b157fe5b6000918252602090912001546001600160a01b0316141561167457600a805460001981019081106115de57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061160457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a80548061164d57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561167c565b600101611590565b5050565b6011546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116e0611c2a565b6000546001600160a01b03908116911614611730576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b60128054911515600160a81b0260ff60a81b19909216919091179055565b611756611c2a565b6000546001600160a01b039081169116146117a6576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156118025760405162461bcd60e51b8152600401808060200182810382526022815260200180612ff96022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611870576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156118ca576001600160a01b0381166000908152600360205260409020546118b090610e6a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611938611c2a565b6000546001600160a01b03908116911614611988576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b0381166119cd5760405162461bcd60e51b8152600401808060200182810382526026815260200180612e6a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611a30611c2a565b6000546001600160a01b03908116911614611a80576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b4761113c816125b9565b60135490565b4790565b611a9c611c2a565b6000546001600160a01b03908116911614611aec576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611b59576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b60085481101561167c57816001600160a01b031660088281548110611b7d57fe5b6000918252602090912001546001600160a01b03161415611c2257600880546000198101908110611baa57fe5b600091825260209091200154600880546001600160a01b039092169183908110611bd057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061164d57fe5b600101611b5c565b3390565b6001600160a01b038316611c735760405162461bcd60e51b8152600401808060200182810382526024815260200180612fd56024913960400191505060405180910390fd5b6001600160a01b038216611cb85760405162461bcd60e51b8152600401808060200182810382526022815260200180612e906022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611d5f5760405162461bcd60e51b8152600401808060200182810382526025815260200180612fb06025913960400191505060405180910390fd5b6001600160a01b038216611da45760405162461bcd60e51b8152600401808060200182810382526023815260200180612e1d6023913960400191505060405180910390fd5b60008111611de35760405162461bcd60e51b8152600401808060200182810382526029815260200180612f876029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e47576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611ea2576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611efd576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b611f05611337565b6001600160a01b0316836001600160a01b031614158015611f3f5750611f29611337565b6001600160a01b0316826001600160a01b031614155b15611f8557601354811115611f855760405162461bcd60e51b8152600401808060200182810382526028815260200180612ed46028913960400191505060405180910390fd5b611f8d611337565b6001600160a01b0316836001600160a01b031614158015611fc75750611fb1611337565b6001600160a01b0316826001600160a01b031614155b801561200557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561201c57506001600160a01b03821661dead14155b1561207357600061202c83611233565b905060145482820111156120715760405162461bcd60e51b8152600401808060200182810382526022815260200180612eb26022913960400191505060405180910390fd5b505b600061207e30611233565b9050601354811061208e57506013545b60125469017b7883c0691660000082101590600160a01b900460ff161580156120c05750601254600160a81b900460ff165b80156120c95750805b801561210757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b156121275761211582612382565b47801561212557612125476125b9565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216957506001600160a01b03851660009081526006602052604090205460ff165b15612172575060005b61217e86868684612649565b505050505050565b600081848411156122155760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121da5781810151838201526020016121c2565b50505050905090810190601f1680156122075780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061222a6127bd565b90925090506122398282612240565b9250505090565b600061228283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612948565b9392505050565b600082820183811015612282576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123008a600d54600e546129ad565b925092509250600061231061221d565b905060008060006123238e878787612a02565b919e509c509a509598509396509194505050505091939550919395565b600061228283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612186565b6012805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123c357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243c57600080fd5b505afa158015612450573d6000803e3d6000fd5b505050506040513d602081101561246657600080fd5b505181518290600190811061247757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124c2307f000000000000000000000000000000000000000000000000000000000000000084611c2e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561256757818101518382015260200161254f565b505050509050019650505050505050600060405180830381600087803b15801561259057600080fd5b505af11580156125a4573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b6011546001600160a01b03166108fc6125d3836005612240565b6040518115909202916000818181858888f193505050501580156125fb573d6000803e3d6000fd5b506012546001600160a01b03166108fc612621600861261b85600a612240565b90612a52565b6040518115909202916000818181858888f1935050505015801561167c573d6000803e3d6000fd5b8061265657612656612aab565b6001600160a01b03841660009081526007602052604090205460ff16801561269757506001600160a01b03831660009081526007602052604090205460ff16155b156126ac576126a7848484612add565b6127aa565b6001600160a01b03841660009081526007602052604090205460ff161580156126ed57506001600160a01b03831660009081526007602052604090205460ff165b156126fd576126a7848484612c01565b6001600160a01b03841660009081526007602052604090205460ff1615801561273f57506001600160a01b03831660009081526007602052604090205460ff16155b1561274f576126a7848484612caa565b6001600160a01b03841660009081526007602052604090205460ff16801561278f57506001600160a01b03831660009081526007602052604090205460ff165b1561279f576126a7848484612cee565b6127aa848484612caa565b806127b7576127b7612d61565b50505050565b600b5460009081906b033b2e3c9fd0803ce8000000825b600854811015612902578260036000600884815481106127f057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612855575081600460006008848154811061282e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561287657600b546b033b2e3c9fd0803ce800000094509450505050612944565b6128b6600360006008848154811061288a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612340565b92506128f860046000600884815481106128cc57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612340565b91506001016127d4565b50600b5461291c906b033b2e3c9fd0803ce8000000612240565b82101561293e57600b546b033b2e3c9fd0803ce8000000935093505050612944565b90925090505b9091565b600081836129975760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121da5781810151838201526020016121c2565b5060008385816129a357fe5b0495945050505050565b60008080806129c760646129c18989612a52565b90612240565b905060006129da60646129c18a89612a52565b905060006129f2826129ec8b86612340565b90612340565b9992985090965090945050505050565b6000808080612a118886612a52565b90506000612a1f8887612a52565b90506000612a2d8888612a52565b90506000612a3f826129ec8686612340565b939b939a50919850919650505050505050565b600082612a6157506000610a0a565b82820282848281612a6e57fe5b04146122825760405162461bcd60e51b8152600401808060200182810382526021815260200180612efc6021913960400191505060405180910390fd5b600d54158015612abb5750600e54155b15612ac557612adb565b600d8054600f55600e8054601055600091829055555b565b600080600080600080612aef876122e3565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612b219088612340565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b509087612340565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b7f9086612289565b6001600160a01b038916600090815260036020526040902055612ba181612d6f565b612bab8483612df8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612c13876122e3565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612c459087612340565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c7b9084612289565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b7f9086612289565b600080600080600080612cbc876122e3565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b509087612340565b600080600080600080612d00876122e3565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612d329088612340565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612c459087612340565b600f54600d55601054600e55565b6000612d7961221d565b90506000612d878383612a52565b30600090815260036020526040902054909150612da49082612289565b3060009081526003602090815260408083209390935560079052205460ff1615612df35730600090815260046020526040902054612de29084612289565b306000908152600460205260409020555b505050565b600b54612e059083612340565b600b55600c54612e159082612289565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209cd8214e081730064a655217ca139187eb4cc7791de71f45052d89ee4498ef9d64736f6c634300060c00330000000000000000000000008ca1932ebbca5f328760dea62e1d93adcbd5329e0000000000000000000000008ca1932ebbca5f328760dea62e1d93adcbd5329e

Deployed Bytecode

0x60806040526004361061026b5760003560e01c8063602bc62b11610144578063b030b34a116100b6578063f2cc0c181161007a578063f2cc0c18146108f2578063f2fde38b14610925578063f429389014610958578063f7a915911461096d578063f815a84214610982578063f84354f11461099757610272565b8063b030b34a14610810578063b425bac314610843578063cba0e99614610858578063dd62ed3e1461088b578063e01af92c146108c657610272565b806395d89b411161010857806395d89b411461070f5780639e6c752914610724578063a457c2d71461074e578063a5e8c95414610787578063a9059cbb1461079c578063af9549e0146107d557610272565b8063602bc62b146106885780636ddd17131461069d57806370a08231146106b2578063715018a6146106e55780638da5cb5b146106fa57610272565b80632d838119116101dd5780634144d9e4116101a15780634144d9e4146105ba5780634549b039146105cf57806349bd5a5e1461060157806351bc3c85146106165780635342acb41461062b5780635880b8731461065e57610272565b80632d838119146104ed5780632fbff03014610517578063313ce5671461052c57806339509351146105575780633bd5d1731461059057610272565b806318160ddd1161022f57806318160ddd146103db5780631bbae6e0146103f05780631d7ef8791461041a5780631ff53b601461044d57806323b872dd1461048057806328667162146104c357610272565b806306fdde0314610277578063095ea7b3146103015780630a1f8ea81461034e57806313114a9d146103835780631694505e146103aa57610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c6109ca565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b5061033a6004803603604081101561032457600080fd5b506001600160a01b0381351690602001356109f2565b604080519115158252519081900360200190f35b34801561035a57600080fd5b506103816004803603602081101561037157600080fd5b50356001600160a01b0316610a10565b005b34801561038f57600080fd5b50610398610a8a565b60408051918252519081900360200190f35b3480156103b657600080fd5b506103bf610a90565b604080516001600160a01b039092168252519081900360200190f35b3480156103e757600080fd5b50610398610ab4565b3480156103fc57600080fd5b506103816004803603602081101561041357600080fd5b5035610ac4565b34801561042657600080fd5b506103816004803603602081101561043d57600080fd5b50356001600160a01b0316610b21565b34801561045957600080fd5b506103816004803603602081101561047057600080fd5b50356001600160a01b0316610ca9565b34801561048c57600080fd5b5061033a600480360360608110156104a357600080fd5b506001600160a01b03813581169160208101359091169060400135610d23565b3480156104cf57600080fd5b50610381600480360360208110156104e657600080fd5b5035610daa565b3480156104f957600080fd5b506103986004803603602081101561051057600080fd5b5035610e6a565b34801561052357600080fd5b50610398610ecc565b34801561053857600080fd5b50610541610ed2565b6040805160ff9092168252519081900360200190f35b34801561056357600080fd5b5061033a6004803603604081101561057a57600080fd5b506001600160a01b038135169060200135610ed7565b34801561059c57600080fd5b50610381600480360360208110156105b357600080fd5b5035610f25565b3480156105c657600080fd5b506103bf610fff565b3480156105db57600080fd5b50610398600480360360408110156105f257600080fd5b5080359060200135151561100e565b34801561060d57600080fd5b506103bf6110aa565b34801561062257600080fd5b506103816110ce565b34801561063757600080fd5b5061033a6004803603602081101561064e57600080fd5b50356001600160a01b031661113f565b34801561066a57600080fd5b506103816004803603602081101561068157600080fd5b503561115d565b34801561069457600080fd5b5061039861121d565b3480156106a957600080fd5b5061033a611223565b3480156106be57600080fd5b50610398600480360360208110156106d557600080fd5b50356001600160a01b0316611233565b3480156106f157600080fd5b50610381611295565b34801561070657600080fd5b506103bf611337565b34801561071b57600080fd5b5061028c611346565b34801561073057600080fd5b506103816004803603602081101561074757600080fd5b5035611366565b34801561075a57600080fd5b5061033a6004803603604081101561077157600080fd5b506001600160a01b0381351690602001356113c3565b34801561079357600080fd5b5061039861142b565b3480156107a857600080fd5b5061033a600480360360408110156107bf57600080fd5b506001600160a01b038135169060200135611431565b3480156107e157600080fd5b50610381600480360360408110156107f857600080fd5b506001600160a01b0381351690602001351515611445565b34801561081c57600080fd5b506103816004803603602081101561083357600080fd5b50356001600160a01b03166114c8565b34801561084f57600080fd5b506103bf611680565b34801561086457600080fd5b5061033a6004803603602081101561087b57600080fd5b50356001600160a01b031661168f565b34801561089757600080fd5b50610398600480360360408110156108ae57600080fd5b506001600160a01b03813581169160200135166116ad565b3480156108d257600080fd5b50610381600480360360208110156108e957600080fd5b503515156116d8565b3480156108fe57600080fd5b506103816004803603602081101561091557600080fd5b50356001600160a01b031661174e565b34801561093157600080fd5b506103816004803603602081101561094857600080fd5b50356001600160a01b0316611930565b34801561096457600080fd5b50610381611a28565b34801561097957600080fd5b50610398611a8a565b34801561098e57600080fd5b50610398611a90565b3480156109a357600080fd5b50610381600480360360208110156109ba57600080fd5b50356001600160a01b0316611a94565b60408051808201909152600e81526d022b834b1a2b637b726b2b931b4160951b602082015290565b6000610a066109ff611c2a565b8484611c2e565b5060015b92915050565b610a18611c2a565b6000546001600160a01b03908116911614610a68576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b600c5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6b033b2e3c9fd0803ce800000090565b610acc611c2a565b6000546001600160a01b03908116911614610b1c576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601355565b610b29611c2a565b6000546001600160a01b03908116911614610b79576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610bd55760405162461bcd60e51b8152600401808060200182810382526022815260200180612f1d6022913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff1615610c43576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b610cb1611c2a565b6000546001600160a01b03908116911614610d01576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d30848484611d1a565b610da084610d3c611c2a565b610d9b85604051806060016040528060288152602001612f3f602891396001600160a01b038a16600090815260056020526040812090610d7a611c2a565b6001600160a01b031681526020810191909152604001600020549190612186565b611c2e565b5060019392505050565b610db2611c2a565b6000546001600160a01b03908116911614610e02576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b60018110158015610e14575060198111155b610e65576040805162461bcd60e51b815260206004820152601b60248201527f7465616d4665652073686f756c6420626520696e2031202d2032350000000000604482015290519081900360640190fd5b600e55565b6000600b54821115610ead5760405162461bcd60e51b815260040180806020018281038252602a815260200180612e40602a913960400191505060405180910390fd5b6000610eb761221d565b9050610ec38382612240565b9150505b919050565b600d5490565b601290565b6000610a06610ee4611c2a565b84610d9b8560056000610ef5611c2a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612289565b6000610f2f611c2a565b6001600160a01b03811660009081526007602052604090205490915060ff1615610f8a5760405162461bcd60e51b815260040180806020018281038252602c81526020018061301b602c913960400191505060405180910390fd5b6000610f95836122e3565b505050506001600160a01b038416600090815260036020526040902054919250610fc191905082612340565b6001600160a01b038316600090815260036020526040902055600b54610fe79082612340565b600b55600c54610ff79084612289565b600c55505050565b6012546001600160a01b031681565b60006b033b2e3c9fd0803ce8000000831115611071576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81611090576000611081846122e3565b50939550610a0a945050505050565b600061109b846122e3565b50929550610a0a945050505050565b7f000000000000000000000000e25d4642d822ebe8d31d720e9fd7b60d20e0ac9b81565b6110d6611c2a565b6000546001600160a01b03908116911614611126576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b600061113130611233565b905061113c81612382565b50565b6001600160a01b031660009081526006602052604090205460ff1690565b611165611c2a565b6000546001600160a01b039081169116146111b5576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b600181101580156111c7575060198111155b611218576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203235000000000000604482015290519081900360640190fd5b600d55565b60025490565b601254600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff161561127357506001600160a01b038116600090815260046020526040902054610ec7565b6001600160a01b038216600090815260036020526040902054610a0a90610e6a565b61129d611c2a565b6000546001600160a01b039081169116146112ed576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b6040805180820190915260068152650ca9a8aa486960d31b602082015290565b61136e611c2a565b6000546001600160a01b039081169116146113be576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b601455565b6000610a066113d0611c2a565b84610d9b8560405180606001604052806025815260200161304760259139600560006113fa611c2a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612186565b600e5490565b6000610a0661143e611c2a565b8484611d1a565b61144d611c2a565b6000546001600160a01b0390811691161461149d576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6114d0611c2a565b6000546001600160a01b03908116911614611520576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1661158d576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a5481101561167c57816001600160a01b0316600a82815481106115b157fe5b6000918252602090912001546001600160a01b0316141561167457600a805460001981019081106115de57fe5b600091825260209091200154600a80546001600160a01b03909216918390811061160457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a80548061164d57fe5b600082815260209020810160001990810180546001600160a01b031916905501905561167c565b600101611590565b5050565b6011546001600160a01b031681565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116e0611c2a565b6000546001600160a01b03908116911614611730576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b60128054911515600160a81b0260ff60a81b19909216919091179055565b611756611c2a565b6000546001600160a01b039081169116146117a6576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156118025760405162461bcd60e51b8152600401808060200182810382526022815260200180612ff96022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611870576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156118ca576001600160a01b0381166000908152600360205260409020546118b090610e6a565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b611938611c2a565b6000546001600160a01b03908116911614611988576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b0381166119cd5760405162461bcd60e51b8152600401808060200182810382526026815260200180612e6a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611a30611c2a565b6000546001600160a01b03908116911614611a80576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b4761113c816125b9565b60135490565b4790565b611a9c611c2a565b6000546001600160a01b03908116911614611aec576040805162461bcd60e51b81526020600482018190526024820152600080516020612f67833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16611b59576040805162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c75646564000000000000000000604482015290519081900360640190fd5b60005b60085481101561167c57816001600160a01b031660088281548110611b7d57fe5b6000918252602090912001546001600160a01b03161415611c2257600880546000198101908110611baa57fe5b600091825260209091200154600880546001600160a01b039092169183908110611bd057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff19169055600880548061164d57fe5b600101611b5c565b3390565b6001600160a01b038316611c735760405162461bcd60e51b8152600401808060200182810382526024815260200180612fd56024913960400191505060405180910390fd5b6001600160a01b038216611cb85760405162461bcd60e51b8152600401808060200182810382526022815260200180612e906022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611d5f5760405162461bcd60e51b8152600401808060200182810382526025815260200180612fb06025913960400191505060405180910390fd5b6001600160a01b038216611da45760405162461bcd60e51b8152600401808060200182810382526023815260200180612e1d6023913960400191505060405180910390fd5b60008111611de35760405162461bcd60e51b8152600401808060200182810382526029815260200180612f876029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff1615611e47576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3360009081526009602052604090205460ff1615611ea2576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b3260009081526009602052604090205460ff1615611efd576040805162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b604482015290519081900360640190fd5b611f05611337565b6001600160a01b0316836001600160a01b031614158015611f3f5750611f29611337565b6001600160a01b0316826001600160a01b031614155b15611f8557601354811115611f855760405162461bcd60e51b8152600401808060200182810382526028815260200180612ed46028913960400191505060405180910390fd5b611f8d611337565b6001600160a01b0316836001600160a01b031614158015611fc75750611fb1611337565b6001600160a01b0316826001600160a01b031614155b801561200557507f000000000000000000000000e25d4642d822ebe8d31d720e9fd7b60d20e0ac9b6001600160a01b0316826001600160a01b031614155b801561201c57506001600160a01b03821661dead14155b1561207357600061202c83611233565b905060145482820111156120715760405162461bcd60e51b8152600401808060200182810382526022815260200180612eb26022913960400191505060405180910390fd5b505b600061207e30611233565b9050601354811061208e57506013545b60125469017b7883c0691660000082101590600160a01b900460ff161580156120c05750601254600160a81b900460ff165b80156120c95750805b801561210757507f000000000000000000000000e25d4642d822ebe8d31d720e9fd7b60d20e0ac9b6001600160a01b0316856001600160a01b031614155b156121275761211582612382565b47801561212557612125476125b9565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061216957506001600160a01b03851660009081526006602052604090205460ff165b15612172575060005b61217e86868684612649565b505050505050565b600081848411156122155760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121da5781810151838201526020016121c2565b50505050905090810190601f1680156122075780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061222a6127bd565b90925090506122398282612240565b9250505090565b600061228283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612948565b9392505050565b600082820183811015612282576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006123008a600d54600e546129ad565b925092509250600061231061221d565b905060008060006123238e878787612a02565b919e509c509a509598509396509194505050505091939550919395565b600061228283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612186565b6012805460ff60a01b1916600160a01b179055604080516002808252606080830184529260208301908036833701905050905030816000815181106123c357fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243c57600080fd5b505afa158015612450573d6000803e3d6000fd5b505050506040513d602081101561246657600080fd5b505181518290600190811061247757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506124c2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c2e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561256757818101518382015260200161254f565b505050509050019650505050505050600060405180830381600087803b15801561259057600080fd5b505af11580156125a4573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b6011546001600160a01b03166108fc6125d3836005612240565b6040518115909202916000818181858888f193505050501580156125fb573d6000803e3d6000fd5b506012546001600160a01b03166108fc612621600861261b85600a612240565b90612a52565b6040518115909202916000818181858888f1935050505015801561167c573d6000803e3d6000fd5b8061265657612656612aab565b6001600160a01b03841660009081526007602052604090205460ff16801561269757506001600160a01b03831660009081526007602052604090205460ff16155b156126ac576126a7848484612add565b6127aa565b6001600160a01b03841660009081526007602052604090205460ff161580156126ed57506001600160a01b03831660009081526007602052604090205460ff165b156126fd576126a7848484612c01565b6001600160a01b03841660009081526007602052604090205460ff1615801561273f57506001600160a01b03831660009081526007602052604090205460ff16155b1561274f576126a7848484612caa565b6001600160a01b03841660009081526007602052604090205460ff16801561278f57506001600160a01b03831660009081526007602052604090205460ff165b1561279f576126a7848484612cee565b6127aa848484612caa565b806127b7576127b7612d61565b50505050565b600b5460009081906b033b2e3c9fd0803ce8000000825b600854811015612902578260036000600884815481106127f057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612855575081600460006008848154811061282e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561287657600b546b033b2e3c9fd0803ce800000094509450505050612944565b6128b6600360006008848154811061288a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612340565b92506128f860046000600884815481106128cc57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612340565b91506001016127d4565b50600b5461291c906b033b2e3c9fd0803ce8000000612240565b82101561293e57600b546b033b2e3c9fd0803ce8000000935093505050612944565b90925090505b9091565b600081836129975760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156121da5781810151838201526020016121c2565b5060008385816129a357fe5b0495945050505050565b60008080806129c760646129c18989612a52565b90612240565b905060006129da60646129c18a89612a52565b905060006129f2826129ec8b86612340565b90612340565b9992985090965090945050505050565b6000808080612a118886612a52565b90506000612a1f8887612a52565b90506000612a2d8888612a52565b90506000612a3f826129ec8686612340565b939b939a50919850919650505050505050565b600082612a6157506000610a0a565b82820282848281612a6e57fe5b04146122825760405162461bcd60e51b8152600401808060200182810382526021815260200180612efc6021913960400191505060405180910390fd5b600d54158015612abb5750600e54155b15612ac557612adb565b600d8054600f55600e8054601055600091829055555b565b600080600080600080612aef876122e3565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612b219088612340565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b509087612340565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612b7f9086612289565b6001600160a01b038916600090815260036020526040902055612ba181612d6f565b612bab8483612df8565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b600080600080600080612c13876122e3565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612c459087612340565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612c7b9084612289565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612b7f9086612289565b600080600080600080612cbc876122e3565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b509087612340565b600080600080600080612d00876122e3565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612d329088612340565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612c459087612340565b600f54600d55601054600e55565b6000612d7961221d565b90506000612d878383612a52565b30600090815260036020526040902054909150612da49082612289565b3060009081526003602090815260408083209390935560079052205460ff1615612df35730600090815260046020526040902054612de29084612289565b306000908152600460205260409020555b505050565b600b54612e059083612340565b600b55600c54612e159082612289565b600c55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373526563697069656e742065786365656473206d61782077616c6c65742073697a652e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7757652063616e6e6f7420626c61636b6c69737420556e695377617020726f7574657245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209cd8214e081730064a655217ca139187eb4cc7791de71f45052d89ee4498ef9d64736f6c634300060c0033

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

0000000000000000000000008ca1932ebbca5f328760dea62e1d93adcbd5329e0000000000000000000000008ca1932ebbca5f328760dea62e1d93adcbd5329e

-----Decoded View---------------
Arg [0] : devWalletAddress (address): 0x8ca1932EbBca5F328760dEa62E1D93adcbD5329E
Arg [1] : marketingWalletAddress (address): 0x8ca1932EbBca5F328760dEa62E1D93adcbD5329E

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008ca1932ebbca5f328760dea62e1d93adcbd5329e
Arg [1] : 0000000000000000000000008ca1932ebbca5f328760dea62e1d93adcbd5329e


Deployed Bytecode Sourcemap

25806:20771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28761:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29765:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29765:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45981:141;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45981:141:0;-1:-1:-1;;;;;45981:141:0;;:::i;:::-;;31113:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27080:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27080:51:0;;;;;;;;;;;;;;29074:103;;;;;;;;;;;;;:::i;46311:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46311:120:0;;:::i;32402:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32402:368:0;-1:-1:-1;;;;;32402:368:0;;:::i;46134:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46134:165:0;-1:-1:-1;;;;;46134:165:0;;:::i;29950:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29950:329:0;;;;;;;;;;;;;;;;;:::i;45781:188::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45781:188:0;;:::i;32121:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32121:269:0;;:::i;45135:92::-;;;;;;;;;;;;;:::i;28971:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30291:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30291:230:0;;;;;;;;:::i;31220:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31220:405:0;;:::i;27019:46::-;;;;;;;;;;;;;:::i;31637:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31637:472:0;;;;;;;;;:::i;27142:38::-;;;;;;;;;;;;;:::i;38637:168::-;;;;;;;;;;;;;:::i;34741:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34741:131:0;-1:-1:-1;;;;;34741:131:0;;:::i;45588:181::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45588:181:0;;:::i;16996:98::-;;;;;;;;;;;;;:::i;27223:30::-;;;;;;;;;;;;;:::i;29189:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29189:210:0;-1:-1:-1;;;;;29189:210:0;;:::i;16392:160::-;;;;;;;;;;;;;:::i;15690:87::-;;;;;;;;;;;;;:::i;28864:95::-;;;;;;;;;;;;;:::i;46443:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46443:127:0;;:::i;30533:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30533:281:0;;;;;;;;:::i;45239:93::-;;;;;;;;;;;;;:::i;29411:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29411:179:0;;;;;;;;:::i;30956:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30956:145:0;;;;;;;;;;:::i;32782:541::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32782:541:0;-1:-1:-1;;;;;32782:541:0;;:::i;26968:40::-;;;;;;;;;;;;;:::i;30826:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30826:118:0;-1:-1:-1;;;;;30826:118:0;;:::i;29602:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29602:151:0;;;;;;;;;;:::i;38997:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38997:106:0;;;;:::i;33335:475::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33335:475:0;-1:-1:-1;;;;;33335:475:0;;:::i;16724:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16724:260:0;-1:-1:-1;;;;;16724:260:0;;:::i;38817:168::-;;;;;;;;;;;;;:::i;45344:102::-;;;;;;;;;;;;;:::i;45458:118::-;;;;;;;;;;;;;:::i;33822:518::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33822:518:0;-1:-1:-1;;;;;33822:518:0;;:::i;28761:91::-;28835:5;;;;;;;;;;;;-1:-1:-1;;;28835:5:0;;;;28761:91;:::o;29765:173::-;29840:4;29861:39;29870:12;:10;:12::i;:::-;29884:7;29893:6;29861:8;:39::i;:::-;-1:-1:-1;29922:4:0;29765:173;;;;;:::o;45981:141::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;46074:17:::1;:36:::0;;-1:-1:-1;;;;;;46074:36:0::1;-1:-1:-1::0;;;;;46074:36:0;;;::::1;::::0;;;::::1;::::0;;45981:141::o;31113:95::-;31186:10;;31113:95;:::o;27080:51::-;;;:::o;29074:103::-;26491:19;29074:103;:::o;46311:120::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;46393:12:::1;:26:::0;46311:120::o;32402:368::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;32501:42:::1;-1:-1:-1::0;;;;;32490:53:0;::::1;;;32482:100;;;;-1:-1:-1::0;;;32482:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32606:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32605:27;32596:71;;;::::0;;-1:-1:-1;;;32596:71:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32681:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;32681:33:0::1;32710:4;32681:33:::0;;::::1;::::0;;;32728:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32728:30:0::1;::::0;;::::1;::::0;;32402:368::o;46134:165::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;46239:23:::1;:48:::0;;-1:-1:-1;;;;;;46239:48:0::1;-1:-1:-1::0;;;;;46239:48:0;;;::::1;::::0;;;::::1;::::0;;46134:165::o;29950:329::-;30048:4;30069:36;30079:6;30087:9;30098:6;30069:9;:36::i;:::-;30120:121;30129:6;30137:12;:10;:12::i;:::-;30151:89;30189:6;30151:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30151:19:0;;;;;;:11;:19;;;;;;30171:12;:10;:12::i;:::-;-1:-1:-1;;;;;30151:33:0;;;;;;;;;;;;-1:-1:-1;30151:33:0;;;:89;:37;:89::i;:::-;30120:8;:121::i;:::-;-1:-1:-1;30263:4:0;29950:329;;;;;:::o;45781:188::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;45874:1:::1;45863:7;:12;;:29;;;;;45890:2;45879:7;:13;;45863:29;45855:69;;;::::0;;-1:-1:-1;;;45855:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;45939:8;:18:::0;45781:188::o;32121:269::-;32187:7;32230;;32219;:18;;32211:73;;;;-1:-1:-1;;;32211:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32299:19;32322:10;:8;:10::i;:::-;32299:33;-1:-1:-1;32354:24:0;:7;32299:33;32354:11;:24::i;:::-;32347:31;;;32121:269;;;;:::o;45135:92::-;45208:7;;45135:92;:::o;28971:91::-;26767:2;28971:91;:::o;30291:230::-;30379:4;30400:83;30409:12;:10;:12::i;:::-;30423:7;30432:50;30471:10;30432:11;:25;30444:12;:10;:12::i;:::-;-1:-1:-1;;;;;30432:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30432:25:0;;;:34;;;;;;;;;;;:38;:50::i;31220:405::-;31276:14;31293:12;:10;:12::i;:::-;-1:-1:-1;;;;;31329:19:0;;;;;;:11;:19;;;;;;31276:29;;-1:-1:-1;31329:19:0;;31328:20;31320:77;;;;-1:-1:-1;;;31320:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31413:15;31437:19;31448:7;31437:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31489:15:0;;;;;;:7;:15;;;;;;31412:44;;-1:-1:-1;31489:28:0;;:15;-1:-1:-1;31412:44:0;31489:19;:28::i;:::-;-1:-1:-1;;;;;31471:15:0;;;;;;:7;:15;;;;;:46;31542:7;;:20;;31554:7;31542:11;:20::i;:::-;31532:7;:30;31590:10;;:23;;31605:7;31590:14;:23::i;:::-;31577:10;:36;-1:-1:-1;;;31220:405:0:o;27019:46::-;;;-1:-1:-1;;;;;27019:46:0;;:::o;31637:472::-;31727:7;26491:19;31759:7;:18;;31751:62;;;;;-1:-1:-1;;;31751:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31833:17;31828:270;;31872:15;31896:19;31907:7;31896:10;:19::i;:::-;-1:-1:-1;31871:44:0;;-1:-1:-1;31934:14:0;;-1:-1:-1;;;;;31934:14:0;31828:270;31991:23;32022:19;32033:7;32022:10;:19::i;:::-;-1:-1:-1;31989:52:0;;-1:-1:-1;32060:22:0;;-1:-1:-1;;;;;32060:22:0;27142:38;;;:::o;38637:168::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;38695:23:::1;38721:24;38739:4;38721:9;:24::i;:::-;38695:50;;38760:33;38777:15;38760:16;:33::i;:::-;16002:1;38637:168::o:0;34741:131::-;-1:-1:-1;;;;;34833:27:0;34805:4;34833:27;;;:18;:27;;;;;;;;;34741:131::o;45588:181::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;45678:1:::1;45668:6;:11;;:27;;;;;45693:2;45683:6;:12;;45668:27;45660:66;;;::::0;;-1:-1:-1;;;45660:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;45741:7;:16:::0;45588:181::o;16996:98::-;17073:9;;16996:98;:::o;27223:30::-;;;-1:-1:-1;;;27223:30:0;;;;;:::o;29189:210::-;-1:-1:-1;;;;;29283:20:0;;29255:7;29283:20;;;:11;:20;;;;;;;;29279:49;;;-1:-1:-1;;;;;;29312:16:0;;;;;;:7;:16;;;;;;29305:23;;29279:49;-1:-1:-1;;;;;29370:16:0;;;;;;:7;:16;;;;;;29350:37;;:19;:37::i;16392:160::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;16503:1:::1;16487:6:::0;;16466:40:::1;::::0;-1:-1:-1;;;;;16487:6:0;;::::1;::::0;16466:40:::1;::::0;16503:1;;16466:40:::1;16538:1;16521:19:::0;;-1:-1:-1;;;;;;16521:19:0::1;::::0;;16392:160::o;15690:87::-;15728:7;15759:6;-1:-1:-1;;;;;15759:6:0;15690:87;:::o;28864:95::-;28940:7;;;;;;;;;;;;-1:-1:-1;;;28940:7:0;;;;28864:95;:::o;46443:127::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;46528:14:::1;:30:::0;46443:127::o;30533:281::-;30626:4;30647:129;30656:12;:10;:12::i;:::-;30670:7;30679:96;30718:15;30679:96;;;;;;;;;;;;;;;;;:11;:25;30691:12;:10;:12::i;:::-;-1:-1:-1;;;;;30679:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30679:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;45239:93::-;45312:8;;45239:93;:::o;29411:179::-;29489:4;29510:42;29520:12;:10;:12::i;:::-;29534:9;29545:6;29510:9;:42::i;30956:145::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31051:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;31051:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30956:145::o;32782:541::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32874:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;32865:66;;;::::0;;-1:-1:-1;;;32865:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32949:9;32944:369;32968:16;:23:::0;32964:27;::::1;32944:369;;;33045:7;-1:-1:-1::0;;;;;33022:30:0::1;:16;33039:1;33022:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33022:19:0::1;:30;33018:281;;;33100:16;33117:23:::0;;-1:-1:-1;;33117:27:0;;;33100:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;33078:16:::1;:19:::0;;-1:-1:-1;;;;;33100:45:0;;::::1;::::0;33095:1;;33078:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;33078:67:0::1;-1:-1:-1::0;;;;;33078:67:0;;::::1;;::::0;;33169:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;33169:34:0::1;::::0;;33227:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33227:22:0;;;;;-1:-1:-1;;;;;;33227:22:0::1;::::0;;;;;33273:5:::1;;33018:281;32993:3;;32944:369;;;;32782:541:::0;:::o;26968:40::-;;;-1:-1:-1;;;;;26968:40:0;;:::o;30826:118::-;-1:-1:-1;;;;;30912:20:0;30884:4;30912:20;;;:11;:20;;;;;;;;;30826:118::o;29602:151::-;-1:-1:-1;;;;;29714:18:0;;;29683:7;29714:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29602:151::o;38997:106::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;39070:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;39070:21:0::1;-1:-1:-1::0;;;;39070:21:0;;::::1;::::0;;;::::1;::::0;;38997:106::o;33335:475::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;33431:42:::1;-1:-1:-1::0;;;;;33420:53:0;::::1;;;33412:100;;;;-1:-1:-1::0;;;33412:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;33536:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33535:21;33527:61;;;::::0;;-1:-1:-1;;;33527:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;33606:16:0;::::1;33625:1;33606:16:::0;;;:7:::1;:16;::::0;;;;;:20;33603:116:::1;;-1:-1:-1::0;;;;;33686:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33666:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33647:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33603:116:::1;-1:-1:-1::0;;;;;33733:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33733:27:0::1;33756:4;33733:27:::0;;::::1;::::0;;;33775:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33775:23:0::1;::::0;;::::1;::::0;;33335:475::o;16724:260::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16817:22:0;::::1;16809:73;;;;-1:-1:-1::0;;;16809:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16923:6;::::0;;16902:38:::1;::::0;-1:-1:-1;;;;;16902:38:0;;::::1;::::0;16923:6;::::1;::::0;16902:38:::1;::::0;::::1;16955:6;:17:::0;;-1:-1:-1;;;;;;16955:17:0::1;-1:-1:-1::0;;;;;16955:17:0;;;::::1;::::0;;;::::1;::::0;;16724:260::o;38817:168::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;38904:21:::1;38940:33;38904:21:::0;38940:13:::1;:33::i;45344:102::-:0;45422:12;;45344:102;:::o;45458:118::-;45543:21;45458:118;:::o;33822:518::-;15938:12;:10;:12::i;:::-;15928:6;;-1:-1:-1;;;;;15928:6:0;;;:22;;;15920:67;;;;;-1:-1:-1;;;15920:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15920:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33907:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33899:56;;;::::0;;-1:-1:-1;;;33899:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33975:9;33970:359;33994:9;:16:::0;33990:20;::::1;33970:359;;;34056:7;-1:-1:-1::0;;;;;34040:23:0::1;:9;34050:1;34040:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;34040:12:0::1;:23;34036:278;;;34103:9;34113:16:::0;;-1:-1:-1;;34113:20:0;;;34103:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;34088:9:::1;:12:::0;;-1:-1:-1;;;;;34103:31:0;;::::1;::::0;34098:1;;34088:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;34088:46:0::1;-1:-1:-1::0;;;;;34088:46:0;;::::1;;::::0;;34157:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34200:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34200:28:0::1;::::0;;34251:9:::1;:15:::0;;;::::1;;;34036:278;34012:3;;33970:359;;147:114:::0;239:10;147:114;:::o;34884:357::-;-1:-1:-1;;;;;34981:19:0;;34973:68;;;;-1:-1:-1;;;34973:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35064:21:0;;35056:68;;;;-1:-1:-1;;;35056:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35141:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35197:32;;;;;;;;;;;;;;;;;34884:357;;;:::o;35253:2507::-;-1:-1:-1;;;;;35354:20:0;;35346:70;;;;-1:-1:-1;;;35346:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35439:23:0;;35431:71;;;;-1:-1:-1;;;35431:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35534:1;35525:6;:10;35517:64;;;;-1:-1:-1;;;35517:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35605:25:0;;;;;;:17;:25;;;;;;;;35604:26;35596:58;;;;;-1:-1:-1;;;35596:58:0;;;;;;;;;;;;-1:-1:-1;;;35596:58:0;;;;;;;;;;;;;;;35696:10;35678:29;;;;:17;:29;;;;;;;;35677:30;35669:62;;;;;-1:-1:-1;;;35669:62:0;;;;;;;;;;;;-1:-1:-1;;;35669:62:0;;;;;;;;;;;;;;;35773:9;35755:28;;;;:17;:28;;;;;;;;35754:29;35746:61;;;;;-1:-1:-1;;;35746:61:0;;;;;;;;;;;;-1:-1:-1;;;35746:61:0;;;;;;;;;;;;;;;35835:7;:5;:7::i;:::-;-1:-1:-1;;;;;35825:17:0;:6;-1:-1:-1;;;;;35825:17:0;;;:41;;;;;35859:7;:5;:7::i;:::-;-1:-1:-1;;;;;35846:20:0;:9;-1:-1:-1;;;;;35846:20:0;;;35825:41;35822:156;;;35905:12;;35895:6;:22;;35887:75;;;;-1:-1:-1;;;35887:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36005:7;:5;:7::i;:::-;-1:-1:-1;;;;;35995:17:0;:6;-1:-1:-1;;;;;35995:17:0;;;:41;;;;;36029:7;:5;:7::i;:::-;-1:-1:-1;;;;;36016:20:0;:9;-1:-1:-1;;;;;36016:20:0;;;35995:41;:71;;;;;36053:13;-1:-1:-1;;;;;36040:26:0;:9;-1:-1:-1;;;;;36040:26:0;;;35995:71;:103;;;;-1:-1:-1;;;;;;36070:28:0;;36091:6;36070:28;;35995:103;35992:309;;;36119:29;36151:20;36161:9;36151;:20::i;:::-;36119:52;;36232:14;;36222:6;36198:21;:30;:48;;36190:95;;;;-1:-1:-1;;;36190:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35992:309;;36581:28;36612:24;36630:4;36612:9;:24::i;:::-;36581:55;;36680:12;;36656:20;:36;36653:124;;-1:-1:-1;36749:12:0;;36653:124;36893:6;;27382:13;36820:53;;;;-1:-1:-1;;;36893:6:0;;;;36892:7;:22;;;;-1:-1:-1;36903:11:0;;-1:-1:-1;;;36903:11:0;;;;36892:22;:45;;;;;36918:19;36892:45;:72;;;;;36951:13;-1:-1:-1;;;;;36941:23:0;:6;-1:-1:-1;;;;;36941:23:0;;;36892:72;36888:417;;;37056:38;37073:20;37056:16;:38::i;:::-;37144:21;37187:22;;37184:106;;37234:36;37248:21;37234:13;:36::i;:::-;36888:417;;-1:-1:-1;;;;;37513:26:0;;37386:12;37513:26;;;:18;:26;;;;;;37401:4;;37513:26;;;:59;;-1:-1:-1;;;;;;37543:29:0;;;;;;:18;:29;;;;;;;;37513:59;37510:113;;;-1:-1:-1;37602:5:0;37510:113;37701:47;37716:6;37723:9;37733:6;37740:7;37701:14;:47::i;:::-;35253:2507;;;;;;:::o;4674:208::-;4760:7;4800:12;4792:6;;;;4784:29;;;;-1:-1:-1;;;4784:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4840:5:0;;;4674:208::o;44341:175::-;44382:7;44407:15;44424;44443:19;:17;:19::i;:::-;44406:56;;-1:-1:-1;44406:56:0;-1:-1:-1;44484:20:0;44406:56;;44484:11;:20::i;:::-;44477:27;;;;44341:175;:::o;6204:140::-;6262:7;6293:39;6297:1;6300;6293:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6286:46;6204:140;-1:-1:-1;;;6204:140:0:o;3677:197::-;3735:7;3771:5;;;3799:6;;;;3791:46;;;;;-1:-1:-1;;;3791:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;43034:467;43093:7;43102;43111;43120;43129;43138;43159:23;43184:12;43198:13;43215:39;43227:7;43236;;43245:8;;43215:11;:39::i;:::-;43158:96;;;;;;43265:19;43287:10;:8;:10::i;:::-;43265:32;;43309:15;43326:23;43351:12;43367:46;43379:7;43388:4;43394:5;43401:11;43367;:46::i;:::-;43308:105;;-1:-1:-1;43308:105:0;-1:-1:-1;43308:105:0;-1:-1:-1;43464:15:0;;-1:-1:-1;43481:4:0;;-1:-1:-1;43487:5:0;;-1:-1:-1;;;;;43034:467:0;;;;;;;:::o;4192:144::-;4250:7;4281:43;4285:1;4288;4281:43;;;;;;;;;;;;;;;;;:3;:43::i;37772:656::-;27746:6;:13;;-1:-1:-1;;;;27746:13:0;-1:-1:-1;;;27746:13:0;;;37941:16:::1;::::0;;37955:1:::1;37941:16:::0;;;37917:21:::1;37941:16:::0;;::::1;::::0;;37917:21;37941:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;37941:16:0::1;37917:40;;37990:4;37972;37977:1;37972:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;37972:23:0::1;;;-1:-1:-1::0;;;;;37972:23:0::1;;;::::0;::::1;38020:15;-1:-1:-1::0;;;;;38020:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;38020:22:0;38010:7;;:4;;38015:1:::1;::::0;38010:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;38010:32:0::1;;;-1:-1:-1::0;;;;;38010:32:0::1;;;::::0;::::1;38059:62;38076:4;38091:15;38109:11;38059:8;:62::i;:::-;38168:15;-1:-1:-1::0;;;;;38168:66:0::1;;38253:11;38283:1;38331:4;38362;38386:15;38168:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;38168:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;27790:6:0;:14;;-1:-1:-1;;;;27790:14:0;;;-1:-1:-1;;;;37772:656:0:o;38440:185::-;38502:17;;-1:-1:-1;;;;;38502:17:0;:41;38529:13;:6;38540:1;38529:10;:13::i;:::-;38502:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38558:23:0;;-1:-1:-1;;;;;38558:23:0;:55;38591:21;38610:1;38591:14;:6;38602:2;38591:10;:14::i;:::-;:18;;:21::i;:::-;38558:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39115:883;39231:7;39227:44;;39257:14;:12;:14::i;:::-;-1:-1:-1;;;;;39292:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;39316:22:0;;;;;;:11;:22;;;;;;;;39315:23;39292:46;39288:637;;;39359:48;39381:6;39389:9;39400:6;39359:21;:48::i;:::-;39288:637;;;-1:-1:-1;;;;;39434:19:0;;;;;;:11;:19;;;;;;;;39433:20;:46;;;;-1:-1:-1;;;;;;39457:22:0;;;;;;:11;:22;;;;;;;;39433:46;39429:496;;;39500:46;39520:6;39528:9;39539:6;39500:19;:46::i;39429:496::-;-1:-1:-1;;;;;39573:19:0;;;;;;:11;:19;;;;;;;;39572:20;:47;;;;-1:-1:-1;;;;;;39597:22:0;;;;;;:11;:22;;;;;;;;39596:23;39572:47;39568:357;;;39640:44;39658:6;39666:9;39677:6;39640:17;:44::i;39568:357::-;-1:-1:-1;;;;;39710:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;39733:22:0;;;;;;:11;:22;;;;;;;;39710:45;39706:219;;;39776:48;39798:6;39806:9;39817:6;39776:21;:48::i;39706:219::-;39865:44;39883:6;39891:9;39902:6;39865:17;:44::i;:::-;39945:7;39941:45;;39971:15;:13;:15::i;:::-;39115:883;;;;:::o;44528:595::-;44629:7;;44578;;;;26491:19;44578:7;44691:305;44715:9;:16;44711:20;;44691:305;;;44785:7;44761;:21;44769:9;44779:1;44769:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44769:12:0;44761:21;;;;;;;;;;;;;:31;;:66;;;44820:7;44796;:21;44804:9;44814:1;44804:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44804:12:0;44796:21;;;;;;;;;;;;;:31;44761:66;44757:97;;;44837:7;;26491:19;44829:25;;;;;;;;;44757:97;44883:34;44895:7;:21;44903:9;44913:1;44903:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44903:12:0;44895:21;;;;;;;;;;;;;44883:7;;:11;:34::i;:::-;44873:44;;44946:34;44958:7;:21;44966:9;44976:1;44966:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44966:12:0;44958:21;;;;;;;;;;;;;44946:7;;:11;:34::i;:::-;44936:44;-1:-1:-1;44733:3:0;;44691:305;;;-1:-1:-1;45024:7:0;;:20;;26491:19;45024:11;:20::i;:::-;45014:7;:30;45010:61;;;45054:7;;26491:19;45046:25;;;;;;;;45010:61;45094:7;;-1:-1:-1;45103:7:0;-1:-1:-1;44528:595:0;;;:::o;6881:298::-;6967:7;7006:12;6999:5;6991:28;;;;-1:-1:-1;;;6991:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7034:9;7050:1;7046;:5;;;;;;;6881:298;-1:-1:-1;;;;;6881:298:0:o;43513:371::-;43606:7;;;;43663:28;43687:3;43663:19;:7;43675:6;43663:11;:19::i;:::-;:23;;:28::i;:::-;43648:43;-1:-1:-1;43706:13:0;43722:29;43747:3;43722:20;:7;43734;43722:11;:20::i;:29::-;43706:45;-1:-1:-1;43766:23:0;43792:28;43706:45;43792:17;:7;43804:4;43792:11;:17::i;:::-;:21;;:28::i;:::-;43766:54;43860:4;;-1:-1:-1;43866:5:0;;-1:-1:-1;43513:371:0;;-1:-1:-1;;;;;43513:371:0:o;43896:433::-;44006:7;;;;44066:24;:7;44078:11;44066;:24::i;:::-;44048:42;-1:-1:-1;44105:12:0;44120:21;:4;44129:11;44120:8;:21::i;:::-;44105:36;-1:-1:-1;44156:13:0;44172:22;:5;44182:11;44172:9;:22::i;:::-;44156:38;-1:-1:-1;44209:23:0;44235:28;44156:38;44235:17;:7;44247:4;44235:11;:17::i;:28::-;44286:7;;;;-1:-1:-1;44312:4:0;;-1:-1:-1;43896:433:0;;-1:-1:-1;;;;;;;43896:433:0:o;5176:511::-;5234:7;5495:6;5491:55;;-1:-1:-1;5529:1:0;5522:8;;5491:55;5574:5;;;5578:1;5574;:5;:1;5602:5;;;;;:10;5594:56;;;;-1:-1:-1;;;5594:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34352:238;34402:7;;:12;:29;;;;-1:-1:-1;34418:8:0;;:13;34402:29;34399:41;;;34433:7;;34399:41;34474:7;;;34456:15;:25;34515:8;;;34496:16;:27;-1:-1:-1;34540:11:0;;;;34566:12;34352:238;:::o;41141:580::-;41248:15;41265:23;41290:12;41304:23;41329:12;41343:13;41360:19;41371:7;41360:10;:19::i;:::-;-1:-1:-1;;;;;41412:15:0;;;;;;:7;:15;;;;;;41247:132;;-1:-1:-1;41247:132:0;;-1:-1:-1;41247:132:0;;-1:-1:-1;41247:132:0;-1:-1:-1;41247:132:0;-1:-1:-1;41247:132:0;-1:-1:-1;41412:28:0;;41432:7;41412:19;:28::i;:::-;-1:-1:-1;;;;;41394:15:0;;;;;;:7;:15;;;;;;;;:46;;;;41473:7;:15;;;;:28;;41493:7;41473:19;:28::i;:::-;-1:-1:-1;;;;;41455:15:0;;;;;;;:7;:15;;;;;;:46;;;;41537:18;;;;;;;:39;;41560:15;41537:22;:39::i;:::-;-1:-1:-1;;;;;41516:18:0;;;;;;:7;:18;;;;;:60;41591:16;41601:5;41591:9;:16::i;:::-;41622:23;41634:4;41640;41622:11;:23::i;:::-;41682:9;-1:-1:-1;;;;;41665:44:0;41674:6;-1:-1:-1;;;;;41665:44:0;;41693:15;41665:44;;;;;;;;;;;;;;;;;;41141:580;;;;;;;;;:::o;40537:592::-;40642:15;40659:23;40684:12;40698:23;40723:12;40737:13;40754:19;40765:7;40754:10;:19::i;:::-;-1:-1:-1;;;;;40806:15:0;;;;;;:7;:15;;;;;;40641:132;;-1:-1:-1;40641:132:0;;-1:-1:-1;40641:132:0;;-1:-1:-1;40641:132:0;-1:-1:-1;40641:132:0;-1:-1:-1;40641:132:0;-1:-1:-1;40806:28:0;;40641:132;40806:19;:28::i;:::-;-1:-1:-1;;;;;40788:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;40870:18;;;;;:7;:18;;;;;:39;;40893:15;40870:22;:39::i;:::-;-1:-1:-1;;;;;40849:18:0;;;;;;:7;:18;;;;;;;;:60;;;;40945:7;:18;;;;:39;;40968:15;40945:22;:39::i;40010:515::-;40113:15;40130:23;40155:12;40169:23;40194:12;40208:13;40225:19;40236:7;40225:10;:19::i;:::-;-1:-1:-1;;;;;40277:15:0;;;;;;:7;:15;;;;;;40112:132;;-1:-1:-1;40112:132:0;;-1:-1:-1;40112:132:0;;-1:-1:-1;40112:132:0;-1:-1:-1;40112:132:0;-1:-1:-1;40112:132:0;-1:-1:-1;40277:28:0;;40112:132;40277:19;:28::i;41733:655::-;41840:15;41857:23;41882:12;41896:23;41921:12;41935:13;41952:19;41963:7;41952:10;:19::i;:::-;-1:-1:-1;;;;;42004:15:0;;;;;;:7;:15;;;;;;41839:132;;-1:-1:-1;41839:132:0;;-1:-1:-1;41839:132:0;;-1:-1:-1;41839:132:0;-1:-1:-1;41839:132:0;-1:-1:-1;41839:132:0;-1:-1:-1;42004:28:0;;42024:7;42004:19;:28::i;:::-;-1:-1:-1;;;;;41986:15:0;;;;;;:7;:15;;;;;;;;:46;;;;42065:7;:15;;;;:28;;42085:7;42065:19;:28::i;34602:127::-;34660:15;;34650:7;:25;34701:16;;34690:8;:27;34602:127::o;42400:349::-;42457:19;42480:10;:8;:10::i;:::-;42457:33;-1:-1:-1;42505:13:0;42521:22;:5;42457:33;42521:9;:22::i;:::-;42599:4;42583:22;;;;:7;:22;;;;;;42505:38;;-1:-1:-1;42583:33:0;;42505:38;42583:26;:33::i;:::-;42574:4;42558:22;;;;:7;:22;;;;;;;;:58;;;;42634:11;:26;;;;;;42631:106;;;42720:4;42704:22;;;;:7;:22;;;;;;:33;;42731:5;42704:26;:33::i;:::-;42695:4;42679:22;;;;:7;:22;;;;;:58;42631:106;42400:349;;;:::o;42761:159::-;42843:7;;:17;;42855:4;42843:11;:17::i;:::-;42833:7;:27;42888:10;;:20;;42903:4;42888:14;:20::i;:::-;42875:10;:33;-1:-1:-1;;42761:159:0:o

Swarm Source

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