ERC-20
Overview
Max Total Supply
100,000,000,000 WGMINU
Holders
80
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
69,901,963.031356951 WGMINUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WGMINU
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-11 */ // SPDX-License-Identifier: MIT // t.me/WGMINU pragma solidity ^0.6.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; } } /** * @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); } /** * @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; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, 'Address: insufficient balance'); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(''); require(success, 'Address: unable to send value, recipient may have reverted'); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, 'Address: low-level call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, 'Address: low-level call with value failed'); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, 'Address: insufficient balance for call'); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), 'Address: call to non-contract'); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), 'Ownable: caller is not the owner'); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), 'Ownable: new owner is the zero address'); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Pair { function sync() external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; } pragma solidity ^0.6.0; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() public { _status = _NOT_ENTERED; } modifier nonReentrant() { require(_status != _ENTERED, 'ReentrancyGuard: reentrant call'); _status = _ENTERED; _; _status = _NOT_ENTERED; } modifier isHuman() { require(tx.origin == msg.sender, 'sorry humans only'); _; } } pragma solidity ^0.6.0; library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeApprove: approve failed' ); } function safeTransfer( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeTransfer: transfer failed' ); } function safeTransferFrom( address token, address from, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::transferFrom: transferFrom failed' ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, 'TransferHelper::safeTransferETH: ETH transfer failed'); } } interface IPinkAntiBot { function setTokenOwner(address owner) external; function onPreTransferCheck( address from, address to, uint256 amount ) external; } interface ITopHolderRewardDistributor { function depositReward(uint256 amount) external; function onTransfer(address sender, address recipient, uint256 amount) external; } contract WGMINU is Context, IERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; using Address for address; using TransferHelper for address; string private _name = 'WGMInu'; string private _symbol = 'WGMINU'; 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 = 100_000_000_000e9; uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) public isTaxless; mapping(address => bool) internal _isExcluded; address[] internal _excluded; uint256 public _feeDecimal = 2; // index 0 = buy fee, index 1 = sell fee, index 2 = p2p fee uint256[] public _taxFee; uint256[] public _teamFee; uint256[] public _marketingFee; uint256 internal _feeTotal; uint256 internal _marketingFeeCollected; uint256 internal _teamFeeCollected; bool public isFeeActive = false; // should be true bool private inSwap; bool public swapEnabled = true; uint256 public maxTxAmount = _tokenTotal.mul(5).div(1000); // 0.5% uint256 public minTokensBeforeSwap = 1_000_000e9; address public marketingWallet; address public teamWallet; IUniswapV2Router02 public router; address public pair; event SwapUpdated(bool enabled); event Swap(uint256 swaped, uint256 recieved); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor(address _router,address _owner,address _marketingWallet, address _teamWallet) public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router); pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); router = _uniswapV2Router; marketingWallet = _marketingWallet; teamWallet = _teamWallet; isTaxless[_owner] = true; isTaxless[teamWallet] = true; isTaxless[marketingWallet] = true; isTaxless[address(this)] = true; excludeAccount(address(pair)); excludeAccount(address(this)); excludeAccount(address(marketingWallet)); excludeAccount(address(teamWallet)); excludeAccount(address(address(0))); excludeAccount(address(address(0x000000000000000000000000000000000000dEaD))); _reflectionBalance[_owner] = _reflectionTotal; emit Transfer(address(0),_owner, _tokenTotal); _taxFee.push(100); _taxFee.push(100); _taxFee.push(100); _teamFee.push(400); _teamFee.push(400); _teamFee.push(400); _marketingFee.push(500); _marketingFee.push(500); _marketingFee.push(500); transferOwnership(_owner); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tokenTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, 'ERC20: transfer amount exceeds allowance') ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, 'ERC20: decreased allowance below zero') ); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function reflectionFromToken(uint256 tokenAmount) public view returns (uint256) { require(tokenAmount <= _tokenTotal, 'Amount must be less than supply'); return tokenAmount.mul(_getReflectionRate()); } 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 excludeAccount(address account) public onlyOwner { require(account != address(router), 'ERC20: We can not exclude Uniswap router.'); require(!_isExcluded[account], 'ERC20: Account is already excluded'); if (_reflectionBalance[account] > 0) { _tokenBalance[account] = tokenFromReflection(_reflectionBalance[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner { require(_isExcluded[account], 'ERC20: Account is already included'); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tokenBalance[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), 'ERC20: approve from the zero address'); require(spender != address(0), 'ERC20: approve to the zero address'); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address sender, address recipient, uint256 amount ) private { require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); require(amount > 0, 'Transfer amount must be greater than zero'); require(isTaxless[sender] || isTaxless[recipient] || amount <= maxTxAmount, 'Max Transfer Limit Exceeds!'); if (swapEnabled && !inSwap && sender != pair) { swap(); } uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); if (isFeeActive && !isTaxless[sender] && !isTaxless[recipient] && !inSwap) { transferAmount = collectFee(sender, amount, rate, recipient == pair, sender != pair && recipient != pair); } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); } function calculateFee(uint256 feeIndex, uint256 amount) internal returns(uint256, uint256) { uint256 taxFee = amount.mul(_taxFee[feeIndex]).div(10**(_feeDecimal + 2)); uint256 marketingFee = amount.mul(_marketingFee[feeIndex]).div(10**(_feeDecimal + 2)); uint256 teamFee = amount.mul(_teamFee[feeIndex]).div(10**(_feeDecimal + 2)); _marketingFeeCollected = _marketingFeeCollected.add(marketingFee); _teamFeeCollected = _teamFeeCollected.add(teamFee); return (taxFee, marketingFee.add(teamFee)); } function collectFee( address account, uint256 amount, uint256 rate, bool sell, bool p2p ) private returns (uint256) { uint256 transferAmount = amount; (uint256 taxFee, uint256 otherFee) = calculateFee(p2p ? 2 : sell ? 1 : 0, amount); if(otherFee != 0) { transferAmount = transferAmount.sub(otherFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(otherFee.mul(rate)); if (_isExcluded[address(this)]) { _tokenBalance[address(this)] = _tokenBalance[address(this)].add(otherFee); } emit Transfer(account, address(this), otherFee); } if(taxFee != 0){ _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)); } _feeTotal = _feeTotal.add(taxFee).add(otherFee); return transferAmount; } function swap() private lockTheSwap { uint256 totalFee = _teamFeeCollected.add(_marketingFeeCollected); if(minTokensBeforeSwap > totalFee) return; address[] memory sellPath = new address[](2); sellPath[0] = address(this); sellPath[1] = router.WETH(); uint256 balanceBefore = address(this).balance; _approve(address(this), address(router), totalFee); router.swapExactTokensForETHSupportingFeeOnTransferTokens( totalFee, 0, sellPath, address(this), block.timestamp ); uint256 amountFee = address(this).balance.sub(balanceBefore); uint256 amountMarketing = amountFee.mul(_marketingFeeCollected).div(totalFee); if(amountMarketing > 0) payable(marketingWallet).transfer(amountMarketing); uint256 amountTeam = address(this).balance; if(amountTeam > 0) payable(marketingWallet).transfer(address(this).balance); _marketingFeeCollected = 0; _teamFeeCollected = 0; emit Swap(totalFee, amountFee); } 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 setPairRouterRewardToken(address _pair, IUniswapV2Router02 _router) external onlyOwner { pair = _pair; router = _router; } function setTaxless(address account, bool value) external onlyOwner { isTaxless[account] = value; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; SwapUpdated(enabled); } function setFeeActive(bool value) external onlyOwner { isFeeActive = value; } function setTaxFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { _taxFee[0] = buy; _taxFee[1] = sell; _taxFee[2] = p2p; } function setTeamFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { _teamFee[0] = buy; _teamFee[1] = sell; _teamFee[2] = p2p; } function setMarketingFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { _marketingFee[0] = buy; _marketingFee[1] = sell; _marketingFee[2] = p2p; } function setMarketingWallet(address wallet) external onlyOwner { marketingWallet = wallet; } function setTeamWallet(address wallet) external onlyOwner { teamWallet = wallet; } function setMaxTxAmount(uint256 percentage) external onlyOwner { maxTxAmount = _tokenTotal.mul(percentage).div(10000); } function setMinTokensBeforeSwap(uint256 amount) external onlyOwner { minTokensBeforeSwap = amount; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swaped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recieved","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapUpdated","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":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_teamFee","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"_router","type":"address"}],"name":"setPairRouterRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600660808190526557474d496e7560d01b60a090815262000029916002919062000c32565b506040805180820190915260068082526557474d494e5560d01b6020909201918252620000599160039162000c32565b506004805460ff1916600917905568056bc75e2d63100000600881905560001906196009556002600d55601480546201000062ff00ff19909116179055600854620000cf906103e890620000bb9060056200052a602090811b6200199c17901c565b6200059160201b620019f51790919060201c565b60155566038d7ea4c68000601655348015620000ea57600080fd5b506040516200376538038062003765833981810160405260808110156200011057600080fd5b5080516020820151604083015160609093015191929091600062000133620005db565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350916000805160206200371c833981519152908290a350600180819055506000849050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001b257600080fd5b505afa158015620001c7573d6000803e3d6000fd5b505050506040513d6020811015620001de57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200022f57600080fd5b505afa15801562000244573d6000803e3d6000fd5b505050506040513d60208110156200025b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002ae57600080fd5b505af1158015620002c3573d6000803e3d6000fd5b505050506040513d6020811015620002da57600080fd5b5051601a80546001600160a01b03199081166001600160a01b03938416178255601980548216858516179055601780548216878516178155601880549092168685161782558784166000908152600a6020526040808220805460ff1990811660019081179092559454871683528183208054861682179055925486168252808220805485168417905530825290208054909216179055546200037d9116620005e0565b6200038830620005e0565b6017546200039f906001600160a01b0316620005e0565b601854620003b6906001600160a01b0316620005e0565b620003c26000620005e0565b620003cf61dead620005e0565b6009546001600160a01b03851660008181526005602090815260408083209490945560085484519081529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3600e80546001818101835560647fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd92830181905583548083018555830181905583548083019094559290910191909155600f805480830182556101907f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802918201819055825480850184558201819055825480850190935591015560108054808301825560008290526101f47f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672918201819055825480850184558201819055825493840190925591909101556200051f84620007a8565b505050505062000cce565b6000826200053b575060006200058b565b828202828482816200054957fe5b0414620005885760405162461bcd60e51b8152600401808060200182810382526021815260200180620036db6021913960400191505060405180910390fd5b90505b92915050565b60006200058883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200089560201b60201c565b335b90565b620005ea620005db565b6000546001600160a01b039081169116146200063c576040805162461bcd60e51b81526020600482018190526024820152600080516020620036fc833981519152604482015290519081900360640190fd5b6019546001600160a01b03828116911614156200068b5760405162461bcd60e51b81526004018080602001828103825260298152602001806200373c6029913960400191505060405180910390fd5b6001600160a01b0381166000908152600b602052604090205460ff1615620006e55760405162461bcd60e51b8152600401808060200182810382526022815260200180620036696022913960400191505060405180910390fd5b6001600160a01b0381166000908152600560205260409020541562000742576001600160a01b03811660009081526005602052604090205462000728906200093c565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b620007b2620005db565b6000546001600160a01b0390811691161462000804576040805162461bcd60e51b81526020600482018190526024820152600080516020620036fc833981519152604482015290519081900360640190fd5b6001600160a01b0381166200084b5760405162461bcd60e51b8152600401808060200182810382526026815260200180620036b56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206200371c83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008183620009255760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620008e9578181015183820152602001620008cf565b50505050905090810190601f168015620009175780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200093257fe5b0495945050505050565b6000600954821115620009815760405162461bcd60e51b815260040180806020018281038252602a8152602001806200368b602a913960400191505060405180910390fd5b60006200098d620009b0565b9050620009a981846200059160201b620019f51790919060201c565b9392505050565b60095460085460009190825b600c5481101562000b1b578260056000600c8481548110620009da57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118062000a4157508160066000600c848154811062000a1a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1562000a705762000a656008546009546200059160201b620019f51790919060201c565b9350505050620005dd565b62000abf60056000600c848154811062000a8657fe5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054859162001a3762000b8b821b17901c565b925062000b1060066000600c848154811062000ad757fe5b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054849162001a3762000b8b821b17901c565b9150600101620009bc565b5062000b3a6008546009546200059160201b620019f51790919060201c565b82101562000b6a5762000b606008546009546200059160201b620019f51790919060201c565b92505050620005dd565b62000b8481836200059160201b620019f51790919060201c565b9250505090565b60006200058883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000bd560201b60201c565b6000818484111562000c2a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620008e9578181015183820152602001620008cf565b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000c7557805160ff191683800117855562000ca5565b8280016001018555821562000ca5579182015b8281111562000ca557825182559160200191906001019062000c88565b5062000cb392915062000cb7565b5090565b5b8082111562000cb3576000815560010162000cb8565b61298b8062000cde6000396000f3fe6080604052600436106102605760003560e01c80638c0b5e2211610144578063cba0e996116100b6578063ec28438a1161007a578063ec28438a146108f3578063f2cc0c181461091d578063f2fde38b14610950578063f84354f114610983578063f887ea40146109b6578063fbf63fc2146109cb57610267565b8063cba0e9961461082f578063dd62ed3e14610862578063e01af92c1461089d578063e43504da146108c9578063e5d41c6b146108de57610267565b8063a457c2d711610108578063a457c2d714610713578063a5ae2d2f1461074c578063a8aa1b311461077f578063a9059cbb14610794578063a918299c146107cd578063b7bfff651461080357610267565b80638c0b5e22146106745780638da5cb5b1461068957806391cc19c21461069e57806394169e0d146106c857806395d89b41146106fe57610267565b8063324c3454116101dd57806359927044116101a1578063599270441461059e5780635d098b38146105cf5780636ddd17131461060257806370a0823114610617578063715018a61461064a57806375f0a8741461065f57610267565b8063324c3454146104a057806339509351146104d6578063455fdd781461050f57806347f2dc5b1461053957806348a464731461057457610267565b806318160ddd1161022457806318160ddd146103de57806319db457d146103f357806323b872dd146104085780632d8381191461044b578063313ce5671461047557610267565b806306fdde031461026c578063095ea7b3146102f65780631185c1d5146103435780631392c0861461037f5780631525ff7d146103a957610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a06565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a9a565b604080519115158252519081900360200190f35b34801561034f57600080fd5b5061036d6004803603602081101561036657600080fd5b5035610ab8565b60408051918252519081900360200190f35b34801561038b57600080fd5b5061036d600480360360208110156103a257600080fd5b5035610ad6565b3480156103b557600080fd5b506103dc600480360360208110156103cc57600080fd5b50356001600160a01b0316610b49565b005b3480156103ea57600080fd5b5061036d610bc3565b3480156103ff57600080fd5b5061036d610bc9565b34801561041457600080fd5b5061032f6004803603606081101561042b57600080fd5b506001600160a01b03813581169160208101359091169060400135610bcf565b34801561045757600080fd5b5061036d6004803603602081101561046e57600080fd5b5035610c56565b34801561048157600080fd5b5061048a610cb6565b6040805160ff9092168252519081900360200190f35b3480156104ac57600080fd5b506103dc600480360360608110156104c357600080fd5b5080359060208101359060400135610cbf565b3480156104e257600080fd5b5061032f600480360360408110156104f957600080fd5b506001600160a01b038135169060200135610d71565b34801561051b57600080fd5b5061036d6004803603602081101561053257600080fd5b5035610dbf565b34801561054557600080fd5b506103dc6004803603604081101561055c57600080fd5b506001600160a01b0381351690602001351515610dcc565b34801561058057600080fd5b506103dc6004803603602081101561059757600080fd5b5035610e4f565b3480156105aa57600080fd5b506105b3610eac565b604080516001600160a01b039092168252519081900360200190f35b3480156105db57600080fd5b506103dc600480360360208110156105f257600080fd5b50356001600160a01b0316610ebb565b34801561060e57600080fd5b5061032f610f35565b34801561062357600080fd5b5061036d6004803603602081101561063a57600080fd5b50356001600160a01b0316610f44565b34801561065657600080fd5b506103dc610fa6565b34801561066b57600080fd5b506105b3611048565b34801561068057600080fd5b5061036d611057565b34801561069557600080fd5b506105b361105d565b3480156106aa57600080fd5b5061036d600480360360208110156106c157600080fd5b503561106c565b3480156106d457600080fd5b506103dc600480360360608110156106eb57600080fd5b5080359060208101359060400135611079565b34801561070a57600080fd5b5061028161111a565b34801561071f57600080fd5b5061032f6004803603604081101561073657600080fd5b506001600160a01b03813516906020013561117b565b34801561075857600080fd5b5061032f6004803603602081101561076f57600080fd5b50356001600160a01b03166111e3565b34801561078b57600080fd5b506105b36111f8565b3480156107a057600080fd5b5061032f600480360360408110156107b757600080fd5b506001600160a01b038135169060200135611207565b3480156107d957600080fd5b506103dc600480360360608110156107f057600080fd5b508035906020810135906040013561121b565b34801561080f57600080fd5b506103dc6004803603602081101561082657600080fd5b503515156112bc565b34801561083b57600080fd5b5061032f6004803603602081101561085257600080fd5b50356001600160a01b0316611327565b34801561086e57600080fd5b5061036d6004803603604081101561088557600080fd5b506001600160a01b0381358116916020013516611345565b3480156108a957600080fd5b506103dc600480360360208110156108c057600080fd5b50351515611370565b3480156108d557600080fd5b5061032f611419565b3480156108ea57600080fd5b5061036d611422565b3480156108ff57600080fd5b506103dc6004803603602081101561091657600080fd5b5035611428565b34801561092957600080fd5b506103dc6004803603602081101561094057600080fd5b50356001600160a01b03166114a7565b34801561095c57600080fd5b506103dc6004803603602081101561097357600080fd5b50356001600160a01b0316611664565b34801561098f57600080fd5b506103dc600480360360208110156109a657600080fd5b50356001600160a01b031661175c565b3480156109c257600080fd5b506105b3611907565b3480156109d757600080fd5b506103dc600480360360408110156109ee57600080fd5b506001600160a01b0381358116916020013516611916565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b505050505090505b90565b6000610aae610aa7611a79565b8484611a7d565b5060015b92915050565b600e8181548110610ac557fe5b600091825260209091200154905081565b6000600854821115610b2f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b610b41610b3a611b69565b839061199c565b90505b919050565b610b51611a79565b6000546001600160a01b03908116911614610ba1576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60085490565b600d5481565b6000610bdc848484611ce0565b610c4c84610be8611a79565b610c478560405180606001604052806028815260200161282c602891396001600160a01b038a16600090815260076020526040812090610c26611a79565b6001600160a01b0316815260208101919091526040016000205491906120da565b611a7d565b5060019392505050565b6000600954821115610c995760405162461bcd60e51b815260040180806020018281038252602a815260200180612799602a913960400191505060405180910390fd5b6000610ca3611b69565b9050610caf83826119f5565b9392505050565b60045460ff1690565b610cc7611a79565b6000546001600160a01b03908116911614610d17576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b82600e600081548110610d2657fe5b906000526020600020018190555081600e600181548110610d4357fe5b906000526020600020018190555080600e600281548110610d6057fe5b600091825260209091200155505050565b6000610aae610d7e611a79565b84610c478560076000610d8f611a79565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612171565b600f8181548110610ac557fe5b610dd4611a79565b6000546001600160a01b03908116911614610e24576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610e57611a79565b6000546001600160a01b03908116911614610ea7576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601655565b6018546001600160a01b031681565b610ec3611a79565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60145462010000900460ff1681565b6001600160a01b0381166000908152600b602052604081205460ff1615610f8457506001600160a01b038116600090815260066020526040902054610b44565b6001600160a01b038216600090815260056020526040902054610b4190610c56565b610fae611a79565b6000546001600160a01b03908116911614610ffe576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6017546001600160a01b031681565b60155481565b6000546001600160a01b031690565b60108181548110610ac557fe5b611081611a79565b6000546001600160a01b039081169116146110d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b82600f6000815481106110e057fe5b906000526020600020018190555081600f6001815481106110fd57fe5b906000526020600020018190555080600f600281548110610d6057fe5b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b6000610aae611188611a79565b84610c478560405180606001604052806025815260200161293160259139600760006111b2611a79565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906120da565b600a6020526000908152604090205460ff1681565b601a546001600160a01b031681565b6000610aae611214611a79565b8484611ce0565b611223611a79565b6000546001600160a01b03908116911614611273576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b82601060008154811061128257fe5b906000526020600020018190555081601060018154811061129f57fe5b9060005260206000200181905550806010600281548110610d6057fe5b6112c4611a79565b6000546001600160a01b03908116911614611314576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6014805460ff1916911515919091179055565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b611378611a79565b6000546001600160a01b039081169116146113c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6014805482151562010000810262ff0000199092169190911790915560408051918252517fd2b6af97bbcf94796ee3844c1f0948ba30b3f2d496875e5e1587309eb210aac59181900360200190a150565b60145460ff1681565b60165481565b611430611a79565b6000546001600160a01b03908116911614611480576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6114a161271061149b8360085461199c90919063ffffffff16565b906119f5565b60155550565b6114af611a79565b6000546001600160a01b039081169116146114ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6019546001600160a01b038281169116141561154c5760405162461bcd60e51b815260040180806020018281038252602981526020018061289d6029913960400191505060405180910390fd5b6001600160a01b0381166000908152600b602052604090205460ff16156115a45760405162461bcd60e51b81526004018080602001828103825260228152602001806127776022913960400191505060405180910390fd5b6001600160a01b038116600090815260056020526040902054156115fe576001600160a01b0381166000908152600560205260409020546115e490610c56565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b61166c611a79565b6000546001600160a01b039081169116146116bc576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6001600160a01b0381166117015760405162461bcd60e51b81526004018080602001828103825260268152602001806127c36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611764611a79565b6000546001600160a01b039081169116146117b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600b602052604090205460ff1661180b5760405162461bcd60e51b815260040180806020018281038252602281526020018061290f6022913960400191505060405180910390fd5b60005b600c5481101561190357816001600160a01b0316600c828154811061182f57fe5b6000918252602090912001546001600160a01b031614156118fb57600c8054600019810190811061185c57fe5b600091825260209091200154600c80546001600160a01b03909216918390811061188257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600b90925220805460ff19169055600c8054806118d457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611903565b60010161180e565b5050565b6019546001600160a01b031681565b61191e611a79565b6000546001600160a01b0390811691161461196e576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601a80546001600160a01b039384166001600160a01b03199182161790915560198054929093169116179055565b6000826119ab57506000610ab2565b828202828482816119b857fe5b0414610caf5760405162461bcd60e51b815260040180806020018281038252602181526020018061280b6021913960400191505060405180910390fd5b6000610caf83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121cb565b6000610caf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120da565b3390565b6001600160a01b038316611ac25760405162461bcd60e51b81526004018080602001828103825260248152602001806128eb6024913960400191505060405180910390fd5b6001600160a01b038216611b075760405162461bcd60e51b81526004018080602001828103825260228152602001806127e96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60095460085460009190825b600c54811015611ca0578260056000600c8481548110611b9157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611bf657508160066000600c8481548110611bcf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c1457600854600954611c0a916119f5565b9350505050610a97565b611c5460056000600c8481548110611c2857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611a37565b9250611c9660066000600c8481548110611c6a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611a37565b9150600101611b75565b50600854600954611cb0916119f5565b821015611ccf57600854600954611cc6916119f5565b92505050610a97565b611cd982826119f5565b9250505090565b6001600160a01b038316611d255760405162461bcd60e51b81526004018080602001828103825260258152602001806128c66025913960400191505060405180910390fd5b6001600160a01b038216611d6a5760405162461bcd60e51b81526004018080602001828103825260238152602001806127546023913960400191505060405180910390fd5b60008111611da95760405162461bcd60e51b81526004018080602001828103825260298152602001806128746029913960400191505060405180910390fd5b6001600160a01b0383166000908152600a602052604090205460ff1680611de857506001600160a01b0382166000908152600a602052604090205460ff165b80611df557506015548111155b611e46576040805162461bcd60e51b815260206004820152601b60248201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604482015290519081900360640190fd5b60145462010000900460ff168015611e665750601454610100900460ff16155b8015611e805750601a546001600160a01b03848116911614155b15611e8d57611e8d612230565b806000611e98611b69565b60145490915060ff168015611ec657506001600160a01b0385166000908152600a602052604090205460ff16155b8015611eeb57506001600160a01b0384166000908152600a602052604090205460ff16155b8015611eff5750601454610100900460ff16155b15611f4857601a54611f45908690859084906001600160a01b03908116898216811491851614801590611f405750601a546001600160a01b038a8116911614155b612521565b91505b611f74611f55848361199c565b6001600160a01b03871660009081526005602052604090205490611a37565b6001600160a01b038616600090815260056020526040902055611fb9611f9a838361199c565b6001600160a01b03861660009081526005602052604090205490612171565b6001600160a01b038086166000908152600560209081526040808320949094559188168152600b909152205460ff161561202a576001600160a01b0385166000908152600660205260409020546120109084611a37565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600b602052604090205460ff1615612088576001600160a01b03841660009081526006602052604090205461206e9083612171565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b600081848411156121695760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561212e578181015183820152602001612116565b50505050905090810190601f16801561215b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610caf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818361221a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561212e578181015183820152602001612116565b50600083858161222657fe5b0495945050505050565b6014805461ff0019166101001790556012546013546000916122529190612171565b90508060165411156122645750612514565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061229257fe5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156122e657600080fd5b505afa1580156122fa573d6000803e3d6000fd5b505050506040513d602081101561231057600080fd5b505181518290600190811061232157fe5b6001600160a01b03928316602091820292909201015260195447916123499130911685611a7d565b60195460405163791ac94760e01b8152600481018581526000602483018190523060648401819052426084850181905260a060448601908152885160a487015288516001600160a01b039097169663791ac947968b968b9594939092909160c40190602080880191028083838b5b838110156123cf5781810151838201526020016123b7565b505050509050019650505050505050600060405180830381600087803b1580156123f857600080fd5b505af115801561240c573d6000803e3d6000fd5b5050505060006124258247611a3790919063ffffffff16565b905060006124428561149b6012548561199c90919063ffffffff16565b90508015612486576017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612484573d6000803e3d6000fd5b505b4780156124c8576017546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156124c6573d6000803e3d6000fd5b505b60006012819055601355604080518781526020810185905281517f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d220929181900390910190a15050505050505b6014805461ff0019169055565b600084818061254e85612542578661253a57600061253d565b60015b612545565b60025b60ff1689612668565b9150915080600014612619576125648382611a37565b9250612589612573828961199c565b3060009081526005602052604090205490612171565b30600090815260056020908152604080832093909355600b9052205460ff16156125d857306000908152600660205260409020546125c79082612171565b306000908152600660205260409020555b60408051828152905130916001600160a01b038c16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35b81156126395761263561262c838961199c565b60095490611a37565b6009555b612658816126528460115461217190919063ffffffff16565b90612171565b6011555090979650505050505050565b60008060006126a3600d54600201600a0a61149b600e888154811061268957fe5b90600052602060002001548761199c90919063ffffffff16565b905060006126dd600d54600201600a0a61149b601089815481106126c357fe5b90600052602060002001548861199c90919063ffffffff16565b90506000612717600d54600201600a0a61149b600f8a815481106126fd57fe5b90600052602060002001548961199c90919063ffffffff16565b6012549091506127279083612171565b6012556013546127379082612171565b601355826127458383612171565b94509450505050925092905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e956743f9ede879d87f613ee861b50988f69564afab2e0e05eb39263a1fdf75c64736f6c634300060c003345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000071af5a690fab162e46870d655a1e4cf122e3c826000000000000000000000000f830925571cd5b1170a0bcfbdb24a6e8f910911a00000000000000000000000055c3f54ab4c76280dd3e7a87e46127b487b01942
Deployed Bytecode
0x6080604052600436106102605760003560e01c80638c0b5e2211610144578063cba0e996116100b6578063ec28438a1161007a578063ec28438a146108f3578063f2cc0c181461091d578063f2fde38b14610950578063f84354f114610983578063f887ea40146109b6578063fbf63fc2146109cb57610267565b8063cba0e9961461082f578063dd62ed3e14610862578063e01af92c1461089d578063e43504da146108c9578063e5d41c6b146108de57610267565b8063a457c2d711610108578063a457c2d714610713578063a5ae2d2f1461074c578063a8aa1b311461077f578063a9059cbb14610794578063a918299c146107cd578063b7bfff651461080357610267565b80638c0b5e22146106745780638da5cb5b1461068957806391cc19c21461069e57806394169e0d146106c857806395d89b41146106fe57610267565b8063324c3454116101dd57806359927044116101a1578063599270441461059e5780635d098b38146105cf5780636ddd17131461060257806370a0823114610617578063715018a61461064a57806375f0a8741461065f57610267565b8063324c3454146104a057806339509351146104d6578063455fdd781461050f57806347f2dc5b1461053957806348a464731461057457610267565b806318160ddd1161022457806318160ddd146103de57806319db457d146103f357806323b872dd146104085780632d8381191461044b578063313ce5671461047557610267565b806306fdde031461026c578063095ea7b3146102f65780631185c1d5146103435780631392c0861461037f5780631525ff7d146103a957610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a06565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b038135169060200135610a9a565b604080519115158252519081900360200190f35b34801561034f57600080fd5b5061036d6004803603602081101561036657600080fd5b5035610ab8565b60408051918252519081900360200190f35b34801561038b57600080fd5b5061036d600480360360208110156103a257600080fd5b5035610ad6565b3480156103b557600080fd5b506103dc600480360360208110156103cc57600080fd5b50356001600160a01b0316610b49565b005b3480156103ea57600080fd5b5061036d610bc3565b3480156103ff57600080fd5b5061036d610bc9565b34801561041457600080fd5b5061032f6004803603606081101561042b57600080fd5b506001600160a01b03813581169160208101359091169060400135610bcf565b34801561045757600080fd5b5061036d6004803603602081101561046e57600080fd5b5035610c56565b34801561048157600080fd5b5061048a610cb6565b6040805160ff9092168252519081900360200190f35b3480156104ac57600080fd5b506103dc600480360360608110156104c357600080fd5b5080359060208101359060400135610cbf565b3480156104e257600080fd5b5061032f600480360360408110156104f957600080fd5b506001600160a01b038135169060200135610d71565b34801561051b57600080fd5b5061036d6004803603602081101561053257600080fd5b5035610dbf565b34801561054557600080fd5b506103dc6004803603604081101561055c57600080fd5b506001600160a01b0381351690602001351515610dcc565b34801561058057600080fd5b506103dc6004803603602081101561059757600080fd5b5035610e4f565b3480156105aa57600080fd5b506105b3610eac565b604080516001600160a01b039092168252519081900360200190f35b3480156105db57600080fd5b506103dc600480360360208110156105f257600080fd5b50356001600160a01b0316610ebb565b34801561060e57600080fd5b5061032f610f35565b34801561062357600080fd5b5061036d6004803603602081101561063a57600080fd5b50356001600160a01b0316610f44565b34801561065657600080fd5b506103dc610fa6565b34801561066b57600080fd5b506105b3611048565b34801561068057600080fd5b5061036d611057565b34801561069557600080fd5b506105b361105d565b3480156106aa57600080fd5b5061036d600480360360208110156106c157600080fd5b503561106c565b3480156106d457600080fd5b506103dc600480360360608110156106eb57600080fd5b5080359060208101359060400135611079565b34801561070a57600080fd5b5061028161111a565b34801561071f57600080fd5b5061032f6004803603604081101561073657600080fd5b506001600160a01b03813516906020013561117b565b34801561075857600080fd5b5061032f6004803603602081101561076f57600080fd5b50356001600160a01b03166111e3565b34801561078b57600080fd5b506105b36111f8565b3480156107a057600080fd5b5061032f600480360360408110156107b757600080fd5b506001600160a01b038135169060200135611207565b3480156107d957600080fd5b506103dc600480360360608110156107f057600080fd5b508035906020810135906040013561121b565b34801561080f57600080fd5b506103dc6004803603602081101561082657600080fd5b503515156112bc565b34801561083b57600080fd5b5061032f6004803603602081101561085257600080fd5b50356001600160a01b0316611327565b34801561086e57600080fd5b5061036d6004803603604081101561088557600080fd5b506001600160a01b0381358116916020013516611345565b3480156108a957600080fd5b506103dc600480360360208110156108c057600080fd5b50351515611370565b3480156108d557600080fd5b5061032f611419565b3480156108ea57600080fd5b5061036d611422565b3480156108ff57600080fd5b506103dc6004803603602081101561091657600080fd5b5035611428565b34801561092957600080fd5b506103dc6004803603602081101561094057600080fd5b50356001600160a01b03166114a7565b34801561095c57600080fd5b506103dc6004803603602081101561097357600080fd5b50356001600160a01b0316611664565b34801561098f57600080fd5b506103dc600480360360208110156109a657600080fd5b50356001600160a01b031661175c565b3480156109c257600080fd5b506105b3611907565b3480156109d757600080fd5b506103dc600480360360408110156109ee57600080fd5b506001600160a01b0381358116916020013516611916565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b820191906000526020600020905b815481529060010190602001808311610a7257829003601f168201915b505050505090505b90565b6000610aae610aa7611a79565b8484611a7d565b5060015b92915050565b600e8181548110610ac557fe5b600091825260209091200154905081565b6000600854821115610b2f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b610b41610b3a611b69565b839061199c565b90505b919050565b610b51611a79565b6000546001600160a01b03908116911614610ba1576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60085490565b600d5481565b6000610bdc848484611ce0565b610c4c84610be8611a79565b610c478560405180606001604052806028815260200161282c602891396001600160a01b038a16600090815260076020526040812090610c26611a79565b6001600160a01b0316815260208101919091526040016000205491906120da565b611a7d565b5060019392505050565b6000600954821115610c995760405162461bcd60e51b815260040180806020018281038252602a815260200180612799602a913960400191505060405180910390fd5b6000610ca3611b69565b9050610caf83826119f5565b9392505050565b60045460ff1690565b610cc7611a79565b6000546001600160a01b03908116911614610d17576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b82600e600081548110610d2657fe5b906000526020600020018190555081600e600181548110610d4357fe5b906000526020600020018190555080600e600281548110610d6057fe5b600091825260209091200155505050565b6000610aae610d7e611a79565b84610c478560076000610d8f611a79565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612171565b600f8181548110610ac557fe5b610dd4611a79565b6000546001600160a01b03908116911614610e24576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b610e57611a79565b6000546001600160a01b03908116911614610ea7576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601655565b6018546001600160a01b031681565b610ec3611a79565b6000546001600160a01b03908116911614610f13576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b60145462010000900460ff1681565b6001600160a01b0381166000908152600b602052604081205460ff1615610f8457506001600160a01b038116600090815260066020526040902054610b44565b6001600160a01b038216600090815260056020526040902054610b4190610c56565b610fae611a79565b6000546001600160a01b03908116911614610ffe576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6017546001600160a01b031681565b60155481565b6000546001600160a01b031690565b60108181548110610ac557fe5b611081611a79565b6000546001600160a01b039081169116146110d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b82600f6000815481106110e057fe5b906000526020600020018190555081600f6001815481106110fd57fe5b906000526020600020018190555080600f600281548110610d6057fe5b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a8f5780601f10610a6457610100808354040283529160200191610a8f565b6000610aae611188611a79565b84610c478560405180606001604052806025815260200161293160259139600760006111b2611a79565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906120da565b600a6020526000908152604090205460ff1681565b601a546001600160a01b031681565b6000610aae611214611a79565b8484611ce0565b611223611a79565b6000546001600160a01b03908116911614611273576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b82601060008154811061128257fe5b906000526020600020018190555081601060018154811061129f57fe5b9060005260206000200181905550806010600281548110610d6057fe5b6112c4611a79565b6000546001600160a01b03908116911614611314576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6014805460ff1916911515919091179055565b6001600160a01b03166000908152600b602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b611378611a79565b6000546001600160a01b039081169116146113c8576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6014805482151562010000810262ff0000199092169190911790915560408051918252517fd2b6af97bbcf94796ee3844c1f0948ba30b3f2d496875e5e1587309eb210aac59181900360200190a150565b60145460ff1681565b60165481565b611430611a79565b6000546001600160a01b03908116911614611480576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6114a161271061149b8360085461199c90919063ffffffff16565b906119f5565b60155550565b6114af611a79565b6000546001600160a01b039081169116146114ff576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6019546001600160a01b038281169116141561154c5760405162461bcd60e51b815260040180806020018281038252602981526020018061289d6029913960400191505060405180910390fd5b6001600160a01b0381166000908152600b602052604090205460ff16156115a45760405162461bcd60e51b81526004018080602001828103825260228152602001806127776022913960400191505060405180910390fd5b6001600160a01b038116600090815260056020526040902054156115fe576001600160a01b0381166000908152600560205260409020546115e490610c56565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600b60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b61166c611a79565b6000546001600160a01b039081169116146116bc576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6001600160a01b0381166117015760405162461bcd60e51b81526004018080602001828103825260268152602001806127c36026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b611764611a79565b6000546001600160a01b039081169116146117b4576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600b602052604090205460ff1661180b5760405162461bcd60e51b815260040180806020018281038252602281526020018061290f6022913960400191505060405180910390fd5b60005b600c5481101561190357816001600160a01b0316600c828154811061182f57fe5b6000918252602090912001546001600160a01b031614156118fb57600c8054600019810190811061185c57fe5b600091825260209091200154600c80546001600160a01b03909216918390811061188257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600b90925220805460ff19169055600c8054806118d457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611903565b60010161180e565b5050565b6019546001600160a01b031681565b61191e611a79565b6000546001600160a01b0390811691161461196e576040805162461bcd60e51b81526020600482018190526024820152600080516020612854833981519152604482015290519081900360640190fd5b601a80546001600160a01b039384166001600160a01b03199182161790915560198054929093169116179055565b6000826119ab57506000610ab2565b828202828482816119b857fe5b0414610caf5760405162461bcd60e51b815260040180806020018281038252602181526020018061280b6021913960400191505060405180910390fd5b6000610caf83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121cb565b6000610caf83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120da565b3390565b6001600160a01b038316611ac25760405162461bcd60e51b81526004018080602001828103825260248152602001806128eb6024913960400191505060405180910390fd5b6001600160a01b038216611b075760405162461bcd60e51b81526004018080602001828103825260228152602001806127e96022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60095460085460009190825b600c54811015611ca0578260056000600c8481548110611b9157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611bf657508160066000600c8481548110611bcf57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611c1457600854600954611c0a916119f5565b9350505050610a97565b611c5460056000600c8481548110611c2857fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611a37565b9250611c9660066000600c8481548110611c6a57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611a37565b9150600101611b75565b50600854600954611cb0916119f5565b821015611ccf57600854600954611cc6916119f5565b92505050610a97565b611cd982826119f5565b9250505090565b6001600160a01b038316611d255760405162461bcd60e51b81526004018080602001828103825260258152602001806128c66025913960400191505060405180910390fd5b6001600160a01b038216611d6a5760405162461bcd60e51b81526004018080602001828103825260238152602001806127546023913960400191505060405180910390fd5b60008111611da95760405162461bcd60e51b81526004018080602001828103825260298152602001806128746029913960400191505060405180910390fd5b6001600160a01b0383166000908152600a602052604090205460ff1680611de857506001600160a01b0382166000908152600a602052604090205460ff165b80611df557506015548111155b611e46576040805162461bcd60e51b815260206004820152601b60248201527f4d6178205472616e73666572204c696d69742045786365656473210000000000604482015290519081900360640190fd5b60145462010000900460ff168015611e665750601454610100900460ff16155b8015611e805750601a546001600160a01b03848116911614155b15611e8d57611e8d612230565b806000611e98611b69565b60145490915060ff168015611ec657506001600160a01b0385166000908152600a602052604090205460ff16155b8015611eeb57506001600160a01b0384166000908152600a602052604090205460ff16155b8015611eff5750601454610100900460ff16155b15611f4857601a54611f45908690859084906001600160a01b03908116898216811491851614801590611f405750601a546001600160a01b038a8116911614155b612521565b91505b611f74611f55848361199c565b6001600160a01b03871660009081526005602052604090205490611a37565b6001600160a01b038616600090815260056020526040902055611fb9611f9a838361199c565b6001600160a01b03861660009081526005602052604090205490612171565b6001600160a01b038086166000908152600560209081526040808320949094559188168152600b909152205460ff161561202a576001600160a01b0385166000908152600660205260409020546120109084611a37565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600b602052604090205460ff1615612088576001600160a01b03841660009081526006602052604090205461206e9083612171565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b600081848411156121695760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561212e578181015183820152602001612116565b50505050905090810190601f16801561215b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610caf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818361221a5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561212e578181015183820152602001612116565b50600083858161222657fe5b0495945050505050565b6014805461ff0019166101001790556012546013546000916122529190612171565b90508060165411156122645750612514565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061229257fe5b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156122e657600080fd5b505afa1580156122fa573d6000803e3d6000fd5b505050506040513d602081101561231057600080fd5b505181518290600190811061232157fe5b6001600160a01b03928316602091820292909201015260195447916123499130911685611a7d565b60195460405163791ac94760e01b8152600481018581526000602483018190523060648401819052426084850181905260a060448601908152885160a487015288516001600160a01b039097169663791ac947968b968b9594939092909160c40190602080880191028083838b5b838110156123cf5781810151838201526020016123b7565b505050509050019650505050505050600060405180830381600087803b1580156123f857600080fd5b505af115801561240c573d6000803e3d6000fd5b5050505060006124258247611a3790919063ffffffff16565b905060006124428561149b6012548561199c90919063ffffffff16565b90508015612486576017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612484573d6000803e3d6000fd5b505b4780156124c8576017546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156124c6573d6000803e3d6000fd5b505b60006012819055601355604080518781526020810185905281517f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d220929181900390910190a15050505050505b6014805461ff0019169055565b600084818061254e85612542578661253a57600061253d565b60015b612545565b60025b60ff1689612668565b9150915080600014612619576125648382611a37565b9250612589612573828961199c565b3060009081526005602052604090205490612171565b30600090815260056020908152604080832093909355600b9052205460ff16156125d857306000908152600660205260409020546125c79082612171565b306000908152600660205260409020555b60408051828152905130916001600160a01b038c16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35b81156126395761263561262c838961199c565b60095490611a37565b6009555b612658816126528460115461217190919063ffffffff16565b90612171565b6011555090979650505050505050565b60008060006126a3600d54600201600a0a61149b600e888154811061268957fe5b90600052602060002001548761199c90919063ffffffff16565b905060006126dd600d54600201600a0a61149b601089815481106126c357fe5b90600052602060002001548861199c90919063ffffffff16565b90506000612717600d54600201600a0a61149b600f8a815481106126fd57fe5b90600052602060002001548961199c90919063ffffffff16565b6012549091506127279083612171565b6012556013546127379082612171565b601355826127458383612171565b94509450505050925092905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e956743f9ede879d87f613ee861b50988f69564afab2e0e05eb39263a1fdf75c64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000071af5a690fab162e46870d655a1e4cf122e3c826000000000000000000000000f830925571cd5b1170a0bcfbdb24a6e8f910911a00000000000000000000000055c3f54ab4c76280dd3e7a87e46127b487b01942
-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _owner (address): 0x71AF5a690fAb162e46870D655A1e4Cf122E3C826
Arg [2] : _marketingWallet (address): 0xf830925571Cd5b1170a0BcfBdB24a6e8F910911a
Arg [3] : _teamWallet (address): 0x55c3f54ab4c76280Dd3E7A87E46127B487B01942
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000071af5a690fab162e46870d655a1e4cf122e3c826
Arg [2] : 000000000000000000000000f830925571cd5b1170a0bcfbdb24a6e8f910911a
Arg [3] : 00000000000000000000000055c3f54ab4c76280dd3e7a87e46127b487b01942
Deployed Bytecode Sourcemap
22393:13620:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26368:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26368:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23292:24;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23292:24:0;;:::i;:::-;;;;;;;;;;;;;;;;27623:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27623:224:0;;:::i;35612:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35612:97:0;-1:-1:-1;;;;;35612:97:0;;:::i;:::-;;25704:99;;;;;;;;;;;;;:::i;23190:30::-;;;;;;;;;;;;;:::i;26537:407::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26537:407:0;;;;;;;;;;;;;;;;;:::i;27855:299::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27855:299:0;;:::i;25613:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34940:168;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34940:168:0;;;;;;;;;;;;:::i;26952:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26952:218:0;;;;;;;;:::i;23323:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23323:25:0;;:::i;34584:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34584:113:0;;;;;;;;;;:::i;35859:114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35859:114:0;;:::i;23803:25::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;23803:25:0;;;;;;;;;;;;;;35498:106;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35498:106:0;-1:-1:-1;;;;;35498:106:0;;:::i;23598:30::-;;;;;;;;;;;;;:::i;25811:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25811:215:0;-1:-1:-1;;;;;25811:215:0;;:::i;17108:148::-;;;;;;;;;;;;;:::i;23766:30::-;;;;;;;;;;;;;:::i;23637:57::-;;;;;;;;;;;;;:::i;16466:79::-;;;;;;;;;;;;;:::i;23355:30::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23355:30:0;;:::i;35118:172::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35118:172:0;;;;;;;;;;;;:::i;25518:87::-;;;;;;;;;;;;;:::i;27178:319::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27178:319:0;;;;;;;;:::i;23053:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23053:41:0;-1:-1:-1;;;;;23053:41:0;;:::i;23876:19::-;;;;;;;;;;;;;:::i;26034:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26034:175:0;;;;;;;;:::i;35298:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35298:192:0;;;;;;;;;;;;:::i;34841:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34841:91:0;;;;:::i;27505:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27505:110:0;-1:-1:-1;;;;;27505:110:0;;:::i;26217:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26217:143:0;;;;;;;;;;:::i;34705:128::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34705:128:0;;;;:::i;23516:31::-;;;;;;;;;;;;;:::i;23709:48::-;;;;;;;;;;;;;:::i;35717:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35717:134:0;;:::i;28162:455::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28162:455:0;-1:-1:-1;;;;;28162:455:0;;:::i;17411:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17411:244:0;-1:-1:-1;;;;;17411:244:0;;:::i;28625:489::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28625:489:0;-1:-1:-1;;;;;28625:489:0;;:::i;23837:32::-;;;;;;;;;;;;;:::i;34422:154::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34422:154:0;;;;;;;;;;:::i;25427:83::-;25497:5;25490:12;;;;;;;-1:-1:-1;;25490:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25464:13;;25490:12;;25497:5;;25490:12;;25497:5;25490:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:83;;:::o;26368:161::-;26443:4;26460:39;26469:12;:10;:12::i;:::-;26483:7;26492:6;26460:8;:39::i;:::-;-1:-1:-1;26517:4:0;26368:161;;;;;:::o;23292:24::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23292:24:0;:::o;27623:224::-;27694:7;27737:11;;27722;:26;;27714:70;;;;;-1:-1:-1;;;27714:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27802:37;27818:20;:18;:20::i;:::-;27802:11;;:15;:37::i;:::-;27795:44;;27623:224;;;;:::o;35612:97::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;35682:10:::1;:19:::0;;-1:-1:-1;;;;;;35682:19:0::1;-1:-1:-1::0;;;;;35682:19:0;;;::::1;::::0;;;::::1;::::0;;35612:97::o;25704:99::-;25784:11;;25704:99;:::o;23190:30::-;;;;:::o;26537:407::-;26677:4;26694:36;26704:6;26712:9;26723:6;26694:9;:36::i;:::-;26743:171;26766:6;26787:12;:10;:12::i;:::-;26814:89;26852:6;26814:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26814:19:0;;;;;;:11;:19;;;;;;26834:12;:10;:12::i;:::-;-1:-1:-1;;;;;26814:33:0;;;;;;;;;;;;-1:-1:-1;26814:33:0;;;:89;:37;:89::i;:::-;26743:8;:171::i;:::-;-1:-1:-1;26932:4:0;26537:407;;;;;:::o;27855:299::-;27931:7;27979:16;;27959;:36;;27951:91;;;;-1:-1:-1;;;27951:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28053:19;28075:20;:18;:20::i;:::-;28053:42;-1:-1:-1;28113:33:0;:16;28053:42;28113:20;:33::i;:::-;28106:40;27855:299;-1:-1:-1;;;27855:299:0:o;25613:83::-;25679:9;;;;25613:83;:::o;34940:168::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;35042:3:::1;35029:7;35037:1;35029:10;;;;;;;;;;;;;;;:16;;;;35069:4;35056:7;35064:1;35056:10;;;;;;;;;;;;;;;:17;;;;35097:3;35084:7;35092:1;35084:10;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:16:::0;-1:-1:-1;;;34940:168:0:o;26952:218::-;27040:4;27057:83;27066:12;:10;:12::i;:::-;27080:7;27089:50;27128:10;27089:11;:25;27101:12;:10;:12::i;:::-;-1:-1:-1;;;;;27089:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27089:25:0;;;:34;;;;;;;;;;;:38;:50::i;23323:25::-;;;;;;;;;;34584:113;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34663:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;34663:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34584:113::o;35859:114::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;35937:19:::1;:28:::0;35859:114::o;23803:25::-;;;-1:-1:-1;;;;;23803:25:0;;:::o;35498:106::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;35572:15:::1;:24:::0;;-1:-1:-1;;;;;;35572:24:0::1;-1:-1:-1::0;;;;;35572:24:0;;;::::1;::::0;;;::::1;::::0;;35498:106::o;23598:30::-;;;;;;;;;:::o;25811:215::-;-1:-1:-1;;;;;25901:20:0;;25877:7;25901:20;;;:11;:20;;;;;;;;25897:55;;;-1:-1:-1;;;;;;25930:22:0;;;;;;:13;:22;;;;;;25923:29;;25897:55;-1:-1:-1;;;;;25990:27:0;;;;;;:18;:27;;;;;;25970:48;;:19;:48::i;17108:148::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;17215:1:::1;17199:6:::0;;17178:40:::1;::::0;-1:-1:-1;;;;;17199:6:0;;::::1;::::0;17178:40:::1;::::0;17215:1;;17178:40:::1;17246:1;17229:19:::0;;-1:-1:-1;;;;;;17229:19:0::1;::::0;;17108:148::o;23766:30::-;;;-1:-1:-1;;;;;23766:30:0;;:::o;23637:57::-;;;;:::o;16466:79::-;16504:7;16531:6;-1:-1:-1;;;;;16531:6:0;16466:79;:::o;23355:30::-;;;;;;;;;;35118:172;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;35222:3:::1;35208:8;35217:1;35208:11;;;;;;;;;;;;;;;:17;;;;35250:4;35236:8;35245:1;35236:11;;;;;;;;;;;;;;;:18;;;;35279:3;35265:8;35274:1;35265:11;;;;;;;25518:87:::0;25590:7;25583:14;;;;;;;;-1:-1:-1;;25583:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25557:13;;25583:14;;25590:7;;25583:14;;25590:7;25583:14;;;;;;;;;;;;;;;;;;;;;;;;27178:319;27271:4;27288:179;27311:12;:10;:12::i;:::-;27338:7;27360:96;27399:15;27360:96;;;;;;;;;;;;;;;;;:11;:25;27372:12;:10;:12::i;:::-;-1:-1:-1;;;;;27360:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;27360:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;23053:41::-;;;;;;;;;;;;;;;:::o;23876:19::-;;;-1:-1:-1;;;;;23876:19:0;;:::o;26034:175::-;26120:4;26137:42;26147:12;:10;:12::i;:::-;26161:9;26172:6;26137:9;:42::i;35298:192::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;35412:3:::1;35393:13;35407:1;35393:16;;;;;;;;;;;;;;;:22;;;;35445:4;35426:13;35440:1;35426:16;;;;;;;;;;;;;;;:23;;;;35479:3;35460:13;35474:1;35460:16;;;;;;;34841:91:::0;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;34905:11:::1;:19:::0;;-1:-1:-1;;34905:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34841:91::o;27505:110::-;-1:-1:-1;;;;;27587:20:0;27563:4;27587:20;;;:11;:20;;;;;;;;;27505:110::o;26217:143::-;-1:-1:-1;;;;;26325:18:0;;;26298:7;26325:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26217:143::o;34705:128::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;34773:11:::1;:21:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;34773:21:0;;::::1;::::0;;;::::1;::::0;;;34805:20:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;34705:128:::0;:::o;23516:31::-;;;;;;:::o;23709:48::-;;;;:::o;35717:134::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;35805:38:::1;35837:5;35805:27;35821:10;35805:11;;:15;;:27;;;;:::i;:::-;:31:::0;::::1;:38::i;:::-;35791:11;:52:::0;-1:-1:-1;35717:134:0:o;28162:455::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;28258:6:::1;::::0;-1:-1:-1;;;;;28239:26:0;;::::1;28258:6:::0;::::1;28239:26;;28231:80;;;;-1:-1:-1::0;;;28231:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;28331:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;28330:21;28322:68;;;;-1:-1:-1::0;;;28322:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;28405:27:0;::::1;28435:1;28405:27:::0;;;:18:::1;:27;::::0;;;;;:31;28401:137:::1;;-1:-1:-1::0;;;;;28498:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;28478:48:::1;::::0;:19:::1;:48::i;:::-;-1:-1:-1::0;;;;;28453:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;:73;28401:137:::1;-1:-1:-1::0;;;;;28548:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;28548:27:0::1;28571:4;28548:27:::0;;::::1;::::0;;;28586:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;28586:23:0::1;::::0;;::::1;::::0;;28162:455::o;17411:244::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17500:22:0;::::1;17492:73;;;;-1:-1:-1::0;;;17492:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17602:6;::::0;;17581:38:::1;::::0;-1:-1:-1;;;;;17581:38:0;;::::1;::::0;17602:6;::::1;::::0;17581:38:::1;::::0;::::1;17630:6;:17:::0;;-1:-1:-1;;;;;;17630:17:0::1;-1:-1:-1::0;;;;;17630:17:0;;;::::1;::::0;;;::::1;::::0;;17411:244::o;28625:489::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28704:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;28696:67;;;;-1:-1:-1::0;;;28696:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28779:9;28774:333;28798:9;:16:::0;28794:20;::::1;28774:333;;;28856:7;-1:-1:-1::0;;;;;28840:23:0::1;:9;28850:1;28840:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;28840:12:0::1;:23;28836:260;;;28899:9;28909:16:::0;;-1:-1:-1;;28909:20:0;;;28899:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;28884:9:::1;:12:::0;;-1:-1:-1;;;;;28899:31:0;;::::1;::::0;28894:1;;28884:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;28884:46:0::1;-1:-1:-1::0;;;;;28884:46:0;;::::1;;::::0;;28949:22;;::::1;::::0;;:13:::1;:22:::0;;;;;;:26;;;28994:11:::1;:20:::0;;;;:28;;-1:-1:-1;;28994:28:0::1;::::0;;29041:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;29041:15:0;;;;;-1:-1:-1;;;;;;29041:15:0::1;::::0;;;;;29075:5:::1;;28836:260;28816:3;;28774:333;;;;28625:489:::0;:::o;23837:32::-;;;-1:-1:-1;;;;;23837:32:0;;:::o;34422:154::-;16688:12;:10;:12::i;:::-;16678:6;;-1:-1:-1;;;;;16678:6:0;;;:22;;;16670:67;;;;;-1:-1:-1;;;16670:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16670:67:0;;;;;;;;;;;;;;;34529:4:::1;:12:::0;;-1:-1:-1;;;;;34529:12:0;;::::1;-1:-1:-1::0;;;;;;34529:12:0;;::::1;;::::0;;;34552:6:::1;:16:::0;;;;;::::1;::::0;::::1;;::::0;;34422:154::o;5950:471::-;6008:7;6253:6;6249:47;;-1:-1:-1;6283:1:0;6276:8;;6249:47;6320:5;;;6324:1;6320;:5;:1;6344:5;;;;;:10;6336:56;;;;-1:-1:-1;;;6336:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6897:132;6955:7;6982:39;6986:1;6989;6982:39;;;;;;;;;;;;;;;;;:3;:39::i;5026:136::-;5084:7;5111:43;5115:1;5118;5111:43;;;;;;;;;;;;;;;;;:3;:43::i;621:106::-;709:10;621:106;:::o;29122:371::-;-1:-1:-1;;;;;29249:19:0;;29241:68;;;;-1:-1:-1;;;29241:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29328:21:0;;29320:68;;;;-1:-1:-1;;;29320:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29401:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29453:32;;;;;;;;;;;;;;;;;29122:371;;;:::o;33683:731::-;33782:16;;33831:11;;33735:7;;33782:16;33735:7;33853:394;33877:9;:16;33873:20;;33853:394;;;33954:16;33919:18;:32;33938:9;33948:1;33938:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33938:12:0;33919:32;;;;;;;;;;;;;:51;;:96;;;34004:11;33974:13;:27;33988:9;33998:1;33988:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33988:12:0;33974:27;;;;;;;;;;;;;:41;33919:96;33915:159;;;34062:11;;34041:16;;:33;;:20;:33::i;:::-;34034:40;;;;;;;33915:159;34108:54;34129:18;:32;34148:9;34158:1;34148:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34148:12:0;34129:32;;;;;;;;;;;;;34108:16;;:20;:54::i;:::-;34089:73;;34191:44;34207:13;:27;34221:9;34231:1;34221:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34221:12:0;34207:27;;;;;;;;;;;;;34191:11;;:15;:44::i;:::-;34177:58;-1:-1:-1;33895:3:0;;33853:394;;;-1:-1:-1;34301:11:0;;34280:16;;:33;;:20;:33::i;:::-;34261:16;:52;34257:98;;;34343:11;;34322:16;;:33;;:20;:33::i;:::-;34315:40;;;;;;34257:98;34373:33;:16;34394:11;34373:20;:33::i;:::-;34366:40;;;;33683:731;:::o;29501:1490::-;-1:-1:-1;;;;;29632:20:0;;29624:70;;;;-1:-1:-1;;;29624:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29713:23:0;;29705:71;;;;-1:-1:-1;;;29705:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29804:1;29795:6;:10;29787:64;;;;-1:-1:-1;;;29787:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29872:17:0;;;;;;:9;:17;;;;;;;;;:41;;-1:-1:-1;;;;;;29893:20:0;;;;;;:9;:20;;;;;;;;29872:41;:66;;;;29927:11;;29917:6;:21;;29872:66;29864:106;;;;;-1:-1:-1;;;29864:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29987:11;;;;;;;:22;;;;-1:-1:-1;30003:6:0;;;;;;;30002:7;29987:22;:40;;;;-1:-1:-1;30023:4:0;;-1:-1:-1;;;;;30013:14:0;;;30023:4;;30013:14;;29987:40;29983:79;;;30044:6;:4;:6::i;:::-;30099;30074:22;30131:20;:18;:20::i;:::-;30168:11;;30116:35;;-1:-1:-1;30168:11:0;;:33;;;;-1:-1:-1;;;;;;30184:17:0;;;;;;:9;:17;;;;;;;;30183:18;30168:33;:58;;;;-1:-1:-1;;;;;;30206:20:0;;;;;;:9;:20;;;;;;;;30205:21;30168:58;:69;;;;-1:-1:-1;30231:6:0;;;;;;;30230:7;30168:69;30164:207;;;30317:4;;30271:88;;30282:6;;30290;;30298:4;;-1:-1:-1;;;;;30317:4:0;;;30304:17;;;;;;30323:14;;;;;;:35;;-1:-1:-1;30354:4:0;;-1:-1:-1;;;;;30341:17:0;;;30354:4;;30341:17;;30323:35;30271:10;:88::i;:::-;30254:105;;30164:207;30443:48;30474:16;:6;30485:4;30474:10;:16::i;:::-;-1:-1:-1;;;;;30443:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;30414:26:0;;;;;;:18;:26;;;;;:77;30534:59;30568:24;:14;30587:4;30568:18;:24::i;:::-;-1:-1:-1;;;;;30534:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;30502:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;30682:19;;;;;:11;:19;;;;;;;30678:109;;;-1:-1:-1;;;;;30742:21:0;;;;;;:13;:21;;;;;;:33;;30768:6;30742:25;:33::i;:::-;-1:-1:-1;;;;;30718:21:0;;;;;;:13;:21;;;;;:57;30678:109;-1:-1:-1;;;;;30801:22:0;;;;;;:11;:22;;;;;;;;30797:126;;;-1:-1:-1;;;;;30867:24:0;;;;;;:13;:24;;;;;;:44;;30896:14;30867:28;:44::i;:::-;-1:-1:-1;;;;;30840:24:0;;;;;;:13;:24;;;;;:71;30797:126;30957:9;-1:-1:-1;;;;;30940:43:0;30949:6;-1:-1:-1;;;;;30940:43:0;;30968:14;30940:43;;;;;;;;;;;;;;;;;;29501:1490;;;;;:::o;5465:226::-;5585:7;5621:12;5613:6;;;;5605:29;;;;-1:-1:-1;;;5605:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5657:5:0;;;5465:226::o;4562:181::-;4620:7;4652:5;;;4676:6;;;;4668:46;;;;;-1:-1:-1;;;4668:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;7525:312;7645:7;7680:12;7673:5;7665:28;;;;-1:-1:-1;;;7665:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7704:9;7720:1;7716;:5;;;;;;;7525:312;-1:-1:-1;;;;;7525:312:0:o;32523:1152::-;24029:6;:13;;-1:-1:-1;;24029:13:0;;;;;32611:22:::1;::::0;32589:17:::1;::::0;24029:13;;32589:45:::1;::::0;:17;:21:::1;:45::i;:::-;32570:64;;32672:8;32650:19;;:30;32647:42;;;32682:7;;;32647:42;32729:16;::::0;;32743:1:::1;32729:16:::0;;;32701:25:::1;32729:16:::0;;::::1;::::0;;32701:25;32729:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;32729:16:0::1;32701:44;;32778:4;32756:8;32765:1;32756:11;;;;;;;;-1:-1:-1::0;;;;;32756:27:0;;::::1;:11;::::0;;::::1;::::0;;;;;;:27;;;;32808:6:::1;::::0;:13:::1;::::0;;-1:-1:-1;;;32808:13:0;;;;:6;;;::::1;::::0;:11:::1;::::0;:13:::1;::::0;;::::1;::::0;32756:11;;32808:13;;;;;:6;:13;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;32808:13:0;32794:11;;:8;;32803:1:::1;::::0;32794:11;::::1;;;;;-1:-1:-1::0;;;;;32794:27:0;;::::1;:11;::::0;;::::1;::::0;;;;;:27;32931:6:::1;::::0;32865:21:::1;::::0;32899:50:::1;::::0;32916:4:::1;::::0;32931:6:::1;32940:8:::0;32899::::1;:50::i;:::-;32960:6;::::0;:188:::1;::::0;-1:-1:-1;;;32960:188:0;;::::1;::::0;::::1;::::0;;;:6:::1;:188:::0;;;;;;33102:4:::1;32960:188:::0;;;;;;33122:15:::1;32960:188:::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32960:6:0;;::::1;::::0;:57:::1;::::0;33032:8;;33071;;33102:4;33122:15;32960:188;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;:6;:188:::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33161:17;33181:40;33207:13;33181:21;:25;;:40;;;;:::i;:::-;33161:60;;33242:23;33268:51;33310:8;33268:37;33282:22;;33268:9;:13;;:37;;;;:::i;:51::-;33242:77:::0;-1:-1:-1;33333:19:0;;33330:74:::1;;33362:15;::::0;33354:50:::1;::::0;-1:-1:-1;;;;;33362:15:0;;::::1;::::0;33354:50;::::1;;;::::0;33388:15;;33362::::1;33354:50:::0;33362:15;33354:50;33388:15;33362;33354:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33330:74;33438:21;33473:14:::0;;33470:75:::1;;33497:15;::::0;33489:56:::1;::::0;-1:-1:-1;;;;;33497:15:0;;::::1;::::0;33523:21:::1;33489:56:::0;::::1;;;::::0;33497:15:::1;33489:56:::0;33497:15;33489:56;33523:21;33497:15;33489:56;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33470:75;33591:1;33566:22;:26:::0;;;33603:17:::1;:21:::0;33642:25:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;24053:1;;;;;;;24065:6:::0;:14;;-1:-1:-1;;24065:14:0;;;32523:1152::o;31572:943::-;31729:7;31774:6;31729:7;;31830:44;31843:3;:22;;31853:4;:12;;31864:1;31853:12;;;31860:1;31853:12;31843:22;;;31849:1;31843:22;31830:44;;31867:6;31830:12;:44::i;:::-;31793:81;;;;31888:8;31900:1;31888:13;31885:424;;31945:28;:14;31964:8;31945:18;:28::i;:::-;31928:45;-1:-1:-1;32024:57:0;32062:18;:8;32075:4;32062:12;:18::i;:::-;32051:4;32024:33;;;;:18;:33;;;;;;;:37;:57::i;:::-;32015:4;31988:33;;;;:18;:33;;;;;;;;:93;;;;32100:11;:26;;;;;;32096:140;;;32200:4;32178:28;;;;:13;:28;;;;;;:42;;32211:8;32178:32;:42::i;:::-;32169:4;32147:28;;;;:13;:28;;;;;:73;32096:140;32255:42;;;;;;;;32281:4;;-1:-1:-1;;;;;32255:42:0;;;;;;;;;;;;31885:424;32322:11;;32319:99;;32368:38;32389:16;:6;32400:4;32389:10;:16::i;:::-;32368;;;:20;:38::i;:::-;32349:16;:57;32319:99;32440:35;32466:8;32440:21;32454:6;32440:9;;:13;;:21;;;;:::i;:::-;:25;;:35::i;:::-;32428:9;:47;-1:-1:-1;32493:14:0;;31572:943;-1:-1:-1;;;;;;;31572:943:0:o;30999:565::-;31072:7;31081;31101:14;31118:56;31157:11;;31171:1;31157:15;31152:2;:21;31118:29;31129:7;31137:8;31129:17;;;;;;;;;;;;;;;;31118:6;:10;;:29;;;;:::i;:56::-;31101:73;;31185:20;31208:62;31253:11;;31267:1;31253:15;31248:2;:21;31208:35;31219:13;31233:8;31219:23;;;;;;;;;;;;;;;;31208:6;:10;;:35;;;;:::i;:62::-;31185:85;;31281:15;31299:57;31339:11;;31353:1;31339:15;31334:2;:21;31299:30;31310:8;31319;31310:18;;;;;;;;;;;;;;;;31299:6;:10;;:30;;;;:::i;:57::-;31402:22;;31281:75;;-1:-1:-1;31402:40:0;;31429:12;31402:26;:40::i;:::-;31377:22;:65;31473:17;;:30;;31495:7;31473:21;:30::i;:::-;31453:17;:50;31522:6;31530:25;:12;31547:7;31530:16;:25::i;:::-;31514:42;;;;;;;30999:565;;;;;:::o
Swarm Source
ipfs://e956743f9ede879d87f613ee861b50988f69564afab2e0e05eb39263a1fdf75c
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.