ERC-20
Overview
Max Total Supply
929,306,290,405.854214285177277367 TBC 🐝
Holders
97
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,230,175,170.917033186319401264 TBC 🐝Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TheBeeConservancy
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-14 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.12; /* 💝 SAVE THE BEES! 💝 TBC Token - The Bee Conservancy is an ERC20 Charity Token that Rewards Holders for helping to save the Bees! Team TomorrowWontExist will be donating to the https://thebeeconservancy.org/ on an ongoing Basis 🔶 Officially Stealth Launched! DEXTOOLS: https://www.dextools.io/app/uniswap/pair-explorer/0x9abe94cd554847ff9208079b16018af0e63d19f3 MOONTOOLS: https://app.moontools.io/pairs/uniswap/0x9abe94cd554847ff9208079b16018af0e63d19f3 🌎 Website https://liveinthenowmovement.com/collections/bee/bee 💝 Help Save the Bees and Bee Rewarded with 8% Reflections! Did you know that a ton of your favorite things wouldn't exist without Bees? 🤖 Telegram https://t.me/TBCToken ✅ Stealth Launched! ✅ Huge Marketing Lined Up! ✅ 1ETH Initial locked Liquidity! ✅ REAL Charity with ongoing proof of Donations Sent - 1st Donation will be Sent August 23rd! 🚀🚀 DON’T MISS OUT ON THE NEXT 1000X 🚀🚀 🔥 Tokenomics - 15% Tax 💰 8% Reflections 💫 4% Marketing & Charity ⭐️ 3% Burn 🗣 Community Driven Project and Economy 🔐 Liquidity Locked - Unruggable 🆔 Fully Doxed and Verified Dev Team (ScrawnyViking from TWE Token with Sustainable Housing Development) 💰 Don't miss out on our Weekly TWE Lottery Fair Launch @ https://tomorrowwontexist.com/twe-lottery-token 💰 Participate to help with building Safe Homes in the case of Natural Disasters @TWEToken */ abstract contract Context { function _msgSender() internal virtual view returns (address payable) { return msg.sender; } function _msgData() internal virtual view 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; } function ceil(uint256 a, uint256 m) internal pure returns (uint256) { uint256 c = add(a,m); uint256 d = sub(c,1); return mul(div(d,m),m); } } /** * @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 = 0x147612b77ff82418dddeF7D3B1f3146A14fCbb0e; 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, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; } contract RewardWallet { constructor() public { } } contract Balancer { constructor() public { } } contract TheBeeConservancy is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; string private _name = "TheBeeConservancy | t.me/TBCToken"; string private _symbol = "TBC 🐝"; uint256 private _decimals = 18; 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 = 1_000_000_000_000 *(10**decimals()); uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) isTaxless; mapping(address => bool) internal _isExcluded; address[] internal _excluded; uint256 public _feeDecimal = 0; // do not change this value... uint256 public _taxFee = 8; // Distribution to Holders uint256 public _liquidityFee = 0; // uint256 public _burnFee = 3; // uint256 public devFee = 400; // 400 = 4% address devAddress = 0x5DD7313dE3786295688484b48D97Ed0D9F11bf73; // uint256 public _taxFeeTotal; uint256 public _burnFeeTotal; uint256 public _liquidityFeeTotal; bool public isFeeActive = false; // bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public maxTxAmount = 1000000000000e18; // 100% IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // for Ethereum uniswap v2 uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; isTaxless[owner()] = true; isTaxless[address(this)] = true; // exlcude pair address from tax rewards _isExcluded[address(uniswapV2Pair)] = true; _excluded.push(address(uniswapV2Pair)); _reflectionBalance[owner()] = _reflectionTotal; emit Transfer(address(0),owner(), _tokenTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint256) { return _decimals; } function totalSupply() public override view returns (uint256) { return _tokenTotal; } function find2Percent(uint256 value) internal view returns (uint256) { uint256 roundValue = value.ceil(devFee); uint256 onePercent = roundValue.mul(devFee).div(10000); return onePercent; } function balanceOf(address account) public override view returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function transfer(address recipient, uint256 amount) public override virtual returns (bool) { _transfer(_msgSender(),recipient,amount); return true; } function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override virtual returns (bool) { _transfer(sender,recipient,amount); _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub( amount,"ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function reflectionFromToken(uint256 tokenAmount, bool deductTransferFee) public view returns (uint256) { require(tokenAmount <= _tokenTotal, "Amount must be less than supply"); if (!deductTransferFee) { return tokenAmount.mul(_getReflectionRate()); } else { return tokenAmount.sub(tokenAmount.mul(_taxFee).div(10** _feeDecimal + 2)).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) external onlyOwner() { require( account != address(uniswapV2Router), "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"); if(recipient == uniswapV2Pair){ require(amount <= maxTxAmount, "Transfer Limit Exceeds for sell"); } uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); uint256 tokensToBurn; uint256 tokensToTransfer; if(isFeeActive && !isTaxless[_msgSender()] && !isTaxless[recipient] && !inSwapAndLiquify){ tokensToBurn = find2Percent(transferAmount); tokensToTransfer = transferAmount.sub(tokensToBurn); transferAmount = collectFee(sender,tokensToTransfer,rate); //Marketing fee _reflectionBalance[devAddress] = _reflectionBalance[devAddress].add(tokensToBurn.mul(rate)); emit Transfer(sender, devAddress, tokensToBurn); } //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); return; } emit Transfer(sender, recipient, transferAmount); } function collectFee(address account, uint256 amount, uint256 rate) private returns (uint256) { uint256 transferAmount = amount; //@dev tax fee if(_taxFee != 0){ uint256 taxFee = amount.mul(_taxFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(taxFee); _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)); _taxFeeTotal = _taxFeeTotal.add(taxFee); } //@dev liquidity fee if(_liquidityFee != 0){ uint256 liquidityFee = amount.mul(_liquidityFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(liquidityFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liquidityFee.mul(rate)); if(_isExcluded[address(this)]){ _tokenBalance[address(this)] = _tokenBalance[address(this)].add(liquidityFee); } _liquidityFeeTotal = _liquidityFeeTotal.add(liquidityFee); emit Transfer(account,address(this),liquidityFee); } //@dev burn fee if(_burnFee != 0){ uint256 burnFee = amount.mul(_burnFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(burnFee); _tokenTotal = _tokenTotal.sub(burnFee); _reflectionTotal = _reflectionTotal.sub(burnFee.mul(rate)); _burnFeeTotal = _burnFeeTotal.add(burnFee); emit Transfer(account,address(0),burnFee); } return transferAmount; } function _getReflectionRate() private view returns (uint256) { uint256 reflectionSupply = _reflectionTotal; uint256 tokenSupply = _tokenTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _reflectionBalance[_excluded[i]] > reflectionSupply || _tokenBalance[_excluded[i]] > tokenSupply ) return _reflectionTotal.div(_tokenTotal); reflectionSupply = reflectionSupply.sub( _reflectionBalance[_excluded[i]] ); tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]); } if (reflectionSupply < _reflectionTotal.div(_tokenTotal)) return _reflectionTotal.div(_tokenTotal); return reflectionSupply.div(tokenSupply); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { if(contractTokenBalance > maxTxAmount){ contractTokenBalance = maxTxAmount; } // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } function setPair(address pair) external onlyOwner { uniswapV2Pair = pair; } function setTaxless(address account, bool value) external onlyOwner { isTaxless[account] = value; } function setSwapAndLiquifyEnabled(bool enabled) external onlyOwner { swapAndLiquifyEnabled = enabled; SwapAndLiquifyEnabledUpdated(enabled); } function setFeeActive(bool value) external onlyOwner { isFeeActive = value; } function setTaxFee(uint256 fee) external onlyOwner { _taxFee = fee; } function setBurnFee(uint256 fee) external onlyOwner { _burnFee = fee; } function setLiquidityFee(uint256 fee) external onlyOwner { _liquidityFee = fee; } function setDev(uint256 amount) external onlyOwner { devFee = amount; } function setMaxTxAmount(uint256 amount) external onlyOwner { maxTxAmount = amount; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeTotal","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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"maxTxAmount","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":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","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":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e060405260216080818152906200291860a0398051620000299160019160209091019062000467565b506040805180820190915260088082526754424320f09f909d60c01b60209092019182526200005b9160029162000467565b5060126003556200006b6200044e565b600a0a64e8d4a5100002600755600754600019816200008657fe5b061960089081556000600c819055600d91909155600e556003600f55610190601055601180546001600160a01b031916735dd7313de3786295688484b48d97ed0d9f11bf731790556015805462ff00ff1916620100001790556c0c9f2c9cd04674edea40000000601655348015620000fd57600080fd5b5060006200010a62000454565b600080546001600160a01b03191673147612b77ff82418dddef7d3b1f3146a14fcbb0e1781556040519192506001600160a01b038316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ba57600080fd5b505afa158015620001cf573d6000803e3d6000fd5b505050506040513d6020811015620001e657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200023757600080fd5b505afa1580156200024c573d6000803e3d6000fd5b505050506040513d60208110156200026357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002b657600080fd5b505af1158015620002cb573d6000803e3d6000fd5b505050506040513d6020811015620002e257600080fd5b5051601880546001600160a01b03199081166001600160a01b0393841617909155601780549091169183169190911790556001600960006200032362000458565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600984528281208054861660019081179091556018805484168352600a909552928120805490951683179094559154600b8054928301815584527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990910180546001600160a01b0319169190921617905560085490600490620003d662000458565b6001600160a01b03168152602081019190915260400160002055620003fa62000458565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040518082815260200191505060405180910390a35062000503565b60035490565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004aa57805160ff1916838001178555620004da565b82800160010185558215620004da579182015b82811115620004da578251825591602001919060010190620004bd565b50620004e8929150620004ec565b5090565b5b80821115620004e85760008155600101620004ed565b61240580620005136000396000f3fe60806040526004361061024a5760003560e01c80636bc87c3a11610139578063b7bfff65116100b6578063dd62ed3e1161007a578063dd62ed3e146107e0578063e43504da1461081b578063ec28438a14610830578063f2cc0c181461085a578063f2fde38b1461088d578063f84354f1146108c057610251565b8063b7bfff6514610716578063c0b0fda214610742578063c4081a4c14610757578063c49b9a8014610781578063cba0e996146107ad57610251565b80638da5cb5b116100fd5780638da5cb5b1461066557806395d89b411461067a5780639d46cf8a1461068f578063a457c2d7146106a4578063a9059cbb146106dd57610251565b80636bc87c3a146105c057806370a08231146105d5578063715018a6146106085780638187f5161461061d5780638c0b5e221461065057610251565b8063357bf15c116101c757806349bd5a5e1161018b57806349bd5a5e1461052d5780634a74bb02146105425780634bf2c7c9146105575780636827e7641461058157806368683f8a1461059657610251565b8063357bf15c1461044657806339509351146104725780633b124fe7146104ab5780634549b039146104c057806347f2dc5b146104f257610251565b806319db457d1161020e57806319db457d1461039a57806323b872dd146103af5780632d838119146103f2578063313ce5671461041c578063355bc60b1461043157610251565b806306fdde0314610256578063095ea7b3146102e05780630d9a52191461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b6108f3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b038135169060200135610989565b604080519115158252519081900360200190f35b34801561033957600080fd5b506103426109a7565b60408051918252519081900360200190f35b34801561036057600080fd5b506103696109ad565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b506103426109bc565b3480156103a657600080fd5b506103426109c2565b3480156103bb57600080fd5b50610319600480360360608110156103d257600080fd5b506001600160a01b038135811691602081013590911690604001356109c8565b3480156103fe57600080fd5b506103426004803603602081101561041557600080fd5b5035610a4f565b34801561042857600080fd5b50610342610ab1565b34801561043d57600080fd5b50610342610ab7565b34801561045257600080fd5b506104706004803603602081101561046957600080fd5b5035610abd565b005b34801561047e57600080fd5b506103196004803603604081101561049557600080fd5b506001600160a01b038135169060200135610b1a565b3480156104b757600080fd5b50610342610b68565b3480156104cc57600080fd5b50610342600480360360408110156104e357600080fd5b50803590602001351515610b6e565b3480156104fe57600080fd5b506104706004803603604081101561051557600080fd5b506001600160a01b0381351690602001351515610c27565b34801561053957600080fd5b50610369610caa565b34801561054e57600080fd5b50610319610cb9565b34801561056357600080fd5b506104706004803603602081101561057a57600080fd5b5035610cc8565b34801561058d57600080fd5b50610342610d25565b3480156105a257600080fd5b50610470600480360360208110156105b957600080fd5b5035610d2b565b3480156105cc57600080fd5b50610342610d88565b3480156105e157600080fd5b50610342600480360360208110156105f857600080fd5b50356001600160a01b0316610d8e565b34801561061457600080fd5b50610470610df0565b34801561062957600080fd5b506104706004803603602081101561064057600080fd5b50356001600160a01b0316610e92565b34801561065c57600080fd5b50610342610f0c565b34801561067157600080fd5b50610369610f12565b34801561068657600080fd5b5061026b610f21565b34801561069b57600080fd5b50610342610f7f565b3480156106b057600080fd5b50610319600480360360408110156106c757600080fd5b506001600160a01b038135169060200135610f85565b3480156106e957600080fd5b506103196004803603604081101561070057600080fd5b506001600160a01b038135169060200135610fed565b34801561072257600080fd5b506104706004803603602081101561073957600080fd5b50351515611001565b34801561074e57600080fd5b5061034261106c565b34801561076357600080fd5b506104706004803603602081101561077a57600080fd5b5035611072565b34801561078d57600080fd5b50610470600480360360208110156107a457600080fd5b503515156110cf565b3480156107b957600080fd5b50610319600480360360208110156107d057600080fd5b50356001600160a01b0316611178565b3480156107ec57600080fd5b506103426004803603604081101561080357600080fd5b506001600160a01b0381358116916020013516611196565b34801561082757600080fd5b506103196111c1565b34801561083c57600080fd5b506104706004803603602081101561085357600080fd5b50356111ca565b34801561086657600080fd5b506104706004803603602081101561087d57600080fd5b50356001600160a01b0316611227565b34801561089957600080fd5b50610470600480360360208110156108b057600080fd5b50356001600160a01b03166113e4565b3480156108cc57600080fd5b50610470600480360360208110156108e357600080fd5b50356001600160a01b03166114dc565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b505050505090505b90565b600061099d610996611687565b848461168b565b5060015b92915050565b60135481565b6017546001600160a01b031681565b60075490565b600c5481565b60006109d5848484611777565b610a45846109e1611687565b610a4085604051806060016040528060288152602001612286602891396001600160a01b038a16600090815260066020526040812090610a1f611687565b6001600160a01b031681526020810191909152604001600020549190611b8d565b61168b565b5060019392505050565b6000600854821115610a925760405162461bcd60e51b815260040180806020018281038252602a8152602001806121f3602a913960400191505060405180910390fd5b6000610a9c611c24565b9050610aa88382611d9b565b9150505b919050565b60035490565b60125481565b610ac5611687565b6000546001600160a01b03908116911614610b15576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600e55565b600061099d610b27611687565b84610a408560066000610b38611687565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611de4565b600d5481565b6000600754831115610bc7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610be557610bde610bd7611c24565b8490611e3e565b90506109a1565b610bde610bf0611c24565b610c21610c1a600c54600a0a600201610c14600d5489611e3e90919063ffffffff16565b90611d9b565b8690611e97565b90611e3e565b610c2f611687565b6000546001600160a01b03908116911614610c7f576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6018546001600160a01b031681565b60155462010000900460ff1681565b610cd0611687565b6000546001600160a01b03908116911614610d20576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600f55565b60105481565b610d33611687565b6000546001600160a01b03908116911614610d83576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b601055565b600e5481565b6001600160a01b0381166000908152600a602052604081205460ff1615610dce57506001600160a01b038116600090815260056020526040902054610aac565b6001600160a01b0382166000908152600460205260409020546109a190610a4f565b610df8611687565b6000546001600160a01b03908116911614610e48576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e9a611687565b6000546001600160a01b03908116911614610eea576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000546001600160a01b031690565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b60145481565b600061099d610f92611687565b84610a40856040518060600160405280602581526020016123ab6025913960066000610fbc611687565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b8d565b600061099d610ffa611687565b8484611777565b611009611687565b6000546001600160a01b03908116911614611059576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6015805460ff1916911515919091179055565b600f5481565b61107a611687565b6000546001600160a01b039081169116146110ca576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600d55565b6110d7611687565b6000546001600160a01b03908116911614611127576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60155460ff1681565b6111d2611687565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b601655565b61122f611687565b6000546001600160a01b0390811691161461127f576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6017546001600160a01b03828116911614156112cc5760405162461bcd60e51b81526004018080602001828103825260298152602001806122f76029913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156113245760405162461bcd60e51b81526004018080602001828103825260228152602001806121d16022913960400191505060405180910390fd5b6001600160a01b0381166000908152600460205260409020541561137e576001600160a01b03811660009081526004602052604090205461136490610a4f565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6113ec611687565b6000546001600160a01b0390811691161461143c576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6001600160a01b0381166114815760405162461bcd60e51b815260040180806020018281038252602681526020018061221d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6114e4611687565b6000546001600160a01b03908116911614611534576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661158b5760405162461bcd60e51b81526004018080602001828103825260228152602001806123896022913960400191505060405180910390fd5b60005b600b5481101561168357816001600160a01b0316600b82815481106115af57fe5b6000918252602090912001546001600160a01b0316141561167b57600b805460001981019081106115dc57fe5b600091825260209091200154600b80546001600160a01b03909216918390811061160257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b80548061165457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611683565b60010161158e565b5050565b3390565b6001600160a01b0383166116d05760405162461bcd60e51b81526004018080602001828103825260248152602001806123656024913960400191505060405180910390fd5b6001600160a01b0382166117155760405162461bcd60e51b81526004018080602001828103825260228152602001806122436022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117bc5760405162461bcd60e51b81526004018080602001828103825260258152602001806123406025913960400191505060405180910390fd5b6001600160a01b0382166118015760405162461bcd60e51b81526004018080602001828103825260238152602001806121ae6023913960400191505060405180910390fd5b600081116118405760405162461bcd60e51b81526004018080602001828103825260298152602001806122ce6029913960400191505060405180910390fd5b6018546001600160a01b03838116911614156118ad576016548111156118ad576040805162461bcd60e51b815260206004820152601f60248201527f5472616e73666572204c696d6974204578636565647320666f722073656c6c00604482015290519081900360640190fd5b8060006118b8611c24565b601554909150600090819060ff1680156118f85750600960006118d9611687565b6001600160a01b0316815260208101919091526040016000205460ff16155b801561191d57506001600160a01b03861660009081526009602052604090205460ff16155b80156119315750601554610100900460ff16155b156119d65761193f84611ed9565b915061194b8483611e97565b9050611958878285611f18565b93506119886119678385611e3e565b6011546001600160a01b031660009081526004602052604090205490611de4565b601180546001600160a01b039081166000908152600460209081526040918290209490945591548251868152925190821693918b169260008051602061232083398151915292908290030190a35b611a026119e38685611e3e565b6001600160a01b03891660009081526004602052604090205490611e97565b6001600160a01b038816600090815260046020526040902055611a47611a288585611e3e565b6001600160a01b03881660009081526004602052604090205490611de4565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600a909152205460ff1615611ab8576001600160a01b038716600090815260056020526040902054611a9e9086611e97565b6001600160a01b0388166000908152600560205260409020555b6001600160a01b0386166000908152600a602052604090205460ff1615611b4a576001600160a01b038616600090815260056020526040902054611afc9085611de4565b6001600160a01b0380881660008181526005602090815260409182902094909455805188815290519193928b169260008051602061232083398151915292918290030190a350505050611b88565b856001600160a01b0316876001600160a01b0316600080516020612320833981519152866040518082815260200191505060405180910390a3505050505b505050565b60008184841115611c1c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be1578181015183820152602001611bc9565b50505050905090810190601f168015611c0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60085460075460009190825b600b54811015611d5b578260046000600b8481548110611c4c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611cb157508160056000600b8481548110611c8a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611ccf57600754600854611cc591611d9b565b9350505050610986565b611d0f60046000600b8481548110611ce357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e97565b9250611d5160056000600b8481548110611d2557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e97565b9150600101611c30565b50600754600854611d6b91611d9b565b821015611d8a57600754600854611d8191611d9b565b92505050610986565b611d948282611d9b565b9250505090565b6000611ddd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061210e565b9392505050565b600082820183811015611ddd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611e4d575060006109a1565b82820282848281611e5a57fe5b0414611ddd5760405162461bcd60e51b81526004018080602001828103825260218152602001806122656021913960400191505060405180910390fd5b6000611ddd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8d565b600080611ef16010548461217390919063ffffffff16565b90506000611f10612710610c1460105485611e3e90919063ffffffff16565b949350505050565b600d54600090839015611f81576000611f48600c54600201600a0a610c14600d5488611e3e90919063ffffffff16565b9050611f548282611e97565b9150611f6c611f638286611e3e565b60085490611e97565b600855601254611f7c9082611de4565b601255505b600e541561206c576000611fac600c54600201600a0a610c14600e5488611e3e90919063ffffffff16565b9050611fb88282611e97565b9150611fdd611fc78286611e3e565b3060009081526004602052604090205490611de4565b30600090815260046020908152604080832093909355600a9052205460ff161561202c573060009081526005602052604090205461201b9082611de4565b306000908152600560205260409020555b6014546120399082611de4565b60145560408051828152905130916001600160a01b038916916000805160206123208339815191529181900360200190a3505b600f5415611f10576000612097600c54600201600a0a610c14600f5488611e3e90919063ffffffff16565b90506120a38282611e97565b6007549092506120b39082611e97565b6007556120c3611f638286611e3e565b6008556013546120d39082611de4565b6013556040805182815290516000916001600160a01b038916916000805160206123208339815191529181900360200190a350949350505050565b6000818361215d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611be1578181015183820152602001611bc9565b50600083858161216957fe5b0495945050505050565b6000806121808484611de4565b9050600061218f826001611e97565b90506121a461219e8286611d9b565b85611e3e565b9594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122049aa147ae8d4e5070e6b82b18a65202f90298d814bc5e6b0c0e22b160070cff864736f6c634300060c0033546865426565436f6e73657276616e6379207c20742e6d652f544243546f6b656e
Deployed Bytecode
0x60806040526004361061024a5760003560e01c80636bc87c3a11610139578063b7bfff65116100b6578063dd62ed3e1161007a578063dd62ed3e146107e0578063e43504da1461081b578063ec28438a14610830578063f2cc0c181461085a578063f2fde38b1461088d578063f84354f1146108c057610251565b8063b7bfff6514610716578063c0b0fda214610742578063c4081a4c14610757578063c49b9a8014610781578063cba0e996146107ad57610251565b80638da5cb5b116100fd5780638da5cb5b1461066557806395d89b411461067a5780639d46cf8a1461068f578063a457c2d7146106a4578063a9059cbb146106dd57610251565b80636bc87c3a146105c057806370a08231146105d5578063715018a6146106085780638187f5161461061d5780638c0b5e221461065057610251565b8063357bf15c116101c757806349bd5a5e1161018b57806349bd5a5e1461052d5780634a74bb02146105425780634bf2c7c9146105575780636827e7641461058157806368683f8a1461059657610251565b8063357bf15c1461044657806339509351146104725780633b124fe7146104ab5780634549b039146104c057806347f2dc5b146104f257610251565b806319db457d1161020e57806319db457d1461039a57806323b872dd146103af5780632d838119146103f2578063313ce5671461041c578063355bc60b1461043157610251565b806306fdde0314610256578063095ea7b3146102e05780630d9a52191461032d5780631694505e1461035457806318160ddd1461038557610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b6108f3565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a557818101518382015260200161028d565b50505050905090810190601f1680156102d25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ec57600080fd5b506103196004803603604081101561030357600080fd5b506001600160a01b038135169060200135610989565b604080519115158252519081900360200190f35b34801561033957600080fd5b506103426109a7565b60408051918252519081900360200190f35b34801561036057600080fd5b506103696109ad565b604080516001600160a01b039092168252519081900360200190f35b34801561039157600080fd5b506103426109bc565b3480156103a657600080fd5b506103426109c2565b3480156103bb57600080fd5b50610319600480360360608110156103d257600080fd5b506001600160a01b038135811691602081013590911690604001356109c8565b3480156103fe57600080fd5b506103426004803603602081101561041557600080fd5b5035610a4f565b34801561042857600080fd5b50610342610ab1565b34801561043d57600080fd5b50610342610ab7565b34801561045257600080fd5b506104706004803603602081101561046957600080fd5b5035610abd565b005b34801561047e57600080fd5b506103196004803603604081101561049557600080fd5b506001600160a01b038135169060200135610b1a565b3480156104b757600080fd5b50610342610b68565b3480156104cc57600080fd5b50610342600480360360408110156104e357600080fd5b50803590602001351515610b6e565b3480156104fe57600080fd5b506104706004803603604081101561051557600080fd5b506001600160a01b0381351690602001351515610c27565b34801561053957600080fd5b50610369610caa565b34801561054e57600080fd5b50610319610cb9565b34801561056357600080fd5b506104706004803603602081101561057a57600080fd5b5035610cc8565b34801561058d57600080fd5b50610342610d25565b3480156105a257600080fd5b50610470600480360360208110156105b957600080fd5b5035610d2b565b3480156105cc57600080fd5b50610342610d88565b3480156105e157600080fd5b50610342600480360360208110156105f857600080fd5b50356001600160a01b0316610d8e565b34801561061457600080fd5b50610470610df0565b34801561062957600080fd5b506104706004803603602081101561064057600080fd5b50356001600160a01b0316610e92565b34801561065c57600080fd5b50610342610f0c565b34801561067157600080fd5b50610369610f12565b34801561068657600080fd5b5061026b610f21565b34801561069b57600080fd5b50610342610f7f565b3480156106b057600080fd5b50610319600480360360408110156106c757600080fd5b506001600160a01b038135169060200135610f85565b3480156106e957600080fd5b506103196004803603604081101561070057600080fd5b506001600160a01b038135169060200135610fed565b34801561072257600080fd5b506104706004803603602081101561073957600080fd5b50351515611001565b34801561074e57600080fd5b5061034261106c565b34801561076357600080fd5b506104706004803603602081101561077a57600080fd5b5035611072565b34801561078d57600080fd5b50610470600480360360208110156107a457600080fd5b503515156110cf565b3480156107b957600080fd5b50610319600480360360208110156107d057600080fd5b50356001600160a01b0316611178565b3480156107ec57600080fd5b506103426004803603604081101561080357600080fd5b506001600160a01b0381358116916020013516611196565b34801561082757600080fd5b506103196111c1565b34801561083c57600080fd5b506104706004803603602081101561085357600080fd5b50356111ca565b34801561086657600080fd5b506104706004803603602081101561087d57600080fd5b50356001600160a01b0316611227565b34801561089957600080fd5b50610470600480360360208110156108b057600080fd5b50356001600160a01b03166113e4565b3480156108cc57600080fd5b50610470600480360360208110156108e357600080fd5b50356001600160a01b03166114dc565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b505050505090505b90565b600061099d610996611687565b848461168b565b5060015b92915050565b60135481565b6017546001600160a01b031681565b60075490565b600c5481565b60006109d5848484611777565b610a45846109e1611687565b610a4085604051806060016040528060288152602001612286602891396001600160a01b038a16600090815260066020526040812090610a1f611687565b6001600160a01b031681526020810191909152604001600020549190611b8d565b61168b565b5060019392505050565b6000600854821115610a925760405162461bcd60e51b815260040180806020018281038252602a8152602001806121f3602a913960400191505060405180910390fd5b6000610a9c611c24565b9050610aa88382611d9b565b9150505b919050565b60035490565b60125481565b610ac5611687565b6000546001600160a01b03908116911614610b15576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600e55565b600061099d610b27611687565b84610a408560066000610b38611687565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611de4565b600d5481565b6000600754831115610bc7576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610be557610bde610bd7611c24565b8490611e3e565b90506109a1565b610bde610bf0611c24565b610c21610c1a600c54600a0a600201610c14600d5489611e3e90919063ffffffff16565b90611d9b565b8690611e97565b90611e3e565b610c2f611687565b6000546001600160a01b03908116911614610c7f576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6018546001600160a01b031681565b60155462010000900460ff1681565b610cd0611687565b6000546001600160a01b03908116911614610d20576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600f55565b60105481565b610d33611687565b6000546001600160a01b03908116911614610d83576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b601055565b600e5481565b6001600160a01b0381166000908152600a602052604081205460ff1615610dce57506001600160a01b038116600090815260056020526040902054610aac565b6001600160a01b0382166000908152600460205260409020546109a190610a4f565b610df8611687565b6000546001600160a01b03908116911614610e48576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e9a611687565b6000546001600160a01b03908116911614610eea576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b6000546001600160a01b031690565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561097e5780601f106109535761010080835404028352916020019161097e565b60145481565b600061099d610f92611687565b84610a40856040518060600160405280602581526020016123ab6025913960066000610fbc611687565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b8d565b600061099d610ffa611687565b8484611777565b611009611687565b6000546001600160a01b03908116911614611059576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6015805460ff1916911515919091179055565b600f5481565b61107a611687565b6000546001600160a01b039081169116146110ca576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b600d55565b6110d7611687565b6000546001600160a01b03908116911614611127576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6015805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600a602052604090205460ff1690565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b60155460ff1681565b6111d2611687565b6000546001600160a01b03908116911614611222576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b601655565b61122f611687565b6000546001600160a01b0390811691161461127f576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6017546001600160a01b03828116911614156112cc5760405162461bcd60e51b81526004018080602001828103825260298152602001806122f76029913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff16156113245760405162461bcd60e51b81526004018080602001828103825260228152602001806121d16022913960400191505060405180910390fd5b6001600160a01b0381166000908152600460205260409020541561137e576001600160a01b03811660009081526004602052604090205461136490610a4f565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6113ec611687565b6000546001600160a01b0390811691161461143c576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6001600160a01b0381166114815760405162461bcd60e51b815260040180806020018281038252602681526020018061221d6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6114e4611687565b6000546001600160a01b03908116911614611534576040805162461bcd60e51b815260206004820181905260248201526000805160206122ae833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff1661158b5760405162461bcd60e51b81526004018080602001828103825260228152602001806123896022913960400191505060405180910390fd5b60005b600b5481101561168357816001600160a01b0316600b82815481106115af57fe5b6000918252602090912001546001600160a01b0316141561167b57600b805460001981019081106115dc57fe5b600091825260209091200154600b80546001600160a01b03909216918390811061160257fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600a90925220805460ff19169055600b80548061165457fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611683565b60010161158e565b5050565b3390565b6001600160a01b0383166116d05760405162461bcd60e51b81526004018080602001828103825260248152602001806123656024913960400191505060405180910390fd5b6001600160a01b0382166117155760405162461bcd60e51b81526004018080602001828103825260228152602001806122436022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166117bc5760405162461bcd60e51b81526004018080602001828103825260258152602001806123406025913960400191505060405180910390fd5b6001600160a01b0382166118015760405162461bcd60e51b81526004018080602001828103825260238152602001806121ae6023913960400191505060405180910390fd5b600081116118405760405162461bcd60e51b81526004018080602001828103825260298152602001806122ce6029913960400191505060405180910390fd5b6018546001600160a01b03838116911614156118ad576016548111156118ad576040805162461bcd60e51b815260206004820152601f60248201527f5472616e73666572204c696d6974204578636565647320666f722073656c6c00604482015290519081900360640190fd5b8060006118b8611c24565b601554909150600090819060ff1680156118f85750600960006118d9611687565b6001600160a01b0316815260208101919091526040016000205460ff16155b801561191d57506001600160a01b03861660009081526009602052604090205460ff16155b80156119315750601554610100900460ff16155b156119d65761193f84611ed9565b915061194b8483611e97565b9050611958878285611f18565b93506119886119678385611e3e565b6011546001600160a01b031660009081526004602052604090205490611de4565b601180546001600160a01b039081166000908152600460209081526040918290209490945591548251868152925190821693918b169260008051602061232083398151915292908290030190a35b611a026119e38685611e3e565b6001600160a01b03891660009081526004602052604090205490611e97565b6001600160a01b038816600090815260046020526040902055611a47611a288585611e3e565b6001600160a01b03881660009081526004602052604090205490611de4565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600a909152205460ff1615611ab8576001600160a01b038716600090815260056020526040902054611a9e9086611e97565b6001600160a01b0388166000908152600560205260409020555b6001600160a01b0386166000908152600a602052604090205460ff1615611b4a576001600160a01b038616600090815260056020526040902054611afc9085611de4565b6001600160a01b0380881660008181526005602090815260409182902094909455805188815290519193928b169260008051602061232083398151915292918290030190a350505050611b88565b856001600160a01b0316876001600160a01b0316600080516020612320833981519152866040518082815260200191505060405180910390a3505050505b505050565b60008184841115611c1c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be1578181015183820152602001611bc9565b50505050905090810190601f168015611c0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60085460075460009190825b600b54811015611d5b578260046000600b8481548110611c4c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611cb157508160056000600b8481548110611c8a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611ccf57600754600854611cc591611d9b565b9350505050610986565b611d0f60046000600b8481548110611ce357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e97565b9250611d5160056000600b8481548110611d2557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e97565b9150600101611c30565b50600754600854611d6b91611d9b565b821015611d8a57600754600854611d8191611d9b565b92505050610986565b611d948282611d9b565b9250505090565b6000611ddd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061210e565b9392505050565b600082820183811015611ddd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611e4d575060006109a1565b82820282848281611e5a57fe5b0414611ddd5760405162461bcd60e51b81526004018080602001828103825260218152602001806122656021913960400191505060405180910390fd5b6000611ddd83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8d565b600080611ef16010548461217390919063ffffffff16565b90506000611f10612710610c1460105485611e3e90919063ffffffff16565b949350505050565b600d54600090839015611f81576000611f48600c54600201600a0a610c14600d5488611e3e90919063ffffffff16565b9050611f548282611e97565b9150611f6c611f638286611e3e565b60085490611e97565b600855601254611f7c9082611de4565b601255505b600e541561206c576000611fac600c54600201600a0a610c14600e5488611e3e90919063ffffffff16565b9050611fb88282611e97565b9150611fdd611fc78286611e3e565b3060009081526004602052604090205490611de4565b30600090815260046020908152604080832093909355600a9052205460ff161561202c573060009081526005602052604090205461201b9082611de4565b306000908152600560205260409020555b6014546120399082611de4565b60145560408051828152905130916001600160a01b038916916000805160206123208339815191529181900360200190a3505b600f5415611f10576000612097600c54600201600a0a610c14600f5488611e3e90919063ffffffff16565b90506120a38282611e97565b6007549092506120b39082611e97565b6007556120c3611f638286611e3e565b6008556013546120d39082611de4565b6013556040805182815290516000916001600160a01b038916916000805160206123208339815191529181900360200190a350949350505050565b6000818361215d5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611be1578181015183820152602001611bc9565b50600083858161216957fe5b0495945050505050565b6000806121808484611de4565b9050600061218f826001611e97565b90506121a461219e8286611d9b565b85611e3e565b9594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122049aa147ae8d4e5070e6b82b18a65202f90298d814bc5e6b0c0e22b160070cff864736f6c634300060c0033
Deployed Bytecode Sourcemap
21215:15191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23739:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24988:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24988:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22394:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;22666:42;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;22666:42:0;;;;;;;;;;;;;;24018:99;;;;;;;;;;;;;:::i;22020:30::-;;;;;;;;;;;;;:::i;25189:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25189:368:0;;;;;;;;;;;;;;;;;:::i;26927:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26927:368:0;;:::i;23925:85::-;;;;;;;;;;;;;:::i;22360:27::-;;;;;;;;;;;;;:::i;36061:95::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36061:95:0;;:::i;:::-;;25565:300;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25565:300:0;;;;;;;;:::i;22088:26::-;;;;;;;;;;;;;:::i;26399:520::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26399:520:0;;;;;;;;;:::i;35464:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35464:113:0;;;;;;;;;;:::i;22715:29::-;;;;;;;;;;;;;:::i;22549:40::-;;;;;;;;;;;;;:::i;35964:85::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35964:85:0;;:::i;22229:27::-;;;;;;;;;;;;;:::i;36168:85::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36168:85:0;;:::i;22148:32::-;;;;;;;;;;;;;:::i;24352:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24352:215:0;-1:-1:-1;;;;;24352:215:0;;:::i;18650:148::-;;;;;;;;;;;;;:::i;35367:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35367:89:0;-1:-1:-1;;;;;35367:89:0;;:::i;22602:45::-;;;;;;;;;;;;;:::i;18008:79::-;;;;;;;;;;;;;:::i;23830:87::-;;;;;;;;;;;;;:::i;22429:33::-;;;;;;;;;;;;;:::i;25873:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25873:400:0;;;;;;;;:::i;24575:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24575:213:0;;;;;;;;:::i;35766:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35766:91:0;;;;:::i;22191:27::-;;;;;;;;;;;;;:::i;35869:83::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35869:83:0;;:::i;35589:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35589:165:0;;;;:::i;26281:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26281:110:0;-1:-1:-1;;;;;26281:110:0;;:::i;24796:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24796:184:0;;;;;;;;;;:::i;22471:31::-;;;;;;;;;;;;;:::i;36262:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36262:98:0;;:::i;27303:537::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27303:537:0;-1:-1:-1;;;;;27303:537:0;;:::i;18953:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18953:281:0;-1:-1:-1;;;;;18953:281:0;;:::i;27848:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27848:491:0;-1:-1:-1;;;;;27848:491:0;;:::i;23739:83::-;23809:5;23802:12;;;;;;;;-1:-1:-1;;23802:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23776:13;;23802:12;;23809:5;;23802:12;;23809:5;23802:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23739:83;;:::o;24988:193::-;25090:4;25112:39;25121:12;:10;:12::i;:::-;25135:7;25144:6;25112:8;:39::i;:::-;-1:-1:-1;25169:4:0;24988:193;;;;;:::o;22394:28::-;;;;:::o;22666:42::-;;;-1:-1:-1;;;;;22666:42:0;;:::o;24018:99::-;24098:11;;24018:99;:::o;22020:30::-;;;;:::o;25189:368::-;25329:4;25346:34;25356:6;25363:9;25373:6;25346:9;:34::i;:::-;25408:119;25417:6;25424:12;:10;:12::i;:::-;25437:89;25476:6;25437:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25437:19:0;;;;;;:11;:19;;;;;;25457:12;:10;:12::i;:::-;-1:-1:-1;;;;;25437:33:0;;;;;;;;;;;;-1:-1:-1;25437:33:0;;;:89;:37;:89::i;:::-;25408:8;:119::i;:::-;-1:-1:-1;25545:4:0;25189:368;;;;;:::o;26927:::-;27030:7;27097:16;;27077;:36;;27055:128;;;;-1:-1:-1;;;27055:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27194:19;27216:20;:18;:20::i;:::-;27194:42;-1:-1:-1;27254:33:0;:16;27194:42;27254:20;:33::i;:::-;27247:40;;;26927:368;;;;:::o;23925:85::-;23993:9;;23925:85;:::o;22360:27::-;;;;:::o;36061:95::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;36129:13:::1;:19:::0;36061:95::o;25565:300::-;25680:4;25702:133;25725:12;:10;:12::i;:::-;25752:7;25774:50;25813:10;25774:11;:25;25786:12;:10;:12::i;:::-;-1:-1:-1;;;;;25774:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25774:25:0;;;:34;;;;;;;;;;;:38;:50::i;22088:26::-;;;;:::o;26399:520::-;26521:7;26569:11;;26554;:26;;26546:70;;;;;-1:-1:-1;;;26546:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26632:17;26627:285;;26673:37;26689:20;:18;:20::i;:::-;26673:11;;:15;:37::i;:::-;26666:44;;;;26627:285;26767:133;26861:20;:18;:20::i;:::-;26767:67;26783:50;26817:11;;26812:2;:16;26831:1;26812:20;26783:24;26799:7;;26783:11;:15;;:24;;;;:::i;:::-;:28;;:50::i;:::-;26767:11;;:15;:67::i;:::-;:71;;:133::i;35464:113::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35543:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;35543:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35464:113::o;22715:29::-;;;-1:-1:-1;;;;;22715:29:0;;:::o;22549:40::-;;;;;;;;;:::o;35964:85::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;36027:8:::1;:14:::0;35964:85::o;22229:27::-;;;;:::o;36168:85::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;36230:6:::1;:15:::0;36168:85::o;22148:32::-;;;;:::o;24352:215::-;-1:-1:-1;;;;;24442:20:0;;24418:7;24442:20;;;:11;:20;;;;;;;;24438:55;;;-1:-1:-1;;;;;;24471:22:0;;;;;;:13;:22;;;;;;24464:29;;24438:55;-1:-1:-1;;;;;24531:27:0;;;;;;:18;:27;;;;;;24511:48;;:19;:48::i;18650:148::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;18757:1:::1;18741:6:::0;;18720:40:::1;::::0;-1:-1:-1;;;;;18741:6:0;;::::1;::::0;18720:40:::1;::::0;18757:1;;18720:40:::1;18788:1;18771:19:::0;;-1:-1:-1;;;;;;18771:19:0::1;::::0;;18650:148::o;35367:89::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;35428:13:::1;:20:::0;;-1:-1:-1;;;;;;35428:20:0::1;-1:-1:-1::0;;;;;35428:20:0;;;::::1;::::0;;;::::1;::::0;;35367:89::o;22602:45::-;;;;:::o;18008:79::-;18046:7;18073:6;-1:-1:-1;;;;;18073:6:0;18008:79;:::o;23830:87::-;23902:7;23895:14;;;;;;;-1:-1:-1;;23895:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23869:13;;23895:14;;23902:7;;23895:14;;23902:7;23895:14;;;;;;;;;;;;;;;;;;;;;;;;22429:33;;;;:::o;25873:400::-;25993:4;26015:228;26038:12;:10;:12::i;:::-;26065:7;26087:145;26144:15;26087:145;;;;;;;;;;;;;;;;;:11;:25;26099:12;:10;:12::i;:::-;-1:-1:-1;;;;;26087:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;26087:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;24575:213::-;24697:4;24718:40;24728:12;:10;:12::i;:::-;24741:9;24751:6;24718:9;:40::i;35766:91::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;35830:11:::1;:19:::0;;-1:-1:-1;;35830:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35766:91::o;22191:27::-;;;;:::o;35869:83::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;35931:7:::1;:13:::0;35869:83::o;35589:165::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;35667:21:::1;:31:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;35667:31:0;;::::1;::::0;;;::::1;::::0;;;35709:37:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;35589:165:::0;:::o;26281:110::-;-1:-1:-1;;;;;26363:20:0;26339:4;26363:20;;;:11;:20;;;;;;;;;26281:110::o;24796:184::-;-1:-1:-1;;;;;24945:18:0;;;24913:7;24945:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24796:184::o;22471:31::-;;;;;;:::o;36262:98::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;36332:11:::1;:20:::0;36262:98::o;27303:537::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;27417:15:::1;::::0;-1:-1:-1;;;;;27398:35:0;;::::1;27417:15:::0;::::1;27398:35;;27376:126;;;;-1:-1:-1::0;;;27376:126:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;27522:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27521:21;27513:68;;;;-1:-1:-1::0;;;27513:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;27596:27:0;::::1;27626:1;27596:27:::0;;;:18:::1;:27;::::0;;;;;:31;27592:169:::1;;-1:-1:-1::0;;;;;27707:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;27669:80:::1;::::0;:19:::1;:80::i;:::-;-1:-1:-1::0;;;;;27644:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;:105;27592:169:::1;-1:-1:-1::0;;;;;27771:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;27771:27:0::1;27794:4;27771:27:::0;;::::1;::::0;;;27809:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;27809:23:0::1;::::0;;::::1;::::0;;27303:537::o;18953:281::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19056:22:0;::::1;19034:110;;;;-1:-1:-1::0;;;19034:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19181:6;::::0;;19160:38:::1;::::0;-1:-1:-1;;;;;19160:38:0;;::::1;::::0;19181:6;::::1;::::0;19160:38:::1;::::0;::::1;19209:6;:17:::0;;-1:-1:-1;;;;;;19209:17:0::1;-1:-1:-1::0;;;;;19209:17:0;;;::::1;::::0;;;::::1;::::0;;18953:281::o;27848:491::-;18230:12;:10;:12::i;:::-;18220:6;;-1:-1:-1;;;;;18220:6:0;;;:22;;;18212:67;;;;;-1:-1:-1;;;18212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18212:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27929:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27921:67;;;;-1:-1:-1::0;;;27921:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28004:9;27999:333;28023:9;:16:::0;28019:20;::::1;27999:333;;;28081:7;-1:-1:-1::0;;;;;28065:23:0::1;:9;28075:1;28065:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;28065:12:0::1;:23;28061:260;;;28124:9;28134:16:::0;;-1:-1:-1;;28134:20:0;;;28124:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;28109:9:::1;:12:::0;;-1:-1:-1;;;;;28124:31:0;;::::1;::::0;28119:1;;28109:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;28109:46:0::1;-1:-1:-1::0;;;;;28109:46:0;;::::1;;::::0;;28174:22;;::::1;::::0;;:13:::1;:22:::0;;;;;;:26;;;28219:11:::1;:20:::0;;;;:28;;-1:-1:-1;;28219:28:0::1;::::0;;28266:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;28266:15:0;;;;;-1:-1:-1;;;;;;28266:15:0::1;::::0;;;;;28300:5:::1;;28061:260;28041:3;;27999:333;;;;27848:491:::0;:::o;1587:106::-;1675:10;1587:106;:::o;28347:371::-;-1:-1:-1;;;;;28474:19:0;;28466:68;;;;-1:-1:-1;;;28466:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28553:21:0;;28545:68;;;;-1:-1:-1;;;28545:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28626:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28678:32;;;;;;;;;;;;;;;;;28347:371;;;:::o;28726:1964::-;-1:-1:-1;;;;;28857:20:0;;28849:70;;;;-1:-1:-1;;;28849:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28938:23:0;;28930:71;;;;-1:-1:-1;;;28930:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29029:1;29020:6;:10;29012:64;;;;-1:-1:-1;;;29012:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29113:13;;-1:-1:-1;;;;;29100:26:0;;;29113:13;;29100:26;29097:119;;;29157:11;;29147:6;:21;;29139:65;;;;;-1:-1:-1;;;29139:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29253:6;29228:22;29285:20;:18;:20::i;:::-;29387:11;;29270:35;;-1:-1:-1;29316:20:0;;;;29387:11;;:39;;;;;29403:9;:23;29413:12;:10;:12::i;:::-;-1:-1:-1;;;;;29403:23:0;;;;;;;;;;;;-1:-1:-1;29403:23:0;;;;29402:24;29387:39;:64;;;;-1:-1:-1;;;;;;29431:20:0;;;;;;:9;:20;;;;;;;;29430:21;29387:64;:85;;;;-1:-1:-1;29456:16:0;;;;;;;29455:17;29387:85;29384:532;;;29517:28;29530:14;29517:12;:28::i;:::-;29502:43;-1:-1:-1;29579:32:0;:14;29502:43;29579:18;:32::i;:::-;29560:51;;29643:40;29654:6;29661:16;29678:4;29643:10;:40::i;:::-;29626:57;-1:-1:-1;29774:58:0;29809:22;:12;29826:4;29809:16;:22::i;:::-;29793:10;;-1:-1:-1;;;;;29793:10:0;29774:30;;;;:18;:30;;;;;;;:34;:58::i;:::-;29760:10;;;-1:-1:-1;;;;;29760:10:0;;;29741:30;;;;:18;:30;;;;;;;;;:91;;;;29879:10;;29862:42;;;;;;;29879:10;;;;29862:42;;;;-1:-1:-1;;;;;;;;;;;29862:42:0;;;;;;;;29384:532;30008:48;30039:16;:6;30050:4;30039:10;:16::i;:::-;-1:-1:-1;;;;;30008:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;29979:26:0;;;;;;:18;:26;;;;;:77;30119:59;30153:24;:14;30172:4;30153:18;:24::i;:::-;-1:-1:-1;;;;;30119:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;30087:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;30267:19;;;;;:11;:19;;;;;;;30263:109;;;-1:-1:-1;;;;;30327:21:0;;;;;;:13;:21;;;;;;:33;;30353:6;30327:25;:33::i;:::-;-1:-1:-1;;;;;30303:21:0;;;;;;:13;:21;;;;;:57;30263:109;-1:-1:-1;;;;;30386:22:0;;;;;;:11;:22;;;;;;;;30382:230;;;-1:-1:-1;;;;;30452:24:0;;;;;;:13;:24;;;;;;:44;;30481:14;30452:28;:44::i;:::-;-1:-1:-1;;;;;30425:24:0;;;;;;;:13;:24;;;;;;;;;:71;;;;30530:43;;;;;;;30425:24;;30530:43;;;;-1:-1:-1;;;;;;;;;;;30530:43:0;;;;;;;;30594:7;;;;;;30382:230;30646:9;-1:-1:-1;;;;;30629:43:0;30638:6;-1:-1:-1;;;;;30629:43:0;-1:-1:-1;;;;;;;;;;;30657:14:0;30629:43;;;;;;;;;;;;;;;;;;28726:1964;;;;;;;;:::o;6510:226::-;6630:7;6666:12;6658:6;;;;6650:29;;;;-1:-1:-1;;;6650:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6702:5:0;;;6510:226::o;32313:808::-;32412:16;;32461:11;;32365:7;;32412:16;32365:7;32483:458;32507:9;:16;32503:20;;32483:458;;;32602:16;32567:18;:32;32586:9;32596:1;32586:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32586:12:0;32567:32;;;;;;;;;;;;;:51;;:113;;;32669:11;32639:13;:27;32653:9;32663:1;32653:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32653:12:0;32639:27;;;;;;;;;;;;;:41;32567:113;32545:191;;;32724:11;;32703:16;;:33;;:20;:33::i;:::-;32696:40;;;;;;;32545:191;32770:86;32809:18;:32;32828:9;32838:1;32828:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32828:12:0;32809:32;;;;;;;;;;;;;32770:16;;:20;:86::i;:::-;32751:105;;32885:44;32901:13;:27;32915:9;32925:1;32915:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32915:12:0;32901:27;;;;;;;;;;;;;32885:11;;:15;:44::i;:::-;32871:58;-1:-1:-1;32525:3:0;;32483:458;;;-1:-1:-1;32995:11:0;;32974:16;;:33;;:20;:33::i;:::-;32955:16;:52;32951:111;;;33050:11;;33029:16;;:33;;:20;:33::i;:::-;33022:40;;;;;;32951:111;33080:33;:16;33101:11;33080:20;:33::i;:::-;33073:40;;;;32313:808;:::o;7942:132::-;8000:7;8027:39;8031:1;8034;8027:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;8020:46;7942:132;-1:-1:-1;;;7942:132:0:o;5607:181::-;5665:7;5697:5;;;5721:6;;;;5713:46;;;;;-1:-1:-1;;;5713:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6995:471;7053:7;7298:6;7294:47;;-1:-1:-1;7328:1:0;7321:8;;7294:47;7365:5;;;7369:1;7365;:5;:1;7389:5;;;;;:10;7381:56;;;;-1:-1:-1;;;7381:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6071:136;6129:7;6156:43;6160:1;6163;6156:43;;;;;;;;;;;;;;;;;:3;:43::i;24135:207::-;24195:7;24212:18;24233;24244:6;;24233:5;:10;;:18;;;;:::i;:::-;24212:39;;24258:18;24279:33;24306:5;24279:22;24294:6;;24279:10;:14;;:22;;;;:::i;:33::-;24258:54;24135:207;-1:-1:-1;;;;24135:207:0:o;30702:1603::-;30885:7;;30786;;30831:6;;30885:12;30882:290;;30913:14;30930:46;30959:11;;30973:1;30959:15;30954:2;:21;30930:19;30941:7;;30930:6;:10;;:19;;;;:::i;:46::-;30913:63;-1:-1:-1;31008:26:0;:14;30913:63;31008:18;:26::i;:::-;30991:43;-1:-1:-1;31068:38:0;31089:16;:6;31100:4;31089:10;:16::i;:::-;31068;;;:20;:38::i;:::-;31049:16;:57;31136:12;;:24;;31153:6;31136:16;:24::i;:::-;31121:12;:39;-1:-1:-1;30882:290:0;31217:13;;:18;31214:592;;31251:20;31274:52;31309:11;;31323:1;31309:15;31304:2;:21;31274:25;31285:13;;31274:6;:10;;:25;;;;:::i;:52::-;31251:75;-1:-1:-1;31358:32:0;:14;31251:75;31358:18;:32::i;:::-;31341:49;-1:-1:-1;31441:61:0;31479:22;:12;31496:4;31479:16;:22::i;:::-;31468:4;31441:33;;;;:18;:33;;;;;;;:37;:61::i;:::-;31432:4;31405:33;;;;:18;:33;;;;;;;;:97;;;;31520:11;:26;;;;;;31517:142;;;31619:4;31597:28;;;;:13;:28;;;;;;:46;;31630:12;31597:32;:46::i;:::-;31588:4;31566:28;;;;:13;:28;;;;;:77;31517:142;31694:18;;:36;;31717:12;31694:22;:36::i;:::-;31673:18;:57;31750:44;;;;;;;;31775:4;;-1:-1:-1;;;;;31750:44:0;;;-1:-1:-1;;;;;;;;;;;31750:44:0;;;;;;;;31214:592;;31852:8;;:13;31849:407;;31881:15;31899:47;31929:11;;31943:1;31929:15;31924:2;:21;31899:20;31910:8;;31899:6;:10;;:20;;;;:::i;:47::-;31881:65;-1:-1:-1;31978:27:0;:14;31881:65;31978:18;:27::i;:::-;32034:11;;31961:44;;-1:-1:-1;32034:24:0;;32050:7;32034:15;:24::i;:::-;32020:11;:38;32092:39;32113:17;:7;32125:4;32113:11;:17::i;32092:39::-;32073:16;:58;32162:13;;:26;;32180:7;32162:17;:26::i;:::-;32146:13;:42;32208:36;;;;;;;;32233:1;;-1:-1:-1;;;;;32208:36:0;;;-1:-1:-1;;;;;;;;;;;32208:36:0;;;;;;;;31849:407;32283:14;30702:1603;-1:-1:-1;;;;30702:1603:0:o;8570:312::-;8690:7;8725:12;8718:5;8710:28;;;;-1:-1:-1;;;8710:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8749:9;8765:1;8761;:5;;;;;;;8570:312;-1:-1:-1;;;;;8570:312:0:o;10174:157::-;10233:7;10249:9;10261:8;10265:1;10267;10261:3;:8::i;:::-;10249:20;;10276:9;10288:8;10292:1;10294;10288:3;:8::i;:::-;10276:20;;10310:15;10314:8;10318:1;10320;10314:3;:8::i;:::-;10323:1;10310:3;:15::i;:::-;10303:22;10174:157;-1:-1:-1;;;;;10174:157:0:o
Swarm Source
ipfs://49aa147ae8d4e5070e6b82b18a65202f90298d814bc5e6b0c0e22b160070cff8
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.