ETH Price: $2,556.26 (+4.84%)

Token

DOGEBALL (DBALL)
 

Overview

Max Total Supply

10,000,000 DBALL

Holders

26

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
Dogeball

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-16
*/

// https://t.me/Dogeball_Official

// File: openzeppelin-solidity\contracts\GSN\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

interface IUniswapV2Router {
    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 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;

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

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address 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;
    }
}

// File: openzeppelin-solidity\contracts\token\ERC20\IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity\contracts\math\SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: openzeppelin-solidity\contracts\utils\Address.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;

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

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

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

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

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

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

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

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

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

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

// File: openzeppelin-solidity\contracts\access\Ownable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

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

pragma solidity ^0.6.2;

contract Dogeball is Context, IERC20, Ownable {
    
    /*
     * @dev Event emitted when fees are taken
     * @param from: The address fees were taken from
     * @param amount: The amount of fees taken
     */
    event FeesTaken(address from, uint256 amount);
    
    /**
     * @dev Event emitted when fees are distributed
     * @param amount: The amount of fees distributed
     */
    event FeesDistributed(uint256 amount);
    
    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 _isExcluded;
    address[] private _excluded;

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

    string private _name = 'DOGEBALL';
    string private _symbol = 'DBALL';
    uint8 private _decimals = 9;
    
    // The uniswap v2 router
    IUniswapV2Router private _uniswapV2Router;
    // The waalet all fees for marketing gets sent to
    address private _marketingWallet;
    
    // Store to exclude from fees if needed
    bool private _inFeeTransfer;
    bool private _inDistribution;

    constructor () public {
        _uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(_uniswapV2Router), MAX);
        _rOwned[_msgSender()] = _rTotal;
        _isExcluded[address(this)] = true;
        _marketingWallet = address(0);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _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);
    }
    
    /**
     * @dev Function that returns how much the fee will be for tokens
     * 4% Fee which is then split using distribute()
     * @param amount: The amount of tokens
     * @return The fee
     */
    function feeFor(uint256 amount) internal pure returns (uint256) {
        return amount.div(25);
    }
    
    /**
     * @dev Function that takes the fee from a transfer
     * Emits FeesTaken()
     * @param from: Who to take the fee from
     * @param amount: The amount of tokens being _transferFromExcluded
     * Returns The amount of fees
     */
    function takeFee(address from, uint256 amount) internal returns (uint256 fee){
        fee = feeFor(amount);
        _inFeeTransfer = true;
        _transfer(from, address(this), fee);
        delete _inFeeTransfer;
        emit FeesTaken(from, fee);
    }
    
    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");

	// 0.25% transaction limit
	require(_transactionLimit || amount <= 10.0e13 || sender == owner(), "Transaction limit hit");

        /// @dev If its a distribution or fee transfer, don't take fees
        if (!_inDistribution && !_inFeeTransfer){
            uint256 fee = takeFee(sender, amount);
            amount -= fee;
        }
        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);
        }
    }

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

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }
    
    /// @dev Allow to recieve ETH when fees are getting distributed
    receive() external payable { require(_inDistribution, "Only In Distribution");}
    
    /** 
     * @dev Sends fees to marketing wallet and adds LP
     * Only the marketing wallet can call this
     * Emits FeesDistributed()
     * @param amountOutMin: The minimum amount of eth to get from the token=>eth swap
     */
    function distribute(uint256 amountOutMin) external {
        require(_msgSender() == _marketingWallet, "Only the marketing wallet can call this");
        _inDistribution = true;
        /// @dev Get 2.5% from the total, normally total / 1.6 but not possible in solidity so has to multiply * 10 then / 1.6
        uint256 _totalFees = balanceOf(address(this));
        uint256 _toLP = _totalFees.mul(10).div(16);
        /// @dev 1.5% from total
        uint256 toMarketingWallet = _totalFees.sub(_toLP);
        uint256 split = _toLP.div(2);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(toMarketingWallet + split, amountOutMin, path, address(this), block.timestamp);
        uint256 toLP = (address(this).balance / 3);
        _uniswapV2Router.addLiquidityETH{value: toLP}(address(this), split, 0, 0, address(0x000000000000000000000000000000000000dEaD), block.timestamp);
        // Send marketing wallet + left overs
        (bool success,) = _marketingWallet.call{value: address(this).balance}(new bytes(0));
        require(success, "Transfer to marketing wallet failed");
        // Any left over tokens that wasn't added to LP
        if (balanceOf(address(this)) != 0){
            _transfer(address(this), _marketingWallet, balanceOf(address(this)));
        }
        delete _inDistribution;
        emit FeesDistributed(_totalFees);
    }

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

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        // Calculate fee from total as tAmount would be total - fees
        uint256 tFee = tAmount.add(tAmount.div(24)).div(50);
        // if its a transfer of fees, or a distribution of them. the fees are none
        if (_inFeeTransfer || _inDistribution) {
            tFee = 0;
        }
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

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

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }
    
    /**
     * @return The marketing wallet
     */
    function marketingWallet() external view returns (address) {
        return _marketingWallet;
    }
    
    /**
     * @dev Function to change the marketing wallet, only by the Owner
     * @param newMarketingWallet: The new marketing wallet
     */
    function setMarketingWallet(address newMarketingWallet) external onlyOwner {
        _marketingWallet = newMarketingWallet;
    }

    /**
      * @dev Sets the transaction limit on or off, 0.25% limit
      * @param setTo: On / Off
      */
    function setTransactionLimit(bool setTo) external onlyOwner {
	_transactionLimit = setTo;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeesDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeesTaken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOutMin","type":"uint256"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"setTo","type":"bool"}],"name":"setTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052662386f26fc10000600019816200001757fe5b06600019036007556040518060400160405280600881526020017f444f474542414c4c000000000000000000000000000000000000000000000000815250600990805190602001906200006c92919062000595565b506040518060400160405280600581526020017f4442414c4c000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000ba92919062000595565b506009600b60006101000a81548160ff021916908360ff160217905550348015620000e457600080fd5b506000620000f76200039260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350737a250d5630b4cf539739df2c5dacb4c659f2488d600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200022130600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196200039a60201b60201c565b60075460016000620002386200039260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003206200039260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef662386f26fc100006040518082815260200191505060405180910390a362000644565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000422576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180620048866024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620048646022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005d857805160ff191683800117855562000609565b8280016001018555821562000609579182015b8281111562000608578251825591602001919060010190620005eb565b5b5090506200061891906200061c565b5090565b6200064191905b808211156200063d57600081600090555060010162000623565b5090565b90565b61421080620006546000396000f3fe60806040526004361061016a5760003560e01c8063715018a6116100d1578063a457c2d71161008a578063dd62ed3e11610064578063dd62ed3e1461093f578063f2cc0c18146109c4578063f2fde38b14610a15578063f84354f114610a66576101f3565b8063a457c2d7146107f0578063a9059cbb14610863578063cba0e996146108d6576101f3565b8063715018a61461062357806375f0a8741461063a5780638da5cb5b1461069157806391c05b0b146106e857806395d89b41146107235780639f660fe1146107b3576101f3565b80632d838119116101235780632d8381191461041f578063313ce5671461046e578063395093511461049f5780634549b039146105125780635d098b381461056d57806370a08231146105be576101f3565b8063053ab182146101f857806306fdde0314610233578063095ea7b3146102c357806313114a9d1461033657806318160ddd1461036157806323b872dd1461038c576101f3565b366101f357600c60159054906101000a900460ff166101f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4f6e6c7920496e20446973747269627574696f6e00000000000000000000000081525060200191505060405180910390fd5b005b600080fd5b34801561020457600080fd5b506102316004803603602081101561021b57600080fd5b8101908080359060200190929190505050610ab7565b005b34801561023f57600080fd5b50610248610c47565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028857808201518184015260208101905061026d565b50505050905090810190601f1680156102b55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cf57600080fd5b5061031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce9565b604051808215151515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610d07565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610d11565b6040518082815260200191505060405180910390f35b34801561039857600080fd5b50610405600480360360608110156103af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d20565b604051808215151515815260200191505060405180910390f35b34801561042b57600080fd5b506104586004803603602081101561044257600080fd5b8101908080359060200190929190505050610df9565b6040518082815260200191505060405180910390f35b34801561047a57600080fd5b50610483610e7d565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104ab57600080fd5b506104f8600480360360408110156104c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e94565b604051808215151515815260200191505060405180910390f35b34801561051e57600080fd5b506105576004803603604081101561053557600080fd5b8101908080359060200190929190803515159060200190929190505050610f47565b6040518082815260200191505060405180910390f35b34801561057957600080fd5b506105bc6004803603602081101561059057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611001565b005b3480156105ca57600080fd5b5061060d600480360360208110156105e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061110e565b6040518082815260200191505060405180910390f35b34801561062f57600080fd5b506106386111f9565b005b34801561064657600080fd5b5061064f611381565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069d57600080fd5b506106a66113ab565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106f457600080fd5b506107216004803603602081101561070b57600080fd5b81019080803590602001909291905050506113d4565b005b34801561072f57600080fd5b50610738611ade565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077857808201518184015260208101905061075d565b50505050905090810190601f1680156107a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107bf57600080fd5b506107ee600480360360208110156107d657600080fd5b81019080803515159060200190929190505050611b80565b005b3480156107fc57600080fd5b506108496004803603604081101561081357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c66565b604051808215151515815260200191505060405180910390f35b34801561086f57600080fd5b506108bc6004803603604081101561088657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d33565b604051808215151515815260200191505060405180910390f35b3480156108e257600080fd5b50610925600480360360208110156108f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d51565b604051808215151515815260200191505060405180910390f35b34801561094b57600080fd5b506109ae6004803603604081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da7565b6040518082815260200191505060405180910390f35b3480156109d057600080fd5b50610a13600480360360208110156109e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e2e565b005b348015610a2157600080fd5b50610a6460048036036020811015610a3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612149565b005b348015610a7257600080fd5b50610ab560048036036020811015610a8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612356565b005b6000610ac16126e4565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061418a602c913960400191505060405180910390fd5b6000610b71836126ec565b505050509050610bc981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c218160075461274490919063ffffffff16565b600781905550610c3c8360085461278e90919063ffffffff16565b600881905550505050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b6000610cfd610cf66126e4565b8484612816565b6001905092915050565b6000600854905090565b6000662386f26fc10000905090565b6000610d2d848484612a0d565b610dee84610d396126e4565b610de9856040518060600160405280602881526020016140f060289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d9f6126e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f7a9092919063ffffffff16565b612816565b600190509392505050565b6000600754821115610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614013602a913960400191505060405180910390fd5b6000610e6061303a565b9050610e75818461306590919063ffffffff16565b915050919050565b6000600b60009054906101000a900460ff16905090565b6000610f3d610ea16126e4565b84610f388560036000610eb26126e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b612816565b6001905092915050565b6000662386f26fc10000831115610fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610fe5576000610fd6846126ec565b50505050905080915050610ffb565b6000610ff0846126ec565b505050915050809150505b92915050565b6110096126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111a957600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506111f4565b6111f1600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df9565b90505b919050565b6112016126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114156126e4565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806140856027913960400191505060405180910390fd5b6001600c60156101000a81548160ff02191690831515021790555060006114a73061110e565b905060006114d260106114c4600a856130af90919063ffffffff16565b61306590919063ffffffff16565b905060006114e9828461274490919063ffffffff16565b9050600061150160028461306590919063ffffffff16565b9050606060026040519080825280602002602001820160405280156115355781602001602082028038833980820191505090505b509050308160008151811061154657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156115e857600080fd5b505afa1580156115fc573d6000803e3d6000fd5b505050506040513d602081101561161257600080fd5b81019080805190602001909291905050508160018151811061163057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947838501888430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561174557808201518184015260208101905061172a565b505050509050019650505050505050600060405180830381600087803b15801561176e57600080fd5b505af1158015611782573d6000803e3d6000fd5b5050505060006003478161179257fe5b049050600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308660008061dead426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561188d57600080fd5b505af11580156118a1573d6000803e3d6000fd5b50505050506040513d60608110156118b857600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760006040519080825280601f01601f1916602001820160405280156119505781602001600182028038833980820191505090505b506040518082805190602001908083835b602083106119845780518252602082019150602081019050602083039250611961565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146119e6576040519150601f19603f3d011682016040523d82523d6000602084013e6119eb565b606091505b5050905080611a45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806140ac6023913960400191505060405180910390fd5b6000611a503061110e565b14611a8b57611a8a30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a853061110e565b612a0d565b5b600c60156101000a81549060ff02191690557f8959421a1320789a49eeec01a4750caf8a30733c3db14f000d84484df89300f9876040518082815260200191505060405180910390a15050505050505050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b765780601f10611b4b57610100808354040283529160200191611b76565b820191906000526020600020905b815481529060010190602001808311611b5957829003601f168201915b5050505050905090565b611b886126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b6000611d29611c736126e4565b84611d24856040518060600160405280602581526020016141b66025913960036000611c9d6126e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f7a9092919063ffffffff16565b612816565b6001905092915050565b6000611d47611d406126e4565b8484612a0d565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e366126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561208b57612047600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df9565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6121516126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061403d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61235e6126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461241f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60008090505b6005805490508110156126e0578173ffffffffffffffffffffffffffffffffffffffff166005828154811061251557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126d35760056001600580549050038154811061257157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600582815481106125a957fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600580548061269957fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556126e0565b80806001019150506124e4565b5050565b600033905090565b600080600080600080600061270088613135565b91509150600061270e61303a565b905060008060006127208c86866131ca565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600061278683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f7a565b905092915050565b60008082840190508381101561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561289c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806141666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806140636022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806141416025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613ff06023913960400191505060405180910390fd5b60008111612b72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141186029913960400191505060405180910390fd5b600660009054906101000a900460ff1680612b935750655af3107a40008111155b80612bd05750612ba16113ab565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b612c42576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5472616e73616374696f6e206c696d697420686974000000000000000000000081525060200191505060405180910390fd5b600c60159054906101000a900460ff16158015612c6c5750600c60149054906101000a900460ff16155b15612c86576000612c7d8483613228565b90508082039150505b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d295750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3e57612d398383836132de565b612f75565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612de15750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612df657612df1838383613531565b612f74565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e9a5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612eaf57612eaa838383613784565b612f73565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f515750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f6657612f61838383613942565b612f72565b612f71838383613784565b5b5b5b5b505050565b6000838311158290613027576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612fec578082015181840152602081019050612fd1565b50505050905090810190601f1680156130195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613047613c2a565b9150915061305e818361306590919063ffffffff16565b9250505090565b60006130a783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ed2565b905092915050565b6000808314156130c2576000905061312f565b60008284029050828482816130d357fe5b041461312a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140cf6021913960400191505060405180910390fd5b809150505b92915050565b6000806000613173603261316561315660188861306590919063ffffffff16565b8761278e90919063ffffffff16565b61306590919063ffffffff16565b9050600c60149054906101000a900460ff168061319c5750600c60159054906101000a900460ff165b156131a657600090505b60006131bb828661274490919063ffffffff16565b90508082935093505050915091565b6000806000806131e385886130af90919063ffffffff16565b905060006131fa86886130af90919063ffffffff16565b90506000613211828461274490919063ffffffff16565b905082818395509550955050505093509350939050565b600061323382613f98565b90506001600c60146101000a81548160ff02191690831515021790555061325b833083612a0d565b600c60146101000a81549060ff02191690557f771ed2e42c9e4d72a2a8cb34c02a7ec4a2b63f52248fdd826a228b4a3e01c5648382604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a192915050565b60008060008060006132ef866126ec565b9450945094509450945061334b86600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133e085600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061347584600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134c28382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613542866126ec565b9450945094509450945061359e85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061363382600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136c884600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137158382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613795866126ec565b945094509450945094506137f185600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061388684600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d38382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613953866126ec565b945094509450945094506139af86600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a4485600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ad982600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b6e84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bbb8382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600060075490506000662386f26fc10000905060008090505b600580549050811015613e8b57826001600060058481548110613c6557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613d4c5750816002600060058481548110613ce457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613d6857600754662386f26fc1000094509450505050613ece565b613df16001600060058481548110613d7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461274490919063ffffffff16565b9250613e7c6002600060058481548110613e0757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361274490919063ffffffff16565b91508080600101915050613c46565b50613ea8662386f26fc1000060075461306590919063ffffffff16565b821015613ec557600754662386f26fc10000935093505050613ece565b81819350935050505b9091565b60008083118290613f7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f43578082015181840152602081019050613f28565b50505050905090810190601f168015613f705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613f8a57fe5b049050809150509392505050565b6000613fae60198361306590919063ffffffff16565b9050919050565b613fca8260075461274490919063ffffffff16565b600781905550613fe58160085461278e90919063ffffffff16565b600881905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f6e6c7920746865206d61726b6574696e672077616c6c65742063616e2063616c6c20746869735472616e7366657220746f206d61726b6574696e672077616c6c6574206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200fa7e16672a5293396321ecd1e4da8dafd748cb702a1d4b218c2a57c8b593ad364736f6c6343000602003345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373

Deployed Bytecode

0x60806040526004361061016a5760003560e01c8063715018a6116100d1578063a457c2d71161008a578063dd62ed3e11610064578063dd62ed3e1461093f578063f2cc0c18146109c4578063f2fde38b14610a15578063f84354f114610a66576101f3565b8063a457c2d7146107f0578063a9059cbb14610863578063cba0e996146108d6576101f3565b8063715018a61461062357806375f0a8741461063a5780638da5cb5b1461069157806391c05b0b146106e857806395d89b41146107235780639f660fe1146107b3576101f3565b80632d838119116101235780632d8381191461041f578063313ce5671461046e578063395093511461049f5780634549b039146105125780635d098b381461056d57806370a08231146105be576101f3565b8063053ab182146101f857806306fdde0314610233578063095ea7b3146102c357806313114a9d1461033657806318160ddd1461036157806323b872dd1461038c576101f3565b366101f357600c60159054906101000a900460ff166101f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4f6e6c7920496e20446973747269627574696f6e00000000000000000000000081525060200191505060405180910390fd5b005b600080fd5b34801561020457600080fd5b506102316004803603602081101561021b57600080fd5b8101908080359060200190929190505050610ab7565b005b34801561023f57600080fd5b50610248610c47565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028857808201518184015260208101905061026d565b50505050905090810190601f1680156102b55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102cf57600080fd5b5061031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ce9565b604051808215151515815260200191505060405180910390f35b34801561034257600080fd5b5061034b610d07565b6040518082815260200191505060405180910390f35b34801561036d57600080fd5b50610376610d11565b6040518082815260200191505060405180910390f35b34801561039857600080fd5b50610405600480360360608110156103af57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d20565b604051808215151515815260200191505060405180910390f35b34801561042b57600080fd5b506104586004803603602081101561044257600080fd5b8101908080359060200190929190505050610df9565b6040518082815260200191505060405180910390f35b34801561047a57600080fd5b50610483610e7d565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104ab57600080fd5b506104f8600480360360408110156104c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e94565b604051808215151515815260200191505060405180910390f35b34801561051e57600080fd5b506105576004803603604081101561053557600080fd5b8101908080359060200190929190803515159060200190929190505050610f47565b6040518082815260200191505060405180910390f35b34801561057957600080fd5b506105bc6004803603602081101561059057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611001565b005b3480156105ca57600080fd5b5061060d600480360360208110156105e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061110e565b6040518082815260200191505060405180910390f35b34801561062f57600080fd5b506106386111f9565b005b34801561064657600080fd5b5061064f611381565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069d57600080fd5b506106a66113ab565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156106f457600080fd5b506107216004803603602081101561070b57600080fd5b81019080803590602001909291905050506113d4565b005b34801561072f57600080fd5b50610738611ade565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077857808201518184015260208101905061075d565b50505050905090810190601f1680156107a55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107bf57600080fd5b506107ee600480360360208110156107d657600080fd5b81019080803515159060200190929190505050611b80565b005b3480156107fc57600080fd5b506108496004803603604081101561081357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c66565b604051808215151515815260200191505060405180910390f35b34801561086f57600080fd5b506108bc6004803603604081101561088657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611d33565b604051808215151515815260200191505060405180910390f35b3480156108e257600080fd5b50610925600480360360208110156108f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d51565b604051808215151515815260200191505060405180910390f35b34801561094b57600080fd5b506109ae6004803603604081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611da7565b6040518082815260200191505060405180910390f35b3480156109d057600080fd5b50610a13600480360360208110156109e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e2e565b005b348015610a2157600080fd5b50610a6460048036036020811015610a3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612149565b005b348015610a7257600080fd5b50610ab560048036036020811015610a8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612356565b005b6000610ac16126e4565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061418a602c913960400191505060405180910390fd5b6000610b71836126ec565b505050509050610bc981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c218160075461274490919063ffffffff16565b600781905550610c3c8360085461278e90919063ffffffff16565b600881905550505050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610cdf5780601f10610cb457610100808354040283529160200191610cdf565b820191906000526020600020905b815481529060010190602001808311610cc257829003601f168201915b5050505050905090565b6000610cfd610cf66126e4565b8484612816565b6001905092915050565b6000600854905090565b6000662386f26fc10000905090565b6000610d2d848484612a0d565b610dee84610d396126e4565b610de9856040518060600160405280602881526020016140f060289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610d9f6126e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f7a9092919063ffffffff16565b612816565b600190509392505050565b6000600754821115610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614013602a913960400191505060405180910390fd5b6000610e6061303a565b9050610e75818461306590919063ffffffff16565b915050919050565b6000600b60009054906101000a900460ff16905090565b6000610f3d610ea16126e4565b84610f388560036000610eb26126e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b612816565b6001905092915050565b6000662386f26fc10000831115610fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b81610fe5576000610fd6846126ec565b50505050905080915050610ffb565b6000610ff0846126ec565b505050915050809150505b92915050565b6110096126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111a957600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506111f4565b6111f1600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df9565b90505b919050565b6112016126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114156126e4565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806140856027913960400191505060405180910390fd5b6001600c60156101000a81548160ff02191690831515021790555060006114a73061110e565b905060006114d260106114c4600a856130af90919063ffffffff16565b61306590919063ffffffff16565b905060006114e9828461274490919063ffffffff16565b9050600061150160028461306590919063ffffffff16565b9050606060026040519080825280602002602001820160405280156115355781602001602082028038833980820191505090505b509050308160008151811061154657fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156115e857600080fd5b505afa1580156115fc573d6000803e3d6000fd5b505050506040513d602081101561161257600080fd5b81019080805190602001909291905050508160018151811061163057fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947838501888430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561174557808201518184015260208101905061172a565b505050509050019650505050505050600060405180830381600087803b15801561176e57600080fd5b505af1158015611782573d6000803e3d6000fd5b5050505060006003478161179257fe5b049050600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308660008061dead426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561188d57600080fd5b505af11580156118a1573d6000803e3d6000fd5b50505050506040513d60608110156118b857600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760006040519080825280601f01601f1916602001820160405280156119505781602001600182028038833980820191505090505b506040518082805190602001908083835b602083106119845780518252602082019150602081019050602083039250611961565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146119e6576040519150601f19603f3d011682016040523d82523d6000602084013e6119eb565b606091505b5050905080611a45576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806140ac6023913960400191505060405180910390fd5b6000611a503061110e565b14611a8b57611a8a30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611a853061110e565b612a0d565b5b600c60156101000a81549060ff02191690557f8959421a1320789a49eeec01a4750caf8a30733c3db14f000d84484df89300f9876040518082815260200191505060405180910390a15050505050505050565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b765780601f10611b4b57610100808354040283529160200191611b76565b820191906000526020600020905b815481529060010190602001808311611b5957829003601f168201915b5050505050905090565b611b886126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b6000611d29611c736126e4565b84611d24856040518060600160405280602581526020016141b66025913960036000611c9d6126e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f7a9092919063ffffffff16565b612816565b6001905092915050565b6000611d47611d406126e4565b8484612a0d565b6001905092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611e366126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ef7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611fb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561208b57612047600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610df9565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6121516126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061403d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61235e6126e4565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461241f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166124de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60008090505b6005805490508110156126e0578173ffffffffffffffffffffffffffffffffffffffff166005828154811061251557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126d35760056001600580549050038154811061257157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600582815481106125a957fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600580548061269957fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556126e0565b80806001019150506124e4565b5050565b600033905090565b600080600080600080600061270088613135565b91509150600061270e61303a565b905060008060006127208c86866131ca565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600061278683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f7a565b905092915050565b60008082840190508381101561280c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561289c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806141666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612922576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806140636022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a93576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806141416025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613ff06023913960400191505060405180910390fd5b60008111612b72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141186029913960400191505060405180910390fd5b600660009054906101000a900460ff1680612b935750655af3107a40008111155b80612bd05750612ba16113ab565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b612c42576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f5472616e73616374696f6e206c696d697420686974000000000000000000000081525060200191505060405180910390fd5b600c60159054906101000a900460ff16158015612c6c5750600c60149054906101000a900460ff16155b15612c86576000612c7d8483613228565b90508082039150505b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d295750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3e57612d398383836132de565b612f75565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612de15750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612df657612df1838383613531565b612f74565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612e9a5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612eaf57612eaa838383613784565b612f73565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f515750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f6657612f61838383613942565b612f72565b612f71838383613784565b5b5b5b5b505050565b6000838311158290613027576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612fec578082015181840152602081019050612fd1565b50505050905090810190601f1680156130195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000806000613047613c2a565b9150915061305e818361306590919063ffffffff16565b9250505090565b60006130a783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613ed2565b905092915050565b6000808314156130c2576000905061312f565b60008284029050828482816130d357fe5b041461312a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140cf6021913960400191505060405180910390fd5b809150505b92915050565b6000806000613173603261316561315660188861306590919063ffffffff16565b8761278e90919063ffffffff16565b61306590919063ffffffff16565b9050600c60149054906101000a900460ff168061319c5750600c60159054906101000a900460ff165b156131a657600090505b60006131bb828661274490919063ffffffff16565b90508082935093505050915091565b6000806000806131e385886130af90919063ffffffff16565b905060006131fa86886130af90919063ffffffff16565b90506000613211828461274490919063ffffffff16565b905082818395509550955050505093509350939050565b600061323382613f98565b90506001600c60146101000a81548160ff02191690831515021790555061325b833083612a0d565b600c60146101000a81549060ff02191690557f771ed2e42c9e4d72a2a8cb34c02a7ec4a2b63f52248fdd826a228b4a3e01c5648382604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a192915050565b60008060008060006132ef866126ec565b9450945094509450945061334b86600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133e085600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061347584600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134c28382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613542866126ec565b9450945094509450945061359e85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061363382600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136c884600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506137158382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613795866126ec565b945094509450945094506137f185600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061388684600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d38382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000613953866126ec565b945094509450945094506139af86600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a4485600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274490919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ad982600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b6e84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461278e90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613bbb8382613fb5565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600060075490506000662386f26fc10000905060008090505b600580549050811015613e8b57826001600060058481548110613c6557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180613d4c5750816002600060058481548110613ce457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15613d6857600754662386f26fc1000094509450505050613ece565b613df16001600060058481548110613d7c57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461274490919063ffffffff16565b9250613e7c6002600060058481548110613e0757fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361274490919063ffffffff16565b91508080600101915050613c46565b50613ea8662386f26fc1000060075461306590919063ffffffff16565b821015613ec557600754662386f26fc10000935093505050613ece565b81819350935050505b9091565b60008083118290613f7e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613f43578082015181840152602081019050613f28565b50505050905090810190601f168015613f705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581613f8a57fe5b049050809150509392505050565b6000613fae60198361306590919063ffffffff16565b9050919050565b613fca8260075461274490919063ffffffff16565b600781905550613fe58160085461278e90919063ffffffff16565b600881905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734f6e6c7920746865206d61726b6574696e672077616c6c65742063616e2063616c6c20746869735472616e7366657220746f206d61726b6574696e672077616c6c6574206661696c6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200fa7e16672a5293396321ecd1e4da8dafd748cb702a1d4b218c2a57c8b593ad364736f6c63430006020033

Deployed Bytecode Sourcemap

22765:15209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33475:15;;;;;;;;;;;33467:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22765:15209;;;;;26710:376;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26710:376:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26710:376:0;;;;;;;;;;;;;;;;;:::i;:::-;;24592:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24592:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;24592:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25504:161;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25504:161:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25504:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26615:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26615:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24869:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24869:95:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25673:313;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25673:313:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25673:313:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27536:253;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27536:253:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27536:253:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24778:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24778:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25994:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25994:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25994:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27094:434;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27094:434:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27094:434:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37051:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37051:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37051:131:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;24972:198;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24972:198:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24972:198:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22184:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22184:148:0;;;:::i;:::-;;36788:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36788:101:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;21542:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21542:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33771:1529;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33771:1529:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33771:1529:0;;;;;;;;;;;;;;;;;:::i;:::-;;24683:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24683:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;24683:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37305:97;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37305:97:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37305:97:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;26220:269;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26220:269:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26220:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25178:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25178:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25178:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26497:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26497:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26497:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25353:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25353:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25353:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27797:332;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27797:332:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27797:332:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;22487:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22487:244:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22487:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28137:478;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28137:478:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28137:478:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;26710:376;26762:14;26779:12;:10;:12::i;:::-;26762:29;;26811:11;:19;26823:6;26811:19;;;;;;;;;;;;;;;;;;;;;;;;;26810:20;26802:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26891:15;26914:19;26925:7;26914:10;:19::i;:::-;26890:43;;;;;;26962:28;26982:7;26962;:15;26970:6;26962:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;26944:7;:15;26952:6;26944:15;;;;;;;;;;;;;;;:46;;;;27011:20;27023:7;27011;;:11;;:20;;;;:::i;:::-;27001:7;:30;;;;27055:23;27070:7;27055:10;;:14;;:23;;;;:::i;:::-;27042:10;:36;;;;26710:376;;;:::o;24592:83::-;24629:13;24662:5;24655:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24592:83;:::o;25504:161::-;25579:4;25596:39;25605:12;:10;:12::i;:::-;25619:7;25628:6;25596:8;:39::i;:::-;25653:4;25646:11;;25504:161;;;;:::o;26615:87::-;26657:7;26684:10;;26677:17;;26615:87;:::o;24869:95::-;24922:7;23684:18;24942:14;;24869:95;:::o;25673:313::-;25771:4;25788:36;25798:6;25806:9;25817:6;25788:9;:36::i;:::-;25835:121;25844:6;25852:12;:10;:12::i;:::-;25866:89;25904:6;25866:89;;;;;;;;;;;;;;;;;:11;:19;25878:6;25866:19;;;;;;;;;;;;;;;:33;25886:12;:10;:12::i;:::-;25866:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;25835:8;:121::i;:::-;25974:4;25967:11;;25673:313;;;;;:::o;27536:253::-;27602:7;27641;;27630;:18;;27622:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27706:19;27729:10;:8;:10::i;:::-;27706:33;;27757:24;27769:11;27757:7;:11;;:24;;;;:::i;:::-;27750:31;;;27536:253;;;:::o;24778:83::-;24819:5;24844:9;;;;;;;;;;;24837:16;;24778:83;:::o;25994:218::-;26082:4;26099:83;26108:12;:10;:12::i;:::-;26122:7;26131:50;26170:10;26131:11;:25;26143:12;:10;:12::i;:::-;26131:25;;;;;;;;;;;;;;;:34;26157:7;26131:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;26099:8;:83::i;:::-;26200:4;26193:11;;25994:218;;;;:::o;27094:434::-;27184:7;23684:18;27212:7;:18;;27204:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27282:17;27277:244;;27317:15;27340:19;27351:7;27340:10;:19::i;:::-;27316:43;;;;;;27381:7;27374:14;;;;;27277:244;27423:23;27453:19;27464:7;27453:10;:19::i;:::-;27421:51;;;;;;27494:15;27487:22;;;27094:434;;;;;:::o;37051:131::-;21764:12;:10;:12::i;:::-;21754:22;;:6;;;;;;;;;;;:22;;;21746:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37156:18:::1;37137:16;;:37;;;;;;;;;;;;;;;;;;37051:131:::0;:::o;24972:198::-;25038:7;25062:11;:20;25074:7;25062:20;;;;;;;;;;;;;;;;;;;;;;;;;25058:49;;;25091:7;:16;25099:7;25091:16;;;;;;;;;;;;;;;;25084:23;;;;25058:49;25125:37;25145:7;:16;25153:7;25145:16;;;;;;;;;;;;;;;;25125:19;:37::i;:::-;25118:44;;24972:198;;;;:::o;22184:148::-;21764:12;:10;:12::i;:::-;21754:22;;:6;;;;;;;;;;;:22;;;21746:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22291:1:::1;22254:40;;22275:6;::::0;::::1;;;;;;;;;22254:40;;;;;;;;;;;;22322:1;22305:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;22184:148::o:0;36788:101::-;36838:7;36865:16;;;;;;;;;;;36858:23;;36788:101;:::o;21542:79::-;21580:7;21607:6;;;;;;;;;;;21600:13;;21542:79;:::o;33771:1529::-;33857:16;;;;;;;;;;;33841:32;;:12;:10;:12::i;:::-;:32;;;33833:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33946:4;33928:15;;:22;;;;;;;;;;;;;;;;;;34089:18;34110:24;34128:4;34110:9;:24::i;:::-;34089:45;;34145:13;34161:26;34184:2;34161:18;34176:2;34161:10;:14;;:18;;;;:::i;:::-;:22;;:26;;;;:::i;:::-;34145:42;;34232:25;34260:21;34275:5;34260:10;:14;;:21;;;;:::i;:::-;34232:49;;34292:13;34308:12;34318:1;34308:5;:9;;:12;;;;:::i;:::-;34292:28;;34331:21;34369:1;34355:16;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;34355:16:0;;;;34331:40;;34400:4;34382;34387:1;34382:7;;;;;;;;;;;;;:23;;;;;;;;;;;34426:16;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34426:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34426:23:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34426:23:0;;;;;;;;;;;;;;;;34416:4;34421:1;34416:7;;;;;;;;;;;;;:33;;;;;;;;;;;34460:16;;;;;;;;;;;:67;;;34548:5;34528:17;:25;34555:12;34569:4;34583;34590:15;34460:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;34460:146:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34460:146:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34460:146:0;;;;34617:12;34657:1;34633:21;:25;;;;;;34617:42;;34670:16;;;;;;;;;;;:32;;;34710:4;34724;34731:5;34738:1;34741;34752:42;34797:15;34670:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34670:143:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34670:143:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34670:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34872:12;34889:16;;;;;;;;;;;:21;;34918;34951:1;34941:12;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;34941:12:0;;;;34889:65;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;34889:65:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;34871:83:0;;;34973:7;34965:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35120:1;35092:24;35110:4;35092:9;:24::i;:::-;:29;35088:129;;35137:68;35155:4;35162:16;;;;;;;;;;;35180:24;35198:4;35180:9;:24::i;:::-;35137:9;:68::i;:::-;35088:129;35234:15;;35227:22;;;;;;;;;;;35265:27;35281:10;35265:27;;;;;;;;;;;;;;;;;;33771:1529;;;;;;;;:::o;24683:87::-;24722:13;24755:7;24748:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24683:87;:::o;37305:97::-;21764:12;:10;:12::i;:::-;21754:22;;:6;;;;;;;;;;;:22;;;21746:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37389:5:::1;37369:17;;:25;;;;;;;;;;;;;;;;;;37305:97:::0;:::o;26220:269::-;26313:4;26330:129;26339:12;:10;:12::i;:::-;26353:7;26362:96;26401:15;26362:96;;;;;;;;;;;;;;;;;:11;:25;26374:12;:10;:12::i;:::-;26362:25;;;;;;;;;;;;;;;:34;26388:7;26362:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;26330:8;:129::i;:::-;26477:4;26470:11;;26220:269;;;;:::o;25178:167::-;25256:4;25273:42;25283:12;:10;:12::i;:::-;25297:9;25308:6;25273:9;:42::i;:::-;25333:4;25326:11;;25178:167;;;;:::o;26497:110::-;26555:4;26579:11;:20;26591:7;26579:20;;;;;;;;;;;;;;;;;;;;;;;;;26572:27;;26497:110;;;:::o;25353:143::-;25434:7;25461:11;:18;25473:5;25461:18;;;;;;;;;;;;;;;:27;25480:7;25461:27;;;;;;;;;;;;;;;;25454:34;;25353:143;;;;:::o;27797:332::-;21764:12;:10;:12::i;:::-;21754:22;;:6;;;;;;;;;;;:22;;;21746:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27879:11:::1;:20;27891:7;27879:20;;;;;;;;;;;;;;;;;;;;;;;;;27878:21;27870:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;27964:1;27945:7;:16;27953:7;27945:16;;;;;;;;;;;;;;;;:20;27942:108;;;28001:37;28021:7;:16;28029:7;28021:16;;;;;;;;;;;;;;;;28001:19;:37::i;:::-;27982:7;:16;27990:7;27982:16;;;;;;;;;;;;;;;:56;;;;27942:108;28083:4;28060:11;:20;28072:7;28060:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;28098:9;28113:7;28098:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;28098:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27797:332:::0;:::o;22487:244::-;21764:12;:10;:12::i;:::-;21754:22;;:6;;;;;;;;;;;:22;;;21746:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22596:1:::1;22576:22;;:8;:22;;;;22568:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22686:8;22657:38;;22678:6;::::0;::::1;;;;;;;;;22657:38;;;;;;;;;;;;22715:8;22706:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;22487:244:::0;:::o;28137:478::-;21764:12;:10;:12::i;:::-;21754:22;;:6;;;;;;;;;;;:22;;;21746:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28218:11:::1;:20;28230:7;28218:20;;;;;;;;;;;;;;;;;;;;;;;;;28210:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;28286:9;28298:1:::0;28286:13:::1;;28281:327;28305:9;:16;;;;28301:1;:20;28281:327;;;28363:7;28347:23;;:9;28357:1;28347:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;28343:254;;;28406:9;28435:1;28416:9;:16;;;;:20;28406:31;;;;;;;;;;;;;;;;;;;;;;;;;28391:9;28401:1;28391:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;28475:1;28456:7;:16;28464:7;28456:16;;;;;;;;;;;;;;;:20;;;;28518:5;28495:11;:20;28507:7;28495:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;28542:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28576:5;;28343:254;28323:3;;;;;;;28281:327;;;;28137:478:::0;:::o;5506:106::-;5559:15;5594:10;5587:17;;5506:106;:::o;35308:411::-;35367:7;35376;35385;35394;35403;35424:23;35449:12;35465:20;35477:7;35465:11;:20::i;:::-;35423:62;;;;35496:19;35519:10;:8;:10::i;:::-;35496:33;;35541:15;35558:23;35583:12;35599:39;35611:7;35620:4;35626:11;35599;:39::i;:::-;35540:98;;;;;;35657:7;35666:15;35683:4;35689:15;35706:4;35649:62;;;;;;;;;;;;;;;;35308:411;;;;;;;:::o;10130:136::-;10188:7;10215:43;10219:1;10222;10215:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;10208:50;;10130:136;;;;:::o;9666:181::-;9724:7;9744:9;9760:1;9756;:5;9744:17;;9785:1;9780;:6;;9772:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9838:1;9831:8;;;9666:181;;;;:::o;28623:337::-;28733:1;28716:19;;:5;:19;;;;28708:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28814:1;28795:21;;:7;:21;;;;28787:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28898:6;28868:11;:18;28880:5;28868:18;;;;;;;;;;;;;;;:27;28887:7;28868:27;;;;;;;;;;;;;;;:36;;;;28936:7;28920:32;;28929:5;28920:32;;;28945:6;28920:32;;;;;;;;;;;;;;;;;;28623:337;;;:::o;29827:1276::-;29942:1;29924:20;;:6;:20;;;;29916:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30026:1;30005:23;;:9;:23;;;;29997:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30096:1;30087:6;:10;30079:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30186:17;;;;;;;;;;;:38;;;;30217:7;30207:6;:17;;30186:38;:59;;;;30238:7;:5;:7::i;:::-;30228:17;;:6;:17;;;30186:59;30178:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30362:15;;;;;;;;;;;30361:16;:35;;;;;30382:14;;;;;;;;;;;30381:15;30361:35;30357:132;;;30412:11;30426:23;30434:6;30442;30426:7;:23::i;:::-;30412:37;;30474:3;30464:13;;;;30357:132;;30503:11;:19;30515:6;30503:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;30527:11;:22;30539:9;30527:22;;;;;;;;;;;;;;;;;;;;;;;;;30526:23;30503:46;30499:597;;;30566:48;30588:6;30596:9;30607:6;30566:21;:48::i;:::-;30499:597;;;30637:11;:19;30649:6;30637:19;;;;;;;;;;;;;;;;;;;;;;;;;30636:20;:46;;;;;30660:11;:22;30672:9;30660:22;;;;;;;;;;;;;;;;;;;;;;;;;30636:46;30632:464;;;30699:46;30719:6;30727:9;30738:6;30699:19;:46::i;:::-;30632:464;;;30768:11;:19;30780:6;30768:19;;;;;;;;;;;;;;;;;;;;;;;;;30767:20;:47;;;;;30792:11;:22;30804:9;30792:22;;;;;;;;;;;;;;;;;;;;;;;;;30791:23;30767:47;30763:333;;;30831:44;30849:6;30857:9;30868:6;30831:17;:44::i;:::-;30763:333;;;30897:11;:19;30909:6;30897:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;30920:11;:22;30932:9;30920:22;;;;;;;;;;;;;;;;;;;;;;;;;30897:45;30893:203;;;30959:48;30981:6;30989:9;31000:6;30959:21;:48::i;:::-;30893:203;;;31040:44;31058:6;31066:9;31077:6;31040:17;:44::i;:::-;30893:203;30763:333;30632:464;30499:597;29827:1276;;;:::o;10569:192::-;10655:7;10688:1;10683;:6;;10691:12;10675:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10675:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10715:9;10731:1;10727;:5;10715:17;;10752:1;10745:8;;;10569:192;;;;;:::o;36558:163::-;36599:7;36620:15;36637;36656:19;:17;:19::i;:::-;36619:56;;;;36693:20;36705:7;36693;:11;;:20;;;;:::i;:::-;36686:27;;;;36558:163;:::o;11967:132::-;12025:7;12052:39;12056:1;12059;12052:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;12045:46;;11967:132;;;;:::o;11020:471::-;11078:7;11328:1;11323;:6;11319:47;;;11353:1;11346:8;;;;11319:47;11378:9;11394:1;11390;:5;11378:17;;11423:1;11418;11414;:5;;;;;;:10;11406:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11482:1;11475:8;;;11020:471;;;;;:::o;35727:481::-;35787:7;35796;35886:12;35901:36;35934:2;35901:28;35913:15;35925:2;35913:7;:11;;:15;;;;:::i;:::-;35901:7;:11;;:28;;;;:::i;:::-;:32;;:36;;;;:::i;:::-;35886:51;;36036:14;;;;;;;;;;;:33;;;;36054:15;;;;;;;;;;;36036:33;36032:74;;;36093:1;36086:8;;36032:74;36116:23;36142:17;36154:4;36142:7;:11;;:17;;;;:::i;:::-;36116:43;;36178:15;36195:4;36170:30;;;;;;35727:481;;;:::o;36216:334::-;36311:7;36320;36329;36349:15;36367:24;36379:11;36367:7;:11;;:24;;;;:::i;:::-;36349:42;;36402:12;36417:21;36426:11;36417:4;:8;;:21;;;;:::i;:::-;36402:36;;36449:23;36475:17;36487:4;36475:7;:11;;:17;;;;:::i;:::-;36449:43;;36511:7;36520:15;36537:4;36503:39;;;;;;;;;36216:334;;;;;;;:::o;29553:262::-;29618:11;29647:14;29654:6;29647;:14::i;:::-;29641:20;;29689:4;29672:14;;:21;;;;;;;;;;;;;;;;;;29704:35;29714:4;29728;29735:3;29704:9;:35::i;:::-;29757:14;;29750:21;;;;;;;;;;;29787:20;29797:4;29803:3;29787:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;29553:262;;;;:::o;32100:509::-;32203:15;32220:23;32245:12;32259:23;32284:12;32300:19;32311:7;32300:10;:19::i;:::-;32202:117;;;;;;;;;;32348:28;32368:7;32348;:15;32356:6;32348:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32330:7;:15;32338:6;32330:15;;;;;;;;;;;;;;;:46;;;;32405:28;32425:7;32405;:15;32413:6;32405:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32387:7;:15;32395:6;32387:15;;;;;;;;;;;;;;;:46;;;;32465:39;32488:15;32465:7;:18;32473:9;32465:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32444:7;:18;32452:9;32444:18;;;;;;;;;;;;;;;:60;;;;32518:23;32530:4;32536;32518:11;:23::i;:::-;32574:9;32557:44;;32566:6;32557:44;;;32585:15;32557:44;;;;;;;;;;;;;;;;;;32100:509;;;;;;;;:::o;31568:524::-;31669:15;31686:23;31711:12;31725:23;31750:12;31766:19;31777:7;31766:10;:19::i;:::-;31668:117;;;;;;;;;;31814:28;31834:7;31814;:15;31822:6;31814:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31796:7;:15;31804:6;31796:15;;;;;;;;;;;;;;;:46;;;;31874:39;31897:15;31874:7;:18;31882:9;31874:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;31853:7;:18;31861:9;31853:18;;;;;;;;;;;;;;;:60;;;;31945:39;31968:15;31945:7;:18;31953:9;31945:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;31924:7;:18;31932:9;31924:18;;;;;;;;;;;;;;;:60;;;;32001:23;32013:4;32019;32001:11;:23::i;:::-;32057:9;32040:44;;32049:6;32040:44;;;32068:15;32040:44;;;;;;;;;;;;;;;;;;31568:524;;;;;;;;:::o;31111:449::-;31210:15;31227:23;31252:12;31266:23;31291:12;31307:19;31318:7;31307:10;:19::i;:::-;31209:117;;;;;;;;;;31355:28;31375:7;31355;:15;31363:6;31355:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;31337:7;:15;31345:6;31337:15;;;;;;;;;;;;;;;:46;;;;31415:39;31438:15;31415:7;:18;31423:9;31415:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;31394:7;:18;31402:9;31394:18;;;;;;;;;;;;;;;:60;;;;31469:23;31481:4;31487;31469:11;:23::i;:::-;31525:9;31508:44;;31517:6;31508:44;;;31536:15;31508:44;;;;;;;;;;;;;;;;;;31111:449;;;;;;;;:::o;32617:585::-;32720:15;32737:23;32762:12;32776:23;32801:12;32817:19;32828:7;32817:10;:19::i;:::-;32719:117;;;;;;;;;;32865:28;32885:7;32865;:15;32873:6;32865:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32847:7;:15;32855:6;32847:15;;;;;;;;;;;;;;;:46;;;;32922:28;32942:7;32922;:15;32930:6;32922:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;32904:7;:15;32912:6;32904:15;;;;;;;;;;;;;;;:46;;;;32982:39;33005:15;32982:7;:18;32990:9;32982:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;32961:7;:18;32969:9;32961:18;;;;;;;;;;;;;;;:60;;;;33053:39;33076:15;33053:7;:18;33061:9;33053:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;33032:7;:18;33040:9;33032:18;;;;;;;;;;;;;;;:60;;;;33111:23;33123:4;33129;33111:11;:23::i;:::-;33167:9;33150:44;;33159:6;33150:44;;;33178:15;33150:44;;;;;;;;;;;;;;;;;;32617:585;;;;;;;;:::o;37410:561::-;37460:7;37469;37489:15;37507:7;;37489:25;;37525:15;23684:18;37525:25;;37572:9;37584:1;37572:13;;37567:289;37591:9;:16;;;;37587:1;:20;37567:289;;;37657:7;37633;:21;37641:9;37651:1;37641:12;;;;;;;;;;;;;;;;;;;;;;;;;37633:21;;;;;;;;;;;;;;;;:31;:66;;;;37692:7;37668;:21;37676:9;37686:1;37676:12;;;;;;;;;;;;;;;;;;;;;;;;;37668:21;;;;;;;;;;;;;;;;:31;37633:66;37629:97;;;37709:7;;23684:18;37701:25;;;;;;;;;37629:97;37751:34;37763:7;:21;37771:9;37781:1;37771:12;;;;;;;;;;;;;;;;;;;;;;;;;37763:21;;;;;;;;;;;;;;;;37751:7;:11;;:34;;;;:::i;:::-;37741:44;;37810:34;37822:7;:21;37830:9;37840:1;37830:12;;;;;;;;;;;;;;;;;;;;;;;;;37822:21;;;;;;;;;;;;;;;;37810:7;:11;;:34;;;;:::i;:::-;37800:44;;37609:3;;;;;;;37567:289;;;;37880:20;23684:18;37880:7;;:11;;:20;;;;:::i;:::-;37870:7;:30;37866:61;;;37910:7;;23684:18;37902:25;;;;;;;;37866:61;37946:7;37955;37938:25;;;;;;37410:561;;;:::o;12595:278::-;12681:7;12713:1;12709;:5;12716:12;12701:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12701:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12740:9;12756:1;12752;:5;;;;;;12740:17;;12864:1;12857:8;;;12595:278;;;;;:::o;29183:104::-;29238:7;29265:14;29276:2;29265:6;:10;;:14;;;;:::i;:::-;29258:21;;29183:104;;;:::o;33210:147::-;33288:17;33300:4;33288:7;;:11;;:17;;;;:::i;:::-;33278:7;:27;;;;33329:20;33344:4;33329:10;;:14;;:20;;;;:::i;:::-;33316:10;:33;;;;33210:147;;:::o

Swarm Source

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