ERC-20
Overview
Max Total Supply
915,390.447139595 BIO
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
13,425.882034544 BIOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BIO
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-13 */ // SPDX-License-Identifier: MIT // Bio Token Official Contract pragma solidity ^0.6.12; contract Balancer { constructor() public { } } pragma solidity >=0.6.0 <0.8.0; /* * @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; } } pragma solidity >=0.6.0 <0.8.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. */ abstract 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.0 <0.8.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; } } pragma solidity >=0.6.0 <0.8.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); } pragma solidity >=0.6.2 <0.8.0; /** * @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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { 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); } } } } pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract BIO is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; string private _name = "Bio Token"; string private _symbol = "BIO"; uint8 private _decimals = 9; mapping(address => uint256) internal _reflectionBalance; mapping(address => uint256) internal _tokenBalance; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private constant MAX = ~uint256(0); uint256 internal _tokenTotal = 1000000e9; uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) isExcludedFromFee; mapping(address => bool) internal _isExcluded; address[] internal _excluded; uint256 public _feeDecimal = 2; uint256 public _buyHoldersFee = 150; // buys: 1.5% to holders uint256 public _sellHoldersFee = 300; // sells: 3% to holders uint256 public _buySplitFee = 150; // buys: 1.5% split into 0.75% buyback + 0.75% liquidity uint256 public _sellSplitFee = 300; // sells: 3% split into 1.5% buyback + 1.5% liquidity uint256 public _rebalanceCallerFee = 500; bool private inSwapAndLiquify; bool public tradingEnabled = false; uint256 public minTokensBeforeSwap = 100; uint256 public minEthBeforeSwap = 100; uint256 public lastRebalance = now; uint256 public rebalanceInterval = 15 minutes; uint256 public tradingEnabledAt; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public balancer; event RewardsDistributed(uint256 amount); event SwapedTokenForEth(uint256 EthAmount, uint256 TokenAmount); event SwapedEthForTokens(uint256 EthAmount, uint256 TokenAmount, uint256 CallerReward, uint256 AmountBurned); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; balancer = address(new Balancer()); isExcludedFromFee[_msgSender()] = true; isExcludedFromFee[address(this)] = true; _isExcluded[uniswapV2Pair] = true; _excluded.push(uniswapV2Pair); _reflectionBalance[_msgSender()] = _reflectionTotal; emit Transfer(address(0), _msgSender(), _tokenTotal); } 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 override view returns (uint256) { return _tokenTotal; } function balanceOf(address account) public override view returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function tokenFromReflection(uint256 reflectionAmount) public view returns (uint256) { require(reflectionAmount <= _reflectionTotal, "Amount must be less than total reflections"); uint256 currentRate = _getReflectionRate(); return reflectionAmount.div(currentRate); } function transfer(address recipient, uint256 amount) public override virtual returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public override view 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 virtual 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 _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (!tradingEnabled && sender != owner()) { revert("Trading is not enabled yet"); } bool isAddingLiquidity = sender == owner() && recipient == uniswapV2Pair; bool isBuy = sender == uniswapV2Pair && recipient != owner(); bool isSell = sender != owner() && recipient == uniswapV2Pair; if (isBuy && tradingEnabledAt + 60 minutes > now && amount > 900_000e9) { revert("For the first 60 minutes, only buys of max 900.000 tokens are allowed"); } if (!inSwapAndLiquify && sender != uniswapV2Pair && !isAddingLiquidity) { bool swap = true; uint256 contractBalance = address(this).balance; if (now > lastRebalance + rebalanceInterval && contractBalance > minEthBeforeSwap) { split(contractBalance); swap = false; } if (swap) { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= minTokensBeforeSwap) { swapTokensForEth(); } } } uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); if (!isExcludedFromFee[sender] && !isExcludedFromFee[recipient] && !inSwapAndLiquify) { transferAmount = collectFee(sender, amount, rate, isBuy, isSell); } _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); } function collectFee(address account, uint256 amount, uint256 rate, bool isBuy, bool isSell) private returns (uint256) { uint256 transferAmount = amount; uint256 holdersFee = isBuy && _buyHoldersFee != 0 ? _buyHoldersFee : (isSell && _sellHoldersFee != 0 ? _sellHoldersFee : 0); if (holdersFee != 0) { uint256 taxFee = amount.mul(holdersFee).div(10 ** (_feeDecimal + 2)); transferAmount = transferAmount.sub(taxFee); _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)); emit RewardsDistributed(taxFee); } uint256 baseSplitFee = isBuy && _buySplitFee != 0 ? _buySplitFee : (isSell && _sellSplitFee != 0 ? _sellSplitFee : 0); if (baseSplitFee != 0) { uint256 splitFee = amount.mul(baseSplitFee).div(10 ** (_feeDecimal + 2)); transferAmount = transferAmount.sub(splitFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(splitFee.mul(rate)); emit Transfer(account, address(this), splitFee); } return transferAmount; } function _getReflectionRate() private view returns (uint256) { uint256 reflectionSupply = _reflectionTotal; uint256 tokenSupply = _tokenTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_reflectionBalance[_excluded[i]] > reflectionSupply || _tokenBalance[_excluded[i]] > tokenSupply) return _reflectionTotal.div(_tokenTotal); reflectionSupply = reflectionSupply.sub(_reflectionBalance[_excluded[i]]); tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]); } if (reflectionSupply < _reflectionTotal.div(_tokenTotal)) return _reflectionTotal.div(_tokenTotal); return reflectionSupply.div(tokenSupply); } function swapTokensForEth() private lockTheSwap { uint256 tokenAmount = balanceOf(address(this)); uint256 ethAmount = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); ethAmount = address(this).balance.sub(ethAmount); emit SwapedTokenForEth(tokenAmount, ethAmount); } function swapEthForTokens(uint256 EthAmount) private { address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value : EthAmount}( 0, path, address(balancer), block.timestamp ); _transfer(address(balancer), address(this), balanceOf(address(balancer))); } function split(uint256 contractBalance) private lockTheSwap { lastRebalance = now; uint256 quarterEthBalance = contractBalance.div(4); uint256 threeQuartersEthBalance = contractBalance.sub(quarterEthBalance); uint256 remainingQuarterEthBalance = contractBalance.sub(threeQuartersEthBalance); swapEthForTokens(threeQuartersEthBalance); uint256 tokenBalance = balanceOf(address(this)); uint256 tokensForBuyAndBurn = tokenBalance.div(3).mul(2); // Buy and burn uint256 rewardForCaller = tokensForBuyAndBurn.mul(_rebalanceCallerFee).div(10 ** (_feeDecimal + 2)); uint256 amountToBurn = tokensForBuyAndBurn.sub(rewardForCaller); uint256 rate = _getReflectionRate(); _reflectionBalance[tx.origin] = _reflectionBalance[tx.origin].add(rewardForCaller.mul(rate)); _reflectionBalance[address(balancer)] = 0; _tokenTotal = _tokenTotal.sub(amountToBurn); _reflectionTotal = _reflectionTotal.sub(amountToBurn.mul(rate)); emit Transfer(address(balancer), tx.origin, rewardForCaller); emit Transfer(address(balancer), address(0), amountToBurn); emit SwapedEthForTokens(quarterEthBalance.mul(2), tokensForBuyAndBurn, rewardForCaller, amountToBurn); // Add liquidity uint256 tokensForLiquidity = tokenBalance.sub(tokensForBuyAndBurn); _tokenTotal = _tokenTotal.sub(tokensForLiquidity); _reflectionTotal = _reflectionTotal.sub(tokensForLiquidity.mul(rate)); _approve(address(this), address(uniswapV2Router), tokensForLiquidity); _approve(address(balancer), address(uniswapV2Router), tokensForLiquidity); uniswapV2Router.addLiquidityETH{value : remainingQuarterEthBalance}( address(this), tokensForLiquidity, 0, 0, address(this), block.timestamp ); } function enableTrading() external onlyOwner() { tradingEnabled = true; tradingEnabledAt = now; } function setBuyHoldersFee(uint256 newBuyHoldersFee) external onlyOwner() { _buyHoldersFee = newBuyHoldersFee; } function setSellHoldersFee(uint256 newSellHoldersFee) external onlyOwner() { _sellHoldersFee = newSellHoldersFee; } function setBuySplitFee(uint256 newBuySplitFee) external onlyOwner() { _buySplitFee = newBuySplitFee; } function setSellSplitFee(uint256 newSellSplitFee) external onlyOwner() { _sellSplitFee = newSellSplitFee; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"EthAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"TokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"CallerReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"AmountBurned","type":"uint256"}],"name":"SwapedEthForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"EthAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"TokenAmount","type":"uint256"}],"name":"SwapedTokenForEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_buyHoldersFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buySplitFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rebalanceCallerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellHoldersFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellSplitFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"balancer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","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":"lastRebalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minEthBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"rebalanceInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyHoldersFee","type":"uint256"}],"name":"setBuyHoldersFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuySplitFee","type":"uint256"}],"name":"setBuySplitFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellHoldersFee","type":"uint256"}],"name":"setSellHoldersFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellSplitFee","type":"uint256"}],"name":"setSellSplitFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabledAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526040518060400160405280600981526020017f42696f20546f6b656e0000000000000000000000000000000000000000000000815250600190805190602001906200005192919062000755565b506040518060400160405280600381526020017f42494f0000000000000000000000000000000000000000000000000000000000815250600290805190602001906200009f92919062000755565b506009600360006101000a81548160ff021916908360ff16021790555066038d7ea4c6800060075560075460001981620000d557fe5b06600019036008556002600c556096600d5561012c600e556096600f5561012c6010556101f46011556000601260016101000a81548160ff02191690831515021790555060646013556064601455426015556103846016553480156200013a57600080fd5b5060006200014d6200074d60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024b57600080fd5b505afa15801562000260573d6000803e3d6000fd5b505050506040513d60208110156200027757600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002eb57600080fd5b505afa15801562000300573d6000803e3d6000fd5b505050506040513d60208110156200031757600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200039257600080fd5b505af1158015620003a7573d6000803e3d6000fd5b505050506040513d6020811015620003be57600080fd5b8101908080519060200190929190505050601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040516200045e90620007dc565b604051809103906000f0801580156200047b573d6000803e3d6000fd5b50601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160096000620004d26200074d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085460046000620006916200074d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620006df6200074d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a35062000808565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200079857805160ff1916838001178555620007c9565b82800160010185558215620007c9579182015b82811115620007c8578251825591602001919060010190620007ab565b5b509050620007d89190620007e9565b5090565b605c806200455f83390190565b5b8082111562000804576000816000905550600101620007ea565b5090565b613d4780620008186000396000f3fe6080604052600436106102125760003560e01c8063636f02c711610118578063b120f7db116100a0578063d400336f1161006f578063d400336f14610a94578063dd62ed3e14610abf578063e563037e14610b44578063e5d41c6b14610b85578063f2fde38b14610bb057610219565b8063b120f7db1461098c578063b66c9a4c146109c7578063c31fe80a14610a02578063cba0e99614610a2d57610219565b80638a8c523c116100e75780638a8c523c146107c25780638da5cb5b146107d957806395d89b411461081a578063a457c2d7146108aa578063a9059cbb1461091b57610219565b8063636f02c7146106e057806370a082311461071b578063715018a6146107805780637e64c7aa1461079757610219565b806320aaba721161019b578063395093511161016a57806339509351146105ab5780633b7eb3a31461061c57806349bd5a5e146106475780634ada218b14610688578063556a3104146106b557610219565b806320aaba721461047257806323b872dd1461049d5780632d8381191461052e578063313ce5671461057d57610219565b8063106b9ca1116101e2578063106b9ca1146103855780631694505e146103b057806316d1d916146103f157806318160ddd1461041c57806319db457d1461044757610219565b80625d0d6b1461021e57806306fdde0314610249578063095ea7b3146102d95780630a6061631461034a57610219565b3661021957005b600080fd5b34801561022a57600080fd5b50610233610c01565b6040518082815260200191505060405180910390f35b34801561025557600080fd5b5061025e610c07565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029e578082015181840152602081019050610283565b50505050905090810190601f1680156102cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e557600080fd5b50610332600480360360408110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ca9565b60405180821515815260200191505060405180910390f35b34801561035657600080fd5b506103836004803603602081101561036d57600080fd5b8101908080359060200190929190505050610cc7565b005b34801561039157600080fd5b5061039a610d99565b6040518082815260200191505060405180910390f35b3480156103bc57600080fd5b506103c5610d9f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103fd57600080fd5b50610406610dc5565b6040518082815260200191505060405180910390f35b34801561042857600080fd5b50610431610dcb565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c610dd5565b6040518082815260200191505060405180910390f35b34801561047e57600080fd5b50610487610ddb565b6040518082815260200191505060405180910390f35b3480156104a957600080fd5b50610516600480360360608110156104c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de1565b60405180821515815260200191505060405180910390f35b34801561053a57600080fd5b506105676004803603602081101561055157600080fd5b8101908080359060200190929190505050610eba565b6040518082815260200191505060405180910390f35b34801561058957600080fd5b50610592610f3e565b604051808260ff16815260200191505060405180910390f35b3480156105b757600080fd5b50610604600480360360408110156105ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f55565b60405180821515815260200191505060405180910390f35b34801561062857600080fd5b50610631611008565b6040518082815260200191505060405180910390f35b34801561065357600080fd5b5061065c61100e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069457600080fd5b5061069d611034565b60405180821515815260200191505060405180910390f35b3480156106c157600080fd5b506106ca611047565b6040518082815260200191505060405180910390f35b3480156106ec57600080fd5b506107196004803603602081101561070357600080fd5b810190808035906020019092919050505061104d565b005b34801561072757600080fd5b5061076a6004803603602081101561073e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061111f565b6040518082815260200191505060405180910390f35b34801561078c57600080fd5b5061079561120a565b005b3480156107a357600080fd5b506107ac611390565b6040518082815260200191505060405180910390f35b3480156107ce57600080fd5b506107d7611396565b005b3480156107e557600080fd5b506107ee611482565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561082657600080fd5b5061082f6114ab565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561086f578082015181840152602081019050610854565b50505050905090810190601f16801561089c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108b657600080fd5b50610903600480360360408110156108cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154d565b60405180821515815260200191505060405180910390f35b34801561092757600080fd5b506109746004803603604081101561093e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061161a565b60405180821515815260200191505060405180910390f35b34801561099857600080fd5b506109c5600480360360208110156109af57600080fd5b8101908080359060200190929190505050611638565b005b3480156109d357600080fd5b50610a00600480360360208110156109ea57600080fd5b810190808035906020019092919050505061170a565b005b348015610a0e57600080fd5b50610a176117dc565b6040518082815260200191505060405180910390f35b348015610a3957600080fd5b50610a7c60048036036020811015610a5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117e2565b60405180821515815260200191505060405180910390f35b348015610aa057600080fd5b50610aa9611838565b6040518082815260200191505060405180910390f35b348015610acb57600080fd5b50610b2e60048036036040811015610ae257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061183e565b6040518082815260200191505060405180910390f35b348015610b5057600080fd5b50610b596118c5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b9157600080fd5b50610b9a6118eb565b6040518082815260200191505060405180910390f35b348015610bbc57600080fd5b50610bff60048036036020811015610bd357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118f1565b005b600e5481565b606060018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c9f5780601f10610c7457610100808354040283529160200191610c9f565b820191906000526020600020905b815481529060010190602001808311610c8257829003601f168201915b5050505050905090565b6000610cbd610cb6611afc565b8484611b04565b6001905092915050565b610ccf611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b60155481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6000600754905090565b600c5481565b60105481565b6000610dee848484611cfb565b610eaf84610dfa611afc565b610eaa85604051806060016040528060288152602001613c0e60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e60611afc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126a09092919063ffffffff16565b611b04565b600190509392505050565b6000600854821115610f17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613b7b602a913960400191505060405180910390fd5b6000610f21612760565b9050610f368184612a1b90919063ffffffff16565b915050919050565b6000600360009054906101000a900460ff16905090565b6000610ffe610f62611afc565b84610ff98560066000610f73611afc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b611b04565b6001905092915050565b600f5481565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260019054906101000a900460ff1681565b600d5481565b611055611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111ba57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611205565b611202600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eba565b90505b919050565b611212611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115481565b61139e611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601260016101000a81548160ff02191690831515021790555042601781905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115435780601f1061151857610100808354040283529160200191611543565b820191906000526020600020905b81548152906001019060200180831161152657829003601f168201915b5050505050905090565b600061161061155a611afc565b8461160b85604051806060016040528060258152602001613ced6025913960066000611584611afc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126a09092919063ffffffff16565b611b04565b6001905092915050565b600061162e611627611afc565b8484611cfb565b6001905092915050565b611640611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e8190555050565b611712611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b60175481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6118f9611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613ba56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613c846024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613bcb6022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613c5f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b586023913960400191505060405180910390fd5b60008111611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613c366029913960400191505060405180910390fd5b601260019054906101000a900460ff16158015611eb05750611e80611482565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611f23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b6000611f2d611482565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611fb45750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b90506000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156120485750612018611482565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b90506000612054611482565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156120dc5750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b90508180156120f0575042610e1060175401115b801561210257506603328b944c400084115b15612158576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526045815260200180613ca86045913960600191505060405180910390fd5b601260009054906101000a900460ff161580156121c35750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156121cd575082155b1561223057600060019050600047905060165460155401421180156121f3575060145481115b156122065761220181612aed565b600091505b811561222d5760006122173061111f565b9050601354811061222b5761222a6130d2565b5b505b50505b6000849050600061223f612760565b9050600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122e55750600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122fe5750601260009054906101000a900460ff16155b15612313576123108887838787613423565b91505b61237761232982886136c890919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461374e90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061241e6123d082846136c890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156125495761250586600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461374e90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612631576125ed82600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600083831115829061274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127125780820151818401526020810190506126f7565b50505050905090810190601f16801561273f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060085490506000600754905060005b600b805490508110156129c1578260046000600b848154811061279157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061287857508160056000600b848154811061281057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561289e57612894600754600854612a1b90919063ffffffff16565b9350505050612a18565b61292760046000600b84815481106128b257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461374e90919063ffffffff16565b92506129b260056000600b848154811061293d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361374e90919063ffffffff16565b91508080600101915050612772565b506129d9600754600854612a1b90919063ffffffff16565b821015612a00576129f7600754600854612a1b90919063ffffffff16565b92505050612a18565b612a138183612a1b90919063ffffffff16565b925050505b90565b6000612a5d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613798565b905092915050565b600080828401905083811015612ae3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6001601260006101000a81548160ff021916908315150217905550426015819055506000612b25600483612a1b90919063ffffffff16565b90506000612b3c828461374e90919063ffffffff16565b90506000612b53828561374e90919063ffffffff16565b9050612b5e8261385e565b6000612b693061111f565b90506000612b946002612b86600385612a1b90919063ffffffff16565b6136c890919063ffffffff16565b90506000612bc76002600c5401600a0a612bb9601154856136c890919063ffffffff16565b612a1b90919063ffffffff16565b90506000612bde828461374e90919063ffffffff16565b90506000612bea612760565b9050612c50612c0282856136c890919063ffffffff16565b600460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600060046000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d0f8260075461374e90919063ffffffff16565b600781905550612d3c612d2b82846136c890919063ffffffff16565b60085461374e90919063ffffffff16565b6008819055503273ffffffffffffffffffffffffffffffffffffffff16601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3600073ffffffffffffffffffffffffffffffffffffffff16601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a37fab89f676f9e161ea2adbd81e1a375773fa55ce4e60152913602e1677f2fa0c2f612e8660028a6136c890919063ffffffff16565b8585856040518085815260200184815260200183815260200182815260200194505050505060405180910390a16000612ec8858761374e90919063ffffffff16565b9050612edf8160075461374e90919063ffffffff16565b600781905550612f0c612efb83836136c890919063ffffffff16565b60085461374e90919063ffffffff16565b600881905550612f3f30601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b04565b612f8e601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b04565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71988308460008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561305857600080fd5b505af115801561306c573d6000803e3d6000fd5b50505050506040513d606081101561308357600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050505050505050506000601260006101000a81548160ff02191690831515021790555050565b6001601260006101000a81548160ff02191690831515021790555060006130f83061111f565b905060004790506060600267ffffffffffffffff8111801561311957600080fd5b506040519080825280602002602001820160405280156131485781602001602082028036833780820191505090505b509050308160008151811061315957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156131fb57600080fd5b505afa15801561320f573d6000803e3d6000fd5b505050506040513d602081101561322557600080fd5b81019080805190602001909291905050508160018151811061324357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506132aa30601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611b04565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561336e578082015181840152602081019050613353565b505050509050019650505050505050600060405180830381600087803b15801561339757600080fd5b505af11580156133ab573d6000803e3d6000fd5b505050506133c2824761374e90919063ffffffff16565b91507fc7930294ac86944079f9f4a60abedac1187a74a770c6928ea39d9455ebeaf90f8383604051808381526020018281526020019250505060405180910390a15050506000601260006101000a81548160ff021916908315150217905550565b600080859050600084801561343b57506000600d5414155b6134635783801561344f57506000600e5414155b61345a57600061345e565b600e545b613467565b600d545b90506000811461351d5760006134a06002600c5401600a0a613492848b6136c890919063ffffffff16565b612a1b90919063ffffffff16565b90506134b5818461374e90919063ffffffff16565b92506134de6134cd88836136c890919063ffffffff16565b60085461374e90919063ffffffff16565b6008819055507f6d1c76d614228b523baa4dcd9539e2c713b54ff4ab3ff2d1627e7f6cd32be442816040518082815260200191505060405180910390a1505b600085801561352f57506000600f5414155b613557578480156135435750600060105414155b61354e576000613552565b6010545b61355b565b600f545b9050600081146136b95760006135946002600c5401600a0a613586848c6136c890919063ffffffff16565b612a1b90919063ffffffff16565b90506135a9818561374e90919063ffffffff16565b935061360f6135c189836136c890919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505b82935050505095945050505050565b6000808314156136db5760009050613748565b60008284029050828482816136ec57fe5b0414613743576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613bed6021913960400191505060405180910390fd5b809150505b92915050565b600061379083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126a0565b905092915050565b60008083118290613844576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156138095780820151818401526020810190506137ee565b50505050905090810190601f1680156138365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161385057fe5b049050809150509392505050565b6060600267ffffffffffffffff8111801561387857600080fd5b506040519080825280602002602001820160405280156138a75781602001602082028036833780820191505090505b509050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561391257600080fd5b505afa158015613926573d6000803e3d6000fd5b505050506040513d602081101561393c57600080fd5b81019080805190602001909291905050508160008151811061395a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106139a257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de9583600084601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040180858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613abc578082015181840152602081019050613aa1565b50505050905001955050505050506000604051808303818588803b158015613ae357600080fd5b505af1158015613af7573d6000803e3d6000fd5b5050505050613b53601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630613b4e601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661111f565b611cfb565b505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373466f7220746865206669727374203630206d696e757465732c206f6e6c792062757973206f66206d6178203930302e30303020746f6b656e732061726520616c6c6f77656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da7a5ebfe0594734e921d80565ba8b19e15a5a06803c482192dbfe9f89726a6564736f6c634300060c00336080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea2646970667358221220e631de4bd87a61ba33e1b837502d9a5888184ff58874f763d69fc1e45194187e64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102125760003560e01c8063636f02c711610118578063b120f7db116100a0578063d400336f1161006f578063d400336f14610a94578063dd62ed3e14610abf578063e563037e14610b44578063e5d41c6b14610b85578063f2fde38b14610bb057610219565b8063b120f7db1461098c578063b66c9a4c146109c7578063c31fe80a14610a02578063cba0e99614610a2d57610219565b80638a8c523c116100e75780638a8c523c146107c25780638da5cb5b146107d957806395d89b411461081a578063a457c2d7146108aa578063a9059cbb1461091b57610219565b8063636f02c7146106e057806370a082311461071b578063715018a6146107805780637e64c7aa1461079757610219565b806320aaba721161019b578063395093511161016a57806339509351146105ab5780633b7eb3a31461061c57806349bd5a5e146106475780634ada218b14610688578063556a3104146106b557610219565b806320aaba721461047257806323b872dd1461049d5780632d8381191461052e578063313ce5671461057d57610219565b8063106b9ca1116101e2578063106b9ca1146103855780631694505e146103b057806316d1d916146103f157806318160ddd1461041c57806319db457d1461044757610219565b80625d0d6b1461021e57806306fdde0314610249578063095ea7b3146102d95780630a6061631461034a57610219565b3661021957005b600080fd5b34801561022a57600080fd5b50610233610c01565b6040518082815260200191505060405180910390f35b34801561025557600080fd5b5061025e610c07565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029e578082015181840152602081019050610283565b50505050905090810190601f1680156102cb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e557600080fd5b50610332600480360360408110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ca9565b60405180821515815260200191505060405180910390f35b34801561035657600080fd5b506103836004803603602081101561036d57600080fd5b8101908080359060200190929190505050610cc7565b005b34801561039157600080fd5b5061039a610d99565b6040518082815260200191505060405180910390f35b3480156103bc57600080fd5b506103c5610d9f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103fd57600080fd5b50610406610dc5565b6040518082815260200191505060405180910390f35b34801561042857600080fd5b50610431610dcb565b6040518082815260200191505060405180910390f35b34801561045357600080fd5b5061045c610dd5565b6040518082815260200191505060405180910390f35b34801561047e57600080fd5b50610487610ddb565b6040518082815260200191505060405180910390f35b3480156104a957600080fd5b50610516600480360360608110156104c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610de1565b60405180821515815260200191505060405180910390f35b34801561053a57600080fd5b506105676004803603602081101561055157600080fd5b8101908080359060200190929190505050610eba565b6040518082815260200191505060405180910390f35b34801561058957600080fd5b50610592610f3e565b604051808260ff16815260200191505060405180910390f35b3480156105b757600080fd5b50610604600480360360408110156105ce57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f55565b60405180821515815260200191505060405180910390f35b34801561062857600080fd5b50610631611008565b6040518082815260200191505060405180910390f35b34801561065357600080fd5b5061065c61100e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561069457600080fd5b5061069d611034565b60405180821515815260200191505060405180910390f35b3480156106c157600080fd5b506106ca611047565b6040518082815260200191505060405180910390f35b3480156106ec57600080fd5b506107196004803603602081101561070357600080fd5b810190808035906020019092919050505061104d565b005b34801561072757600080fd5b5061076a6004803603602081101561073e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061111f565b6040518082815260200191505060405180910390f35b34801561078c57600080fd5b5061079561120a565b005b3480156107a357600080fd5b506107ac611390565b6040518082815260200191505060405180910390f35b3480156107ce57600080fd5b506107d7611396565b005b3480156107e557600080fd5b506107ee611482565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561082657600080fd5b5061082f6114ab565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561086f578082015181840152602081019050610854565b50505050905090810190601f16801561089c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108b657600080fd5b50610903600480360360408110156108cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061154d565b60405180821515815260200191505060405180910390f35b34801561092757600080fd5b506109746004803603604081101561093e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061161a565b60405180821515815260200191505060405180910390f35b34801561099857600080fd5b506109c5600480360360208110156109af57600080fd5b8101908080359060200190929190505050611638565b005b3480156109d357600080fd5b50610a00600480360360208110156109ea57600080fd5b810190808035906020019092919050505061170a565b005b348015610a0e57600080fd5b50610a176117dc565b6040518082815260200191505060405180910390f35b348015610a3957600080fd5b50610a7c60048036036020811015610a5057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117e2565b60405180821515815260200191505060405180910390f35b348015610aa057600080fd5b50610aa9611838565b6040518082815260200191505060405180910390f35b348015610acb57600080fd5b50610b2e60048036036040811015610ae257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061183e565b6040518082815260200191505060405180910390f35b348015610b5057600080fd5b50610b596118c5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b9157600080fd5b50610b9a6118eb565b6040518082815260200191505060405180910390f35b348015610bbc57600080fd5b50610bff60048036036020811015610bd357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118f1565b005b600e5481565b606060018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c9f5780601f10610c7457610100808354040283529160200191610c9f565b820191906000526020600020905b815481529060010190602001808311610c8257829003601f168201915b5050505050905090565b6000610cbd610cb6611afc565b8484611b04565b6001905092915050565b610ccf611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d8190555050565b60155481565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6000600754905090565b600c5481565b60105481565b6000610dee848484611cfb565b610eaf84610dfa611afc565b610eaa85604051806060016040528060288152602001613c0e60289139600660008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e60611afc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126a09092919063ffffffff16565b611b04565b600190509392505050565b6000600854821115610f17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613b7b602a913960400191505060405180910390fd5b6000610f21612760565b9050610f368184612a1b90919063ffffffff16565b915050919050565b6000600360009054906101000a900460ff16905090565b6000610ffe610f62611afc565b84610ff98560066000610f73611afc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b611b04565b6001905092915050565b600f5481565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260019054906101000a900460ff1681565b600d5481565b611055611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600f8190555050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111ba57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050611205565b611202600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eba565b90505b919050565b611212611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60115481565b61139e611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601260016101000a81548160ff02191690831515021790555042601781905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115435780601f1061151857610100808354040283529160200191611543565b820191906000526020600020905b81548152906001019060200180831161152657829003601f168201915b5050505050905090565b600061161061155a611afc565b8461160b85604051806060016040528060258152602001613ced6025913960066000611584611afc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126a09092919063ffffffff16565b611b04565b6001905092915050565b600061162e611627611afc565b8484611cfb565b6001905092915050565b611640611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600e8190555050565b611712611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060108190555050565b60175481565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6118f9611afc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613ba56026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613c846024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613bcb6022913960400191505060405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613c5f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613b586023913960400191505060405180910390fd5b60008111611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613c366029913960400191505060405180910390fd5b601260019054906101000a900460ff16158015611eb05750611e80611482565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611f23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f54726164696e67206973206e6f7420656e61626c65642079657400000000000081525060200191505060405180910390fd5b6000611f2d611482565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611fb45750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b90506000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156120485750612018611482565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b90506000612054611482565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156120dc5750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b90508180156120f0575042610e1060175401115b801561210257506603328b944c400084115b15612158576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526045815260200180613ca86045913960600191505060405180910390fd5b601260009054906101000a900460ff161580156121c35750601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156121cd575082155b1561223057600060019050600047905060165460155401421180156121f3575060145481115b156122065761220181612aed565b600091505b811561222d5760006122173061111f565b9050601354811061222b5761222a6130d2565b5b505b50505b6000849050600061223f612760565b9050600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156122e55750600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122fe5750601260009054906101000a900460ff16155b15612313576123108887838787613423565b91505b61237761232982886136c890919063ffffffff16565b600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461374e90919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061241e6123d082846136c890919063ffffffff16565b600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156125495761250586600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461374e90919063ffffffff16565b600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612631576125ed82600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600083831115829061274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127125780820151818401526020810190506126f7565b50505050905090810190601f16801561273f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008060085490506000600754905060005b600b805490508110156129c1578260046000600b848154811061279157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054118061287857508160056000600b848154811061281057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561289e57612894600754600854612a1b90919063ffffffff16565b9350505050612a18565b61292760046000600b84815481106128b257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461374e90919063ffffffff16565b92506129b260056000600b848154811061293d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361374e90919063ffffffff16565b91508080600101915050612772565b506129d9600754600854612a1b90919063ffffffff16565b821015612a00576129f7600754600854612a1b90919063ffffffff16565b92505050612a18565b612a138183612a1b90919063ffffffff16565b925050505b90565b6000612a5d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613798565b905092915050565b600080828401905083811015612ae3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6001601260006101000a81548160ff021916908315150217905550426015819055506000612b25600483612a1b90919063ffffffff16565b90506000612b3c828461374e90919063ffffffff16565b90506000612b53828561374e90919063ffffffff16565b9050612b5e8261385e565b6000612b693061111f565b90506000612b946002612b86600385612a1b90919063ffffffff16565b6136c890919063ffffffff16565b90506000612bc76002600c5401600a0a612bb9601154856136c890919063ffffffff16565b612a1b90919063ffffffff16565b90506000612bde828461374e90919063ffffffff16565b90506000612bea612760565b9050612c50612c0282856136c890919063ffffffff16565b600460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600460003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600060046000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d0f8260075461374e90919063ffffffff16565b600781905550612d3c612d2b82846136c890919063ffffffff16565b60085461374e90919063ffffffff16565b6008819055503273ffffffffffffffffffffffffffffffffffffffff16601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3600073ffffffffffffffffffffffffffffffffffffffff16601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a37fab89f676f9e161ea2adbd81e1a375773fa55ce4e60152913602e1677f2fa0c2f612e8660028a6136c890919063ffffffff16565b8585856040518085815260200184815260200183815260200182815260200194505050505060405180910390a16000612ec8858761374e90919063ffffffff16565b9050612edf8160075461374e90919063ffffffff16565b600781905550612f0c612efb83836136c890919063ffffffff16565b60085461374e90919063ffffffff16565b600881905550612f3f30601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b04565b612f8e601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611b04565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71988308460008030426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561305857600080fd5b505af115801561306c573d6000803e3d6000fd5b50505050506040513d606081101561308357600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050505050505050505050505050506000601260006101000a81548160ff02191690831515021790555050565b6001601260006101000a81548160ff02191690831515021790555060006130f83061111f565b905060004790506060600267ffffffffffffffff8111801561311957600080fd5b506040519080825280602002602001820160405280156131485781602001602082028036833780820191505090505b509050308160008151811061315957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156131fb57600080fd5b505afa15801561320f573d6000803e3d6000fd5b505050506040513d602081101561322557600080fd5b81019080805190602001909291905050508160018151811061324357fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506132aa30601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611b04565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b815260040180868152602001858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561336e578082015181840152602081019050613353565b505050509050019650505050505050600060405180830381600087803b15801561339757600080fd5b505af11580156133ab573d6000803e3d6000fd5b505050506133c2824761374e90919063ffffffff16565b91507fc7930294ac86944079f9f4a60abedac1187a74a770c6928ea39d9455ebeaf90f8383604051808381526020018281526020019250505060405180910390a15050506000601260006101000a81548160ff021916908315150217905550565b600080859050600084801561343b57506000600d5414155b6134635783801561344f57506000600e5414155b61345a57600061345e565b600e545b613467565b600d545b90506000811461351d5760006134a06002600c5401600a0a613492848b6136c890919063ffffffff16565b612a1b90919063ffffffff16565b90506134b5818461374e90919063ffffffff16565b92506134de6134cd88836136c890919063ffffffff16565b60085461374e90919063ffffffff16565b6008819055507f6d1c76d614228b523baa4dcd9539e2c713b54ff4ab3ff2d1627e7f6cd32be442816040518082815260200191505060405180910390a1505b600085801561352f57506000600f5414155b613557578480156135435750600060105414155b61354e576000613552565b6010545b61355b565b600f545b9050600081146136b95760006135946002600c5401600a0a613586848c6136c890919063ffffffff16565b612a1b90919063ffffffff16565b90506135a9818561374e90919063ffffffff16565b935061360f6135c189836136c890919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612a6590919063ffffffff16565b600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505b82935050505095945050505050565b6000808314156136db5760009050613748565b60008284029050828482816136ec57fe5b0414613743576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613bed6021913960400191505060405180910390fd5b809150505b92915050565b600061379083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506126a0565b905092915050565b60008083118290613844576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156138095780820151818401526020810190506137ee565b50505050905090810190601f1680156138365780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161385057fe5b049050809150509392505050565b6060600267ffffffffffffffff8111801561387857600080fd5b506040519080825280602002602001820160405280156138a75781602001602082028036833780820191505090505b509050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561391257600080fd5b505afa158015613926573d6000803e3d6000fd5b505050506040513d602081101561393c57600080fd5b81019080805190602001909291905050508160008151811061395a57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505030816001815181106139a257fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de9583600084601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040180858152602001806020018473ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015613abc578082015181840152602081019050613aa1565b50505050905001955050505050506000604051808303818588803b158015613ae357600080fd5b505af1158015613af7573d6000803e3d6000fd5b5050505050613b53601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630613b4e601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661111f565b611cfb565b505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373466f7220746865206669727374203630206d696e757465732c206f6e6c792062757973206f66206d6178203930302e30303020746f6b656e732061726520616c6c6f77656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220da7a5ebfe0594734e921d80565ba8b19e15a5a06803c482192dbfe9f89726a6564736f6c634300060c0033
Deployed Bytecode Sourcemap
26481:13372:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27316:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29086:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30349:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39297:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27796:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27929:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27837:45;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29363:99;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27212:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27480:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30523:323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29693:304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29272:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30854:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27383:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27978:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27660:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27249:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39567:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29470:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2786:148;;;;;;;;;;;;;:::i;:::-;;27575:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39170:119;;;;;;;;;;;;;:::i;:::-;;2144:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29177:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31085:274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30005:180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39430:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39692:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27889:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31367:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27750:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30193:148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28013:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27703:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3089:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27316:36;;;;:::o;29086:83::-;29123:13;29156:5;29149:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29086:83;:::o;30349:166::-;30424:4;30446:39;30455:12;:10;:12::i;:::-;30469:7;30478:6;30446:8;:39::i;:::-;30503:4;30496:11;;30349:166;;;;:::o;39297:125::-;2366:12;:10;:12::i;:::-;2356:22;;:6;;;;;;;;;;:22;;;2348:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39398:16:::1;39381:14;:33;;;;39297:125:::0;:::o;27796:34::-;;;;:::o;27929:42::-;;;;;;;;;;;;;:::o;27837:45::-;;;;:::o;29363:99::-;29416:7;29443:11;;29436:18;;29363:99;:::o;27212:30::-;;;;:::o;27480:34::-;;;;:::o;30523:323::-;30629:4;30646:36;30656:6;30664:9;30675:6;30646:9;:36::i;:::-;30695:121;30704:6;30712:12;:10;:12::i;:::-;30726:89;30764:6;30726:89;;;;;;;;;;;;;;;;;:11;:19;30738:6;30726:19;;;;;;;;;;;;;;;:33;30746:12;:10;:12::i;:::-;30726:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30695:8;:121::i;:::-;30834:4;30827:11;;30523:323;;;;;:::o;29693:304::-;29769:7;29822:16;;29802;:36;;29794:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29896:19;29918:20;:18;:20::i;:::-;29896:42;;29956:33;29977:11;29956:16;:20;;:33;;;;:::i;:::-;29949:40;;;29693:304;;;:::o;29272:83::-;29313:5;29338:9;;;;;;;;;;;29331:16;;29272:83;:::o;30854:223::-;30942:4;30964:83;30973:12;:10;:12::i;:::-;30987:7;30996:50;31035:10;30996:11;:25;31008:12;:10;:12::i;:::-;30996:25;;;;;;;;;;;;;;;:34;31022:7;30996:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;30964:8;:83::i;:::-;31065:4;31058:11;;30854:223;;;;:::o;27383:33::-;;;;:::o;27978:28::-;;;;;;;;;;;;;:::o;27660:34::-;;;;;;;;;;;;;:::o;27249:35::-;;;;:::o;39567:117::-;2366:12;:10;:12::i;:::-;2356:22;;:6;;;;;;;;;;:22;;;2348:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39662:14:::1;39647:12;:29;;;;39567:117:::0;:::o;29470:215::-;29536:7;29560:11;:20;29572:7;29560:20;;;;;;;;;;;;;;;;;;;;;;;;;29556:55;;;29589:13;:22;29603:7;29589:22;;;;;;;;;;;;;;;;29582:29;;;;29556:55;29629:48;29649:18;:27;29668:7;29649:27;;;;;;;;;;;;;;;;29629:19;:48::i;:::-;29622:55;;29470:215;;;;:::o;2786:148::-;2366:12;:10;:12::i;:::-;2356:22;;:6;;;;;;;;;;:22;;;2348:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2893:1:::1;2856:40;;2877:6;::::0;::::1;;;;;;;;2856:40;;;;;;;;;;;;2924:1;2907:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2786:148::o:0;27575:40::-;;;;:::o;39170:119::-;2366:12;:10;:12::i;:::-;2356:22;;:6;;;;;;;;;;:22;;;2348:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39244:4:::1;39227:14;;:21;;;;;;;;;;;;;;;;;;39278:3;39259:16;:22;;;;39170:119::o:0;2144:79::-;2182:7;2209:6;;;;;;;;;;;2202:13;;2144:79;:::o;29177:87::-;29216:13;29249:7;29242:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29177:87;:::o;31085:274::-;31178:4;31200:129;31209:12;:10;:12::i;:::-;31223:7;31232:96;31271:15;31232:96;;;;;;;;;;;;;;;;;:11;:25;31244:12;:10;:12::i;:::-;31232:25;;;;;;;;;;;;;;;:34;31258:7;31232:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;31200:8;:129::i;:::-;31347:4;31340:11;;31085:274;;;;:::o;30005:180::-;30091:4;30113:42;30123:12;:10;:12::i;:::-;30137:9;30148:6;30113:9;:42::i;:::-;30173:4;30166:11;;30005:180;;;;:::o;39430:129::-;2366:12;:10;:12::i;:::-;2356:22;;:6;;;;;;;;;;:22;;;2348:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39534:17:::1;39516:15;:35;;;;39430:129:::0;:::o;39692:121::-;2366:12;:10;:12::i;:::-;2356:22;;:6;;;;;;;;;;:22;;;2348:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39790:15:::1;39774:13;:31;;;;39692:121:::0;:::o;27889:31::-;;;;:::o;31367:110::-;31425:4;31449:11;:20;31461:7;31449:20;;;;;;;;;;;;;;;;;;;;;;;;;31442:27;;31367:110;;;:::o;27750:37::-;;;;:::o;30193:148::-;30274:7;30306:11;:18;30318:5;30306:18;;;;;;;;;;;;;;;:27;30325:7;30306:27;;;;;;;;;;;;;;;;30299:34;;30193:148;;;;:::o;28013:23::-;;;;;;;;;;;;;:::o;27703:40::-;;;;:::o;3089:244::-;2366:12;:10;:12::i;:::-;2356:22;;:6;;;;;;;;;;:22;;;2348:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198:1:::1;3178:22;;:8;:22;;;;3170:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3288:8;3259:38;;3280:6;::::0;::::1;;;;;;;;3259:38;;;;;;;;;;;;3317:8;3308:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;3089:244:::0;:::o;736:106::-;789:15;824:10;817:17;;736:106;:::o;31485:337::-;31595:1;31578:19;;:5;:19;;;;31570:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31676:1;31657:21;;:7;:21;;;;31649:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31760:6;31730:11;:18;31742:5;31730:18;;;;;;;;;;;;;;;:27;31749:7;31730:27;;;;;;;;;;;;;;;:36;;;;31798:7;31782:32;;31791:5;31782:32;;;31807:6;31782:32;;;;;;;;;;;;;;;;;;31485:337;;;:::o;31830:2266::-;31945:1;31927:20;;:6;:20;;;;31919:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32029:1;32008:23;;:9;:23;;;;32000:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32099:1;32090:6;:10;32082:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32164:14;;;;;;;;;;;32163:15;:36;;;;;32192:7;:5;:7::i;:::-;32182:17;;:6;:17;;;;32163:36;32159:105;;;32216:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32159:105;32276:22;32311:7;:5;:7::i;:::-;32301:17;;:6;:17;;;:47;;;;;32335:13;;;;;;;;;;;32322:26;;:9;:26;;;32301:47;32276:72;;32359:10;32382:13;;;;;;;;;;;32372:23;;:6;:23;;;:47;;;;;32412:7;:5;:7::i;:::-;32399:20;;:9;:20;;;;32372:47;32359:60;;32430:11;32454:7;:5;:7::i;:::-;32444:17;;:6;:17;;;;:47;;;;;32478:13;;;;;;;;;;;32465:26;;:9;:26;;;32444:47;32430:61;;32508:5;:44;;;;;32549:3;32536:10;32517:16;;:29;:35;32508:44;:66;;;;;32565:9;32556:6;:18;32508:66;32504:178;;;32591:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32504:178;32699:16;;;;;;;;;;;32698:17;:44;;;;;32729:13;;;;;;;;;;;32719:23;;:6;:23;;;;32698:44;:66;;;;;32747:17;32746:18;32698:66;32694:606;;;32781:9;32793:4;32781:16;;32812:23;32838:21;32812:47;;32900:17;;32884:13;;:33;32878:3;:39;:77;;;;;32939:16;;32921:15;:34;32878:77;32874:171;;;32976:22;32982:15;32976:5;:22::i;:::-;33024:5;33017:12;;32874:171;33065:4;33061:228;;;33090:28;33121:24;33139:4;33121:9;:24::i;:::-;33090:55;;33192:19;;33168:20;:43;33164:110;;33236:18;:16;:18::i;:::-;33164:110;33061:228;;32694:606;;;33312:22;33337:6;33312:31;;33354:12;33369:20;:18;:20::i;:::-;33354:35;;33407:17;:25;33425:6;33407:25;;;;;;;;;;;;;;;;;;;;;;;;;33406:26;:59;;;;;33437:17;:28;33455:9;33437:28;;;;;;;;;;;;;;;;;;;;;;;;;33436:29;33406:59;:80;;;;;33470:16;;;;;;;;;;;33469:17;33406:80;33402:177;;;33520:47;33531:6;33539;33547:4;33553:5;33560:6;33520:10;:47::i;:::-;33503:64;;33402:177;33620:48;33651:16;33662:4;33651:6;:10;;:16;;;;:::i;:::-;33620:18;:26;33639:6;33620:26;;;;;;;;;;;;;;;;:30;;:48;;;;:::i;:::-;33591:18;:26;33610:6;33591:26;;;;;;;;;;;;;;;:77;;;;33711:59;33745:24;33764:4;33745:14;:18;;:24;;;;:::i;:::-;33711:18;:29;33730:9;33711:29;;;;;;;;;;;;;;;;:33;;:59;;;;:::i;:::-;33679:18;:29;33698:9;33679:29;;;;;;;;;;;;;;;:91;;;;33787:11;:19;33799:6;33787:19;;;;;;;;;;;;;;;;;;;;;;;;;33783:109;;;33847:33;33873:6;33847:13;:21;33861:6;33847:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;33823:13;:21;33837:6;33823:21;;;;;;;;;;;;;;;:57;;;;33783:109;33906:11;:22;33918:9;33906:22;;;;;;;;;;;;;;;;;;;;;;;;;33902:126;;;33972:44;34001:14;33972:13;:24;33986:9;33972:24;;;;;;;;;;;;;;;;:28;;:44;;;;:::i;:::-;33945:13;:24;33959:9;33945:24;;;;;;;;;;;;;;;:71;;;;33902:126;34062:9;34045:43;;34054:6;34045:43;;;34073:14;34045:43;;;;;;;;;;;;;;;;;;31830:2266;;;;;;;;:::o;5120:192::-;5206:7;5239:1;5234;:6;;5242:12;5226:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5266:9;5282:1;5278;:5;5266:17;;5303:1;5296:8;;;5120:192;;;;;:::o;35244:744::-;35296:7;35316:24;35343:16;;35316:43;;35370:19;35392:11;;35370:33;;35419:9;35414:394;35438:9;:16;;;;35434:1;:20;35414:394;;;35515:16;35480:18;:32;35499:9;35509:1;35499:12;;;;;;;;;;;;;;;;;;;;;;;;;35480:32;;;;;;;;;;;;;;;;:51;:96;;;;35565:11;35535:13;:27;35549:9;35559:1;35549:12;;;;;;;;;;;;;;;;;;;;;;;;;35535:27;;;;;;;;;;;;;;;;:41;35480:96;35476:159;;;35602:33;35623:11;;35602:16;;:20;;:33;;;;:::i;:::-;35595:40;;;;;;;35476:159;35669:54;35690:18;:32;35709:9;35719:1;35709:12;;;;;;;;;;;;;;;;;;;;;;;;;35690:32;;;;;;;;;;;;;;;;35669:16;:20;;:54;;;;:::i;:::-;35650:73;;35752:44;35768:13;:27;35782:9;35792:1;35782:12;;;;;;;;;;;;;;;;;;;;;;;;;35768:27;;;;;;;;;;;;;;;;35752:11;:15;;:44;;;;:::i;:::-;35738:58;;35456:3;;;;;;;35414:394;;;;35841:33;35862:11;;35841:16;;:20;;:33;;;;:::i;:::-;35822:16;:52;35818:111;;;35896:33;35917:11;;35896:16;;:20;;:33;;;;:::i;:::-;35889:40;;;;;;35818:111;35947:33;35968:11;35947:16;:20;;:33;;;;:::i;:::-;35940:40;;;;35244:744;;:::o;6518:132::-;6576:7;6603:39;6607:1;6610;6603:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6596:46;;6518:132;;;;:::o;4217:181::-;4275:7;4295:9;4311:1;4307;:5;4295:17;;4336:1;4331;:6;;4323:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4389:1;4382:8;;;4217:181;;;;:::o;37190:1972::-;28330:4;28311:16;;:23;;;;;;;;;;;;;;;;;;37277:3:::1;37261:13;:19;;;;37293:25;37321:22;37341:1;37321:15;:19;;:22;;;;:::i;:::-;37293:50;;37354:31;37388:38;37408:17;37388:15;:19;;:38;;;;:::i;:::-;37354:72;;37437:34;37474:44;37494:23;37474:15;:19;;:44;;;;:::i;:::-;37437:81;;37531:41;37548:23;37531:16;:41::i;:::-;37585:20;37608:24;37626:4;37608:9;:24::i;:::-;37585:47;;37645:27;37675:26;37699:1;37675:19;37692:1;37675:12;:16;;:19;;;;:::i;:::-;:23;;:26;;;;:::i;:::-;37645:56;;37739:23;37765:73;37835:1;37821:11;;:15;37814:2;:23;37765:44;37789:19;;37765;:23;;:44;;;;:::i;:::-;:48;;:73;;;;:::i;:::-;37739:99;;37849:20;37872:40;37896:15;37872:19;:23;;:40;;;;:::i;:::-;37849:63;;37925:12;37940:20;:18;:20::i;:::-;37925:35;;38005:60;38039:25;38059:4;38039:15;:19;;:25;;;;:::i;:::-;38005:18;:29;38024:9;38005:29;;;;;;;;;;;;;;;;:33;;:60;;;;:::i;:::-;37973:18;:29;37992:9;37973:29;;;;;;;;;;;;;;;:92;;;;38116:1;38076:18;:37;38103:8;;;;;;;;;;;38076:37;;;;;;;;;;;;;;;:41;;;;38144:29;38160:12;38144:11;;:15;;:29;;;;:::i;:::-;38130:11;:43;;;;38203:44;38224:22;38241:4;38224:12;:16;;:22;;;;:::i;:::-;38203:16;;:20;;:44;;;;:::i;:::-;38184:16;:63;;;;38293:9;38265:55;;38282:8;;;;;;;;;;;38265:55;;;38304:15;38265:55;;;;;;;;;;;;;;;;;;38372:1;38336:53;;38353:8;;;;;;;;;;;38336:53;;;38376:12;38336:53;;;;;;;;;;;;;;;;;;38405:96;38424:24;38446:1;38424:17;:21;;:24;;;;:::i;:::-;38450:19;38471:15;38488:12;38405:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38540:26;38569:37;38586:19;38569:12;:16;;:37;;;;:::i;:::-;38540:66;;38631:35;38647:18;38631:11;;:15;;:35;;;;:::i;:::-;38617:11;:49;;;;38696:50;38717:28;38740:4;38717:18;:22;;:28;;;;:::i;:::-;38696:16;;:20;;:50;;;;:::i;:::-;38677:16;:69;;;;38759;38776:4;38791:15;;;;;;;;;;;38809:18;38759:8;:69::i;:::-;38839:73;38856:8;;;;;;;;;;;38875:15;;;;;;;;;;;38893:18;38839:8;:73::i;:::-;38925:15;;;;;;;;;;;:31;;;38965:26;39015:4;39035:18;39068:1;39084::::0;39108:4:::1;39128:15;38925:229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28345:1;;;;;;;;;28376:5:::0;28357:16;;:24;;;;;;;;;;;;;;;;;;37190:1972;:::o;35996:697::-;28330:4;28311:16;;:23;;;;;;;;;;;;;;;;;;36055:19:::1;36077:24;36095:4;36077:9;:24::i;:::-;36055:46;;36112:17;36132:21;36112:41;;36166:21;36204:1;36190:16;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36166:40;;36235:4;36217;36222:1;36217:7;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;36261:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;36251:4;36256:1;36251:7;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;36296:62;36313:4;36328:15;;;;;;;;;;;36346:11;36296:8;:62::i;:::-;36371:15;;;;;;;;;;;:66;;;36452:11;36478:1;36494:4;36521;36541:15;36371:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36592:36;36618:9;36592:21;:25;;:36;;;;:::i;:::-;36580:48;;36644:41;36662:11;36675:9;36644:41;;;;;;;;;;;;;;;;;;;;;;;;28345:1;;;28376:5:::0;28357:16;;:24;;;;;;;;;;;;;;;;;;35996:697::o;34104:1132::-;34213:7;34233:22;34258:6;34233:31;;34277:18;34298:5;:28;;;;;34325:1;34307:14;;:19;;34298:28;:102;;34347:6;:30;;;;;34376:1;34357:15;;:20;;34347:30;:52;;34398:1;34347:52;;;34380:15;;34347:52;34298:102;;;34329:14;;34298:102;34277:123;;34429:1;34415:10;:15;34411:292;;34447:14;34464:51;34512:1;34498:11;;:15;34491:2;:23;34464:22;34475:10;34464:6;:10;;:22;;;;:::i;:::-;:26;;:51;;;;:::i;:::-;34447:68;;34547:26;34566:6;34547:14;:18;;:26;;;;:::i;:::-;34530:43;;34607:38;34628:16;34639:4;34628:6;:10;;:16;;;;:::i;:::-;34607;;:20;;:38;;;;:::i;:::-;34588:16;:57;;;;34665:26;34684:6;34665:26;;;;;;;;;;;;;;;;;;34411:292;;34715:20;34738:5;:26;;;;;34763:1;34747:12;;:17;;34738:26;:94;;34783:6;:28;;;;;34810:1;34793:13;;:18;;34783:28;:48;;34830:1;34783:48;;;34814:13;;34783:48;34738:94;;;34767:12;;34738:94;34715:117;;34863:1;34847:12;:17;34843:352;;34881:16;34900:53;34950:1;34936:11;;:15;34929:2;:23;34900:24;34911:12;34900:6;:10;;:24;;;;:::i;:::-;:28;;:53;;;;:::i;:::-;34881:72;;34985:28;35004:8;34985:14;:18;;:28;;;;:::i;:::-;34968:45;;35064:57;35102:18;35115:4;35102:8;:12;;:18;;;;:::i;:::-;35064;:33;35091:4;35064:33;;;;;;;;;;;;;;;;:37;;:57;;;;:::i;:::-;35028:18;:33;35055:4;35028:33;;;;;;;;;;;;;;;:93;;;;35167:4;35141:42;;35150:7;35141:42;;;35174:8;35141:42;;;;;;;;;;;;;;;;;;34843:352;;35214:14;35207:21;;;;;34104:1132;;;;;;;:::o;5571:471::-;5629:7;5879:1;5874;:6;5870:47;;;5904:1;5897:8;;;;5870:47;5929:9;5945:1;5941;:5;5929:17;;5974:1;5969;5965;:5;;;;;;:10;5957:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6033:1;6026:8;;;5571:471;;;;;:::o;4681:136::-;4739:7;4766:43;4770:1;4773;4766:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4759:50;;4681:136;;;;:::o;7146:278::-;7232:7;7264:1;7260;:5;7267:12;7252:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7291:9;7307:1;7303;:5;;;;;;7291:17;;7415:1;7408:8;;;7146:278;;;;;:::o;36701:481::-;36765:21;36803:1;36789:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36765:40;;36826:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36816:4;36821:1;36816:7;;;;;;;;;;;;;:32;;;;;;;;;;;36877:4;36859;36864:1;36859:7;;;;;;;;;;;;;:23;;;;;;;;;;;36895:15;;;;;;;;;;;:66;;;36970:9;36995:1;37011:4;37038:8;;;;;;;;;;;37062:15;36895:193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37101:73;37119:8;;;;;;;;;;;37138:4;37145:28;37163:8;;;;;;;;;;;37145:9;:28::i;:::-;37101:9;:73::i;:::-;36701:481;;:::o
Swarm Source
ipfs://e631de4bd87a61ba33e1b837502d9a5888184ff58874f763d69fc1e45194187e
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.