Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 Gotchu
Holders
239
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,055,731.437386234134810883 GotchuValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Gotchu
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-27 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.16; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Gotchu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; bytes32 private secret; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public validationRequired = false; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public addressValidated; address[] private validatedAddresses; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor(bytes32 _secret) ERC20("Gotchu", "Gotchu") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 4; uint256 _buyLiquidityFee = 2; uint256 _sellDevFee = 4; uint256 _sellLiquidityFee = 2; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = totalSupply * 1 / 100; // 1% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 1 / 100; // 1% from total supply maxWallet swapTokensAtAmount = (totalSupply * 1) / 1000; // 0.1% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0x6D310Dcc5BB4BD2E136f0c5792D4fC2561194197); // set as dev wallet secret = _secret; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading(uint256 reset) external onlyOwner { if (!tradingActive && reset == 1) { for (uint256 i=0; i < validatedAddresses.length; i++) { addressValidated[validatedAddresses[i]] = false; } } tradingActive = true; swapEnabled = true; validationRequired = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; require(buyTotalFees <= 6, "Must keep fees at 6% or less"); } function updateSellFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; require(sellTotalFees <= 6, "Must keep fees at 6% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function validateAddress(bytes32 input) public { address dummy = msg.sender; if (input == keccak256(abi.encodePacked(secret, dummy))) { addressValidated[msg.sender] = true; validatedAddresses.push(msg.sender); } } function turnOffValidation() public onlyOwner { validationRequired = false; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { if (validationRequired) { require(addressValidated[to] == true, "Authenticate for trading first"); } require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"_secret","type":"bytes32"}],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressValidated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reset","type":"uint256"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"turnOffValidation","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"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"input","type":"bytes32"}],"name":"validateAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"validationRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600c805463ffffffff191660011790553480156200004757600080fd5b5060405162002a2138038062002a218339810160408190526200006a91620005b8565b604080518082018252600680825265476f7463687560d01b6020808401829052845180860190955291845290830152906003620000a8838262000676565b506004620000b7828262000676565b505050620000d4620000ce6200035460201b60201c565b62000358565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f6816001620003aa565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000141573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000167919062000742565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001df919062000742565b6001600160a01b031660a0819052620001fa906001620003aa565b6004600281816b033b2e3c9fd0803ce800000060646200021c8260016200078a565b620002289190620007ac565b60095560646200023a8260016200078a565b620002469190620007ac565b600b556103e8620002598260016200078a565b620002659190620007ac565b600a55600e859055600f8490556200027e8486620007cf565b600d5560118390556012829055620002978284620007cf565b601055600880546001600160a01b031916736d310dcc5bb4bd2e136f0c5792d4fc25611941971790556007879055620002e4620002dc6005546001600160a01b031690565b600162000424565b620002f130600162000424565b6200030061dead600162000424565b6200031f620003176005546001600160a01b031690565b6001620003aa565b6200032c306001620003aa565b6200033b61dead6001620003aa565b620003473382620004ce565b50505050505050620007eb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003f95760405162461bcd60e51b8152602060048201819052602482015260008051602062002a0183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200046f5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a018339815191526044820152606401620003f0565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005265760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003f0565b80600260008282546200053a9190620007cf565b90915550506001600160a01b0382166000908152602081905260408120805483929062000569908490620007cf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b600060208284031215620005cb57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005fd57607f821691505b6020821081036200061e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005b357600081815260208120601f850160051c810160208610156200064d5750805b601f850160051c820191505b818110156200066e5782815560010162000659565b505050505050565b81516001600160401b03811115620006925762000692620005d2565b620006aa81620006a38454620005e8565b8462000624565b602080601f831160018114620006e25760008415620006c95750858301515b600019600386901b1c1916600185901b1785556200066e565b600085815260208120601f198616915b828110156200071357888601518255948401946001909101908401620006f2565b5085821015620007325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200075557600080fd5b81516001600160a01b03811681146200076d57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007a757620007a762000774565b500290565b600082620007ca57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007e557620007e562000774565b92915050565b60805160a0516121bf62000842600039600081816104690152818161152e015281816117be015281816118ce015281816119770152611a3101526000818161034c01528181611d150152611d5401526121bf6000f3fe6080604052600436106102815760003560e01c806382aa7c681161014f578063bff09d69116100c1578063dd62ed3e1161007a578063dd62ed3e146107c4578063e2f456051461080a578063f11a24d314610820578063f2fde38b14610836578063f637434214610856578063f8b45b051461086c57600080fd5b8063bff09d6914610717578063c024666814610738578063c18bc19514610758578063c8c8ebe414610778578063d257b34f1461078e578063d85ba063146107ae57600080fd5b806395d89b411161011357806395d89b41146106675780639c3b4fdc1461067c578063a0d82dc514610692578063a9059cbb146106a8578063aedabd7e146106c8578063bbc0c742146106f857600080fd5b806382aa7c68146105c957806389a30271146105e95780638da5cb5b146106095780638ea5220f14610627578063924de9b71461064757600080fd5b806349629f66116101f35780636a486a8e116101ac5780636a486a8e146105135780636ddd17131461052957806370a0823114610549578063715018a61461057f578063751039fc146105945780637571336a146105a957600080fd5b806349629f661461043757806349bd5a5e146104575780634a62bb651461048b5780634fbee193146104a55780635916b477146104de57806366ca9b83146104f357600080fd5b806318160ddd1161024557806318160ddd146103865780631816467f146103a5578063203e727e146103c557806323b872dd146103e557806327c8f83514610405578063313ce5671461041b57600080fd5b806302dbd8f81461028d57806306fdde03146102af578063095ea7b3146102da57806310d5de531461030a5780631694505e1461033a57600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a8366004611dcc565b610882565b005b3480156102bb57600080fd5b506102c4610922565b6040516102d19190611dee565b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004611e53565b6109b4565b60405190151581526020016102d1565b34801561031657600080fd5b506102fa610325366004611e7d565b60146020526000908152604090205460ff1681565b34801561034657600080fd5b5061036e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d1565b34801561039257600080fd5b506002545b6040519081526020016102d1565b3480156103b157600080fd5b506102ad6103c0366004611e7d565b6109cb565b3480156103d157600080fd5b506102ad6103e0366004611e98565b610a52565b3480156103f157600080fd5b506102fa610400366004611eb1565b610b2f565b34801561041157600080fd5b5061036e61dead81565b34801561042757600080fd5b50604051601281526020016102d1565b34801561044357600080fd5b506102ad610452366004611e98565b610bd9565b34801561046357600080fd5b5061036e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561049757600080fd5b50600c546102fa9060ff1681565b3480156104b157600080fd5b506102fa6104c0366004611e7d565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104ea57600080fd5b506102ad610c86565b3480156104ff57600080fd5b506102ad61050e366004611dcc565b610cbf565b34801561051f57600080fd5b5061039760105481565b34801561053557600080fd5b50600c546102fa9062010000900460ff1681565b34801561055557600080fd5b50610397610564366004611e7d565b6001600160a01b031660009081526020819052604090205490565b34801561058b57600080fd5b506102ad610d52565b3480156105a057600080fd5b506102fa610d88565b3480156105b557600080fd5b506102ad6105c4366004611efd565b610dc5565b3480156105d557600080fd5b506102ad6105e4366004611e98565b610e1a565b3480156105f557600080fd5b5060065461036e906001600160a01b031681565b34801561061557600080fd5b506005546001600160a01b031661036e565b34801561063357600080fd5b5060085461036e906001600160a01b031681565b34801561065357600080fd5b506102ad610662366004611f30565b610ee5565b34801561067357600080fd5b506102c4610f2b565b34801561068857600080fd5b50610397600e5481565b34801561069e57600080fd5b5061039760115481565b3480156106b457600080fd5b506102fa6106c3366004611e53565b610f3a565b3480156106d457600080fd5b506102fa6106e3366004611e7d565b60156020526000908152604090205460ff1681565b34801561070457600080fd5b50600c546102fa90610100900460ff1681565b34801561072357600080fd5b50600c546102fa906301000000900460ff1681565b34801561074457600080fd5b506102ad610753366004611efd565b610f47565b34801561076457600080fd5b506102ad610773366004611e98565b610fd0565b34801561078457600080fd5b5061039760095481565b34801561079a57600080fd5b506102fa6107a9366004611e98565b6110a1565b3480156107ba57600080fd5b50610397600d5481565b3480156107d057600080fd5b506103976107df366004611f4b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081657600080fd5b50610397600a5481565b34801561082c57600080fd5b50610397600f5481565b34801561084257600080fd5b506102ad610851366004611e7d565b6111f8565b34801561086257600080fd5b5061039760125481565b34801561087857600080fd5b50610397600b5481565b6005546001600160a01b031633146108b55760405162461bcd60e51b81526004016108ac90611f75565b60405180910390fd5b601182905560128190556108c98183611fc0565b60108190556006101561091e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108ac565b5050565b60606003805461093190611fd3565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90611fd3565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109c1338484611293565b5060015b92915050565b6005546001600160a01b031633146109f55760405162461bcd60e51b81526004016108ac90611f75565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a7c5760405162461bcd60e51b81526004016108ac90611f75565b670de0b6b3a76400006103e8610a9160025490565b610a9c90600161200d565b610aa6919061202c565b610ab0919061202c565b811015610b175760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016108ac565b610b2981670de0b6b3a764000061200d565b60095550565b6000610b3c8484846113b7565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bc15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108ac565b610bce8533858403611293565b506001949350505050565b6007546040513391610c0a91839060200191825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120820361091e57336000818152601560205260408120805460ff191660019081179091556016805491820181559091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b03191690911790555050565b6005546001600160a01b03163314610cb05760405162461bcd60e51b81526004016108ac90611f75565b600c805463ff00000019169055565b6005546001600160a01b03163314610ce95760405162461bcd60e51b81526004016108ac90611f75565b600e829055600f819055610cfd8183611fc0565b600d8190556006101561091e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108ac565b6005546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016108ac90611f75565b610d866000611a79565b565b6005546000906001600160a01b03163314610db55760405162461bcd60e51b81526004016108ac90611f75565b50600c805460ff19169055600190565b6005546001600160a01b03163314610def5760405162461bcd60e51b81526004016108ac90611f75565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e445760405162461bcd60e51b81526004016108ac90611f75565b600c54610100900460ff16158015610e5c5750806001145b15610ecf5760005b601654811015610ecd5760006015600060168481548110610e8757610e8761204e565b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905580610ec581612064565b915050610e64565b505b50600c805463ffffff0019166301010100179055565b6005546001600160a01b03163314610f0f5760405162461bcd60e51b81526004016108ac90611f75565b600c8054911515620100000262ff000019909216919091179055565b60606004805461093190611fd3565b60006109c13384846113b7565b6005546001600160a01b03163314610f715760405162461bcd60e51b81526004016108ac90611f75565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016108ac90611f75565b670de0b6b3a76400006103e861100f60025490565b61101a90600561200d565b611024919061202c565b61102e919061202c565b8110156110895760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016108ac565b61109b81670de0b6b3a764000061200d565b600b5550565b6005546000906001600160a01b031633146110ce5760405162461bcd60e51b81526004016108ac90611f75565b620186a06110db60025490565b6110e690600161200d565b6110f0919061202c565b82101561115d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108ac565b6103e861116960025490565b61117490600561200d565b61117e919061202c565b8211156111ea5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108ac565b50600a81905560015b919050565b6005546001600160a01b031633146112225760405162461bcd60e51b81526004016108ac90611f75565b6001600160a01b0381166112875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ac565b61129081611a79565b50565b6001600160a01b0383166112f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ac565b6001600160a01b0382166113565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113dd5760405162461bcd60e51b81526004016108ac9061207d565b6001600160a01b0382166114035760405162461bcd60e51b81526004016108ac906120c2565b8060000361141c5761141783836000611acb565b505050565b600c5460ff1615611773576005546001600160a01b0384811691161480159061145357506005546001600160a01b03838116911614155b801561146757506001600160a01b03821615155b801561147e57506001600160a01b03821661dead14155b80156114945750600654600160a01b900460ff16155b1561177357600c54610100900460ff1661152c576001600160a01b03831660009081526013602052604090205460ff16806114e757506001600160a01b03821660009081526013602052604090205460ff165b61152c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108ac565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561158657506001600160a01b03821660009081526014602052604090205460ff16155b156116e957600c546301000000900460ff161561160a576001600160a01b03821660009081526015602052604090205460ff16151560011461160a5760405162461bcd60e51b815260206004820152601e60248201527f41757468656e74696361746520666f722074726164696e67206669727374000060448201526064016108ac565b60095481111561167a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ac565b600b546001600160a01b0383166000908152602081905260409020546116a09083611fc0565b11156116e45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ac565b611773565b6001600160a01b03821660009081526014602052604090205460ff1661177357600b546001600160a01b03831660009081526020819052604090205461172f9083611fc0565b11156117735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ac565b30600090815260208190526040902054600a548110801590819061179f5750600c5462010000900460ff165b80156117b55750600654600160a01b900460ff16155b80156117f257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561181757506001600160a01b03851660009081526013602052604090205460ff16155b801561183c57506001600160a01b03841660009081526013602052604090205460ff16155b1561186a576006805460ff60a01b1916600160a01b17905561185c611c20565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806118b857506001600160a01b03851660009081526013602052604090205460ff165b156118c1575060005b60008060008315611a63577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561190f57506000601054115b1561197557611934606461192e6010548a611c6a90919063ffffffff16565b90611c7d565b925060105460125484611947919061200d565b611951919061202c565b915060105460115484611964919061200d565b61196e919061202c565b9050611a14565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156119b857506000600d54115b15611a14576119d7606461192e600d548a611c6a90919063ffffffff16565b9250600d54600f54846119ea919061200d565b6119f4919061202c565b9150600d54600e5484611a07919061200d565b611a11919061202c565b90505b8215611a2557611a25893085611acb565b8115611a5657611a56307f000000000000000000000000000000000000000000000000000000000000000084611acb565b611a608388612105565b96505b611a6e898989611acb565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611af15760405162461bcd60e51b81526004016108ac9061207d565b6001600160a01b038216611b175760405162461bcd60e51b81526004016108ac906120c2565b6001600160a01b03831660009081526020819052604090205481811015611b8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ac565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611bc6908490611fc0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c1291815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611c3b5750565b600a54611c4990601461200d565b811115611c6157600a54611c5e90601461200d565b90505b61129081611c89565b6000611c76828461200d565b9392505050565b6000611c76828461202c565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cbe57611cbe61204e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611cef57611cef61204e565b60200260200101906001600160a01b031690816001600160a01b031681525050611d3a307f000000000000000000000000000000000000000000000000000000000000000084611293565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611d96928792600092889291909116904290600401612118565b600060405180830381600087803b158015611db057600080fd5b505af1158015611dc4573d6000803e3d6000fd5b505050505050565b60008060408385031215611ddf57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611e1b57858101830151858201604001528201611dff565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111f357600080fd5b60008060408385031215611e6657600080fd5b611e6f83611e3c565b946020939093013593505050565b600060208284031215611e8f57600080fd5b611c7682611e3c565b600060208284031215611eaa57600080fd5b5035919050565b600080600060608486031215611ec657600080fd5b611ecf84611e3c565b9250611edd60208501611e3c565b9150604084013590509250925092565b803580151581146111f357600080fd5b60008060408385031215611f1057600080fd5b611f1983611e3c565b9150611f2760208401611eed565b90509250929050565b600060208284031215611f4257600080fd5b611c7682611eed565b60008060408385031215611f5e57600080fd5b611f6783611e3c565b9150611f2760208401611e3c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109c5576109c5611faa565b600181811c90821680611fe757607f821691505b60208210810361200757634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561202757612027611faa565b500290565b60008261204957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161207657612076611faa565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109c5576109c5611faa565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121685784516001600160a01b031683529383019391830191600101612143565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209361f78953c86530dcbb26464838c5459d97ceebbb6e45ad0eb30829f918657864736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65721787408e70c138e5b189a74468246c343fb92e0bb76663a79ed3fecbddb41d0a
Deployed Bytecode
0x6080604052600436106102815760003560e01c806382aa7c681161014f578063bff09d69116100c1578063dd62ed3e1161007a578063dd62ed3e146107c4578063e2f456051461080a578063f11a24d314610820578063f2fde38b14610836578063f637434214610856578063f8b45b051461086c57600080fd5b8063bff09d6914610717578063c024666814610738578063c18bc19514610758578063c8c8ebe414610778578063d257b34f1461078e578063d85ba063146107ae57600080fd5b806395d89b411161011357806395d89b41146106675780639c3b4fdc1461067c578063a0d82dc514610692578063a9059cbb146106a8578063aedabd7e146106c8578063bbc0c742146106f857600080fd5b806382aa7c68146105c957806389a30271146105e95780638da5cb5b146106095780638ea5220f14610627578063924de9b71461064757600080fd5b806349629f66116101f35780636a486a8e116101ac5780636a486a8e146105135780636ddd17131461052957806370a0823114610549578063715018a61461057f578063751039fc146105945780637571336a146105a957600080fd5b806349629f661461043757806349bd5a5e146104575780634a62bb651461048b5780634fbee193146104a55780635916b477146104de57806366ca9b83146104f357600080fd5b806318160ddd1161024557806318160ddd146103865780631816467f146103a5578063203e727e146103c557806323b872dd146103e557806327c8f83514610405578063313ce5671461041b57600080fd5b806302dbd8f81461028d57806306fdde03146102af578063095ea7b3146102da57806310d5de531461030a5780631694505e1461033a57600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a8366004611dcc565b610882565b005b3480156102bb57600080fd5b506102c4610922565b6040516102d19190611dee565b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004611e53565b6109b4565b60405190151581526020016102d1565b34801561031657600080fd5b506102fa610325366004611e7d565b60146020526000908152604090205460ff1681565b34801561034657600080fd5b5061036e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102d1565b34801561039257600080fd5b506002545b6040519081526020016102d1565b3480156103b157600080fd5b506102ad6103c0366004611e7d565b6109cb565b3480156103d157600080fd5b506102ad6103e0366004611e98565b610a52565b3480156103f157600080fd5b506102fa610400366004611eb1565b610b2f565b34801561041157600080fd5b5061036e61dead81565b34801561042757600080fd5b50604051601281526020016102d1565b34801561044357600080fd5b506102ad610452366004611e98565b610bd9565b34801561046357600080fd5b5061036e7f00000000000000000000000084a349f82b124e16be4e3a1b762dc871672a9f5381565b34801561049757600080fd5b50600c546102fa9060ff1681565b3480156104b157600080fd5b506102fa6104c0366004611e7d565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104ea57600080fd5b506102ad610c86565b3480156104ff57600080fd5b506102ad61050e366004611dcc565b610cbf565b34801561051f57600080fd5b5061039760105481565b34801561053557600080fd5b50600c546102fa9062010000900460ff1681565b34801561055557600080fd5b50610397610564366004611e7d565b6001600160a01b031660009081526020819052604090205490565b34801561058b57600080fd5b506102ad610d52565b3480156105a057600080fd5b506102fa610d88565b3480156105b557600080fd5b506102ad6105c4366004611efd565b610dc5565b3480156105d557600080fd5b506102ad6105e4366004611e98565b610e1a565b3480156105f557600080fd5b5060065461036e906001600160a01b031681565b34801561061557600080fd5b506005546001600160a01b031661036e565b34801561063357600080fd5b5060085461036e906001600160a01b031681565b34801561065357600080fd5b506102ad610662366004611f30565b610ee5565b34801561067357600080fd5b506102c4610f2b565b34801561068857600080fd5b50610397600e5481565b34801561069e57600080fd5b5061039760115481565b3480156106b457600080fd5b506102fa6106c3366004611e53565b610f3a565b3480156106d457600080fd5b506102fa6106e3366004611e7d565b60156020526000908152604090205460ff1681565b34801561070457600080fd5b50600c546102fa90610100900460ff1681565b34801561072357600080fd5b50600c546102fa906301000000900460ff1681565b34801561074457600080fd5b506102ad610753366004611efd565b610f47565b34801561076457600080fd5b506102ad610773366004611e98565b610fd0565b34801561078457600080fd5b5061039760095481565b34801561079a57600080fd5b506102fa6107a9366004611e98565b6110a1565b3480156107ba57600080fd5b50610397600d5481565b3480156107d057600080fd5b506103976107df366004611f4b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081657600080fd5b50610397600a5481565b34801561082c57600080fd5b50610397600f5481565b34801561084257600080fd5b506102ad610851366004611e7d565b6111f8565b34801561086257600080fd5b5061039760125481565b34801561087857600080fd5b50610397600b5481565b6005546001600160a01b031633146108b55760405162461bcd60e51b81526004016108ac90611f75565b60405180910390fd5b601182905560128190556108c98183611fc0565b60108190556006101561091e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108ac565b5050565b60606003805461093190611fd3565b80601f016020809104026020016040519081016040528092919081815260200182805461095d90611fd3565b80156109aa5780601f1061097f576101008083540402835291602001916109aa565b820191906000526020600020905b81548152906001019060200180831161098d57829003601f168201915b5050505050905090565b60006109c1338484611293565b5060015b92915050565b6005546001600160a01b031633146109f55760405162461bcd60e51b81526004016108ac90611f75565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a7c5760405162461bcd60e51b81526004016108ac90611f75565b670de0b6b3a76400006103e8610a9160025490565b610a9c90600161200d565b610aa6919061202c565b610ab0919061202c565b811015610b175760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016108ac565b610b2981670de0b6b3a764000061200d565b60095550565b6000610b3c8484846113b7565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bc15760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016108ac565b610bce8533858403611293565b506001949350505050565b6007546040513391610c0a91839060200191825260601b6bffffffffffffffffffffffff1916602082015260340190565b60405160208183030381529060405280519060200120820361091e57336000818152601560205260408120805460ff191660019081179091556016805491820181559091527fd833147d7dc355ba459fc788f669e58cfaf9dc25ddcd0702e87d69c7b51242890180546001600160a01b03191690911790555050565b6005546001600160a01b03163314610cb05760405162461bcd60e51b81526004016108ac90611f75565b600c805463ff00000019169055565b6005546001600160a01b03163314610ce95760405162461bcd60e51b81526004016108ac90611f75565b600e829055600f819055610cfd8183611fc0565b600d8190556006101561091e5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c6573730000000060448201526064016108ac565b6005546001600160a01b03163314610d7c5760405162461bcd60e51b81526004016108ac90611f75565b610d866000611a79565b565b6005546000906001600160a01b03163314610db55760405162461bcd60e51b81526004016108ac90611f75565b50600c805460ff19169055600190565b6005546001600160a01b03163314610def5760405162461bcd60e51b81526004016108ac90611f75565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e445760405162461bcd60e51b81526004016108ac90611f75565b600c54610100900460ff16158015610e5c5750806001145b15610ecf5760005b601654811015610ecd5760006015600060168481548110610e8757610e8761204e565b6000918252602080832091909101546001600160a01b031683528201929092526040019020805460ff191691151591909117905580610ec581612064565b915050610e64565b505b50600c805463ffffff0019166301010100179055565b6005546001600160a01b03163314610f0f5760405162461bcd60e51b81526004016108ac90611f75565b600c8054911515620100000262ff000019909216919091179055565b60606004805461093190611fd3565b60006109c13384846113b7565b6005546001600160a01b03163314610f715760405162461bcd60e51b81526004016108ac90611f75565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610ffa5760405162461bcd60e51b81526004016108ac90611f75565b670de0b6b3a76400006103e861100f60025490565b61101a90600561200d565b611024919061202c565b61102e919061202c565b8110156110895760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016108ac565b61109b81670de0b6b3a764000061200d565b600b5550565b6005546000906001600160a01b031633146110ce5760405162461bcd60e51b81526004016108ac90611f75565b620186a06110db60025490565b6110e690600161200d565b6110f0919061202c565b82101561115d5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016108ac565b6103e861116960025490565b61117490600561200d565b61117e919061202c565b8211156111ea5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016108ac565b50600a81905560015b919050565b6005546001600160a01b031633146112225760405162461bcd60e51b81526004016108ac90611f75565b6001600160a01b0381166112875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ac565b61129081611a79565b50565b6001600160a01b0383166112f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108ac565b6001600160a01b0382166113565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113dd5760405162461bcd60e51b81526004016108ac9061207d565b6001600160a01b0382166114035760405162461bcd60e51b81526004016108ac906120c2565b8060000361141c5761141783836000611acb565b505050565b600c5460ff1615611773576005546001600160a01b0384811691161480159061145357506005546001600160a01b03838116911614155b801561146757506001600160a01b03821615155b801561147e57506001600160a01b03821661dead14155b80156114945750600654600160a01b900460ff16155b1561177357600c54610100900460ff1661152c576001600160a01b03831660009081526013602052604090205460ff16806114e757506001600160a01b03821660009081526013602052604090205460ff165b61152c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108ac565b7f00000000000000000000000084a349f82b124e16be4e3a1b762dc871672a9f536001600160a01b0316836001600160a01b031614801561158657506001600160a01b03821660009081526014602052604090205460ff16155b156116e957600c546301000000900460ff161561160a576001600160a01b03821660009081526015602052604090205460ff16151560011461160a5760405162461bcd60e51b815260206004820152601e60248201527f41757468656e74696361746520666f722074726164696e67206669727374000060448201526064016108ac565b60095481111561167a5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108ac565b600b546001600160a01b0383166000908152602081905260409020546116a09083611fc0565b11156116e45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ac565b611773565b6001600160a01b03821660009081526014602052604090205460ff1661177357600b546001600160a01b03831660009081526020819052604090205461172f9083611fc0565b11156117735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108ac565b30600090815260208190526040902054600a548110801590819061179f5750600c5462010000900460ff165b80156117b55750600654600160a01b900460ff16155b80156117f257507f00000000000000000000000084a349f82b124e16be4e3a1b762dc871672a9f536001600160a01b0316846001600160a01b0316145b801561181757506001600160a01b03851660009081526013602052604090205460ff16155b801561183c57506001600160a01b03841660009081526013602052604090205460ff16155b1561186a576006805460ff60a01b1916600160a01b17905561185c611c20565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806118b857506001600160a01b03851660009081526013602052604090205460ff165b156118c1575060005b60008060008315611a63577f00000000000000000000000084a349f82b124e16be4e3a1b762dc871672a9f536001600160a01b0316886001600160a01b031614801561190f57506000601054115b1561197557611934606461192e6010548a611c6a90919063ffffffff16565b90611c7d565b925060105460125484611947919061200d565b611951919061202c565b915060105460115484611964919061200d565b61196e919061202c565b9050611a14565b7f00000000000000000000000084a349f82b124e16be4e3a1b762dc871672a9f536001600160a01b0316896001600160a01b03161480156119b857506000600d54115b15611a14576119d7606461192e600d548a611c6a90919063ffffffff16565b9250600d54600f54846119ea919061200d565b6119f4919061202c565b9150600d54600e5484611a07919061200d565b611a11919061202c565b90505b8215611a2557611a25893085611acb565b8115611a5657611a56307f00000000000000000000000084a349f82b124e16be4e3a1b762dc871672a9f5384611acb565b611a608388612105565b96505b611a6e898989611acb565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611af15760405162461bcd60e51b81526004016108ac9061207d565b6001600160a01b038216611b175760405162461bcd60e51b81526004016108ac906120c2565b6001600160a01b03831660009081526020819052604090205481811015611b8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108ac565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611bc6908490611fc0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c1291815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611c3b5750565b600a54611c4990601461200d565b811115611c6157600a54611c5e90601461200d565b90505b61129081611c89565b6000611c76828461200d565b9392505050565b6000611c76828461202c565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cbe57611cbe61204e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611cef57611cef61204e565b60200260200101906001600160a01b031690816001600160a01b031681525050611d3a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611293565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611d96928792600092889291909116904290600401612118565b600060405180830381600087803b158015611db057600080fd5b505af1158015611dc4573d6000803e3d6000fd5b505050505050565b60008060408385031215611ddf57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611e1b57858101830151858201604001528201611dff565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146111f357600080fd5b60008060408385031215611e6657600080fd5b611e6f83611e3c565b946020939093013593505050565b600060208284031215611e8f57600080fd5b611c7682611e3c565b600060208284031215611eaa57600080fd5b5035919050565b600080600060608486031215611ec657600080fd5b611ecf84611e3c565b9250611edd60208501611e3c565b9150604084013590509250925092565b803580151581146111f357600080fd5b60008060408385031215611f1057600080fd5b611f1983611e3c565b9150611f2760208401611eed565b90509250929050565b600060208284031215611f4257600080fd5b611c7682611eed565b60008060408385031215611f5e57600080fd5b611f6783611e3c565b9150611f2760208401611e3c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109c5576109c5611faa565b600181811c90821680611fe757607f821691505b60208210810361200757634e487b7160e01b600052602260045260246000fd5b50919050565b600081600019048311821515161561202757612027611faa565b500290565b60008261204957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161207657612076611faa565b5060010190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156109c5576109c5611faa565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121685784516001600160a01b031683529383019391830191600101612143565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209361f78953c86530dcbb26464838c5459d97ceebbb6e45ad0eb30829f918657864736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
1787408e70c138e5b189a74468246c343fb92e0bb76663a79ed3fecbddb41d0a
-----Decoded View---------------
Arg [0] : _secret (bytes32): 0x1787408e70c138e5b189a74468246c343fb92e0bb76663a79ed3fecbddb41d0a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 1787408e70c138e5b189a74468246c343fb92e0bb76663a79ed3fecbddb41d0a
Deployed Bytecode Sourcemap
24675:11785:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30456:316;;;;;;;;;;-1:-1:-1;30456:316:0;;;;;:::i;:::-;;:::i;:::-;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:169;;;;;;;;;;-1:-1:-1;11698:169:0;;;;;:::i;:::-;;:::i;:::-;;;1422:14:1;;1415:22;1397:41;;1385:2;1370:18;11698:169:0;1257:187:1;25710:63:0;;;;;;;;;;-1:-1:-1;25710:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24751:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1830:32:1;;;1812:51;;1800:2;1785:18;24751:51:0;1640:229:1;10651:108:0;;;;;;;;;;-1:-1:-1;10739:12:0;;10651:108;;;2020:25:1;;;2008:2;1993:18;10651:108:0;1874:177:1;30970:189:0;;;;;;;;;;-1:-1:-1;30970:189:0;;;;;:::i;:::-;;:::i;29221:275::-;;;;;;;;;;-1:-1:-1;29221:275:0;;;;;:::i;:::-;;:::i;12349:492::-;;;;;;;;;;-1:-1:-1;12349:492:0;;;;;:::i;:::-;;:::i;24854:53::-;;;;;;;;;;;;24900:6;24854:53;;10493:93;;;;;;;;;;-1:-1:-1;10493:93:0;;10576:2;2924:36:1;;2912:2;2897:18;10493:93:0;2782:184:1;31301:272:0;;;;;;;;;;-1:-1:-1;31301:272:0;;;;;:::i;:::-;;:::i;24809:38::-;;;;;;;;;;;;;;;25194:33;;;;;;;;;;-1:-1:-1;25194:33:0;;;;;;;;31167:126;;;;;;;;;;-1:-1:-1;31167:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31257:28:0;31233:4;31257:28;;;:19;:28;;;;;;;;;31167:126;31581:91;;;;;;;;;;;;;:::i;30139:309::-;;;;;;;;;;-1:-1:-1;30139:309:0;;;;;:::i;:::-;;:::i;25463:28::-;;;;;;;;;;;;;;;;25274:31;;;;;;;;;;-1:-1:-1;25274:31:0;;;;;;;;;;;10822:127;;;;;;;;;;-1:-1:-1;10822:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10923:18:0;10896:7;10923:18;;;;;;;;;;;;10822:127;2766:103;;;;;;;;;;;;;:::i;28525:121::-;;;;;;;;;;;;;:::i;29768:167::-;;;;;;;;;;-1:-1:-1;29768:167:0;;;;;:::i;:::-;;:::i;28092:381::-;;;;;;;;;;-1:-1:-1;28092:381:0;;;;;:::i;:::-;;:::i;24914:64::-;;;;;;;;;;-1:-1:-1;24914:64:0;;;;-1:-1:-1;;;;;24914:64:0;;;2115:87;;;;;;;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;2188:6:0;2115:87;;25046:24;;;;;;;;;;-1:-1:-1;25046:24:0;;;;-1:-1:-1;;;;;25046:24:0;;;30031:100;;;;;;;;;;-1:-1:-1;30031:100:0;;;;;:::i;:::-;;:::i;9750:104::-;;;;;;;;;;;;;:::i;25393:24::-;;;;;;;;;;;;;;;;25498:25;;;;;;;;;;;;;;;;11162:175;;;;;;;;;;-1:-1:-1;11162:175:0;;;;;:::i;:::-;;:::i;25780:48::-;;;;;;;;;;-1:-1:-1;25780:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25234:33;;;;;;;;;;-1:-1:-1;25234:33:0;;;;;;;;;;;25312:38;;;;;;;;;;-1:-1:-1;25312:38:0;;;;;;;;;;;30780:182;;;;;;;;;;-1:-1:-1;30780:182:0;;;;;:::i;:::-;;:::i;29504:256::-;;;;;;;;;;-1:-1:-1;29504:256:0;;;;;:::i;:::-;;:::i;25079:35::-;;;;;;;;;;;;;;;;28716:497;;;;;;;;;;-1:-1:-1;28716:497:0;;;;;:::i;:::-;;:::i;25359:27::-;;;;;;;;;;;;;;;;11400:151;;;;;;;;;;-1:-1:-1;11400:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11516:18:0;;;11489:7;11516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11400:151;25121:33;;;;;;;;;;;;;;;;25424:30;;;;;;;;;;;;;;;;3024:201;;;;;;;;;;-1:-1:-1;3024:201:0;;;;;:::i;:::-;;:::i;25530:31::-;;;;;;;;;;;;;;;;25161:24;;;;;;;;;;;;;;;;30456:316;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;;;;;;;;;30575:10:::1;:20:::0;;;30606:16:::1;:32:::0;;;30665:29:::1;30625:13:::0;30588:7;30665:29:::1;:::i;:::-;30649:13;:45:::0;;;30730:1:::1;-1:-1:-1::0;30713:18:0::1;30705:59;;;::::0;-1:-1:-1;;;30705:59:0;;4855:2:1;30705:59:0::1;::::0;::::1;4837:21:1::0;4894:2;4874:18;;;4867:30;4933;4913:18;;;4906:58;4981:18;;30705:59:0::1;4653:352:1::0;30705:59:0::1;30456:316:::0;;:::o;9531:100::-;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11698:169::-;11781:4;11798:39;868:10;11821:7;11830:6;11798:8;:39::i;:::-;-1:-1:-1;11855:4:0;11698:169;;;;;:::o;30970:189::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;31106:9:::1;::::0;31075:41:::1;::::0;-1:-1:-1;;;;;31106:9:0;;::::1;::::0;31075:41;::::1;::::0;::::1;::::0;31106:9:::1;::::0;31075:41:::1;31127:9;:24:::0;;-1:-1:-1;;;;;;31127:24:0::1;-1:-1:-1::0;;;;;31127:24:0;;;::::1;::::0;;;::::1;::::0;;30970:189::o;29221:275::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29358:4:::1;29350;29329:13;10739:12:::0;;;10651:108;29329:13:::1;:17;::::0;29345:1:::1;29329:17;:::i;:::-;29328:26;;;;:::i;:::-;29327:35;;;;:::i;:::-;29317:6;:45;;29295:142;;;::::0;-1:-1:-1;;;29295:142:0;;5992:2:1;29295:142:0::1;::::0;::::1;5974:21:1::0;6031:2;6011:18;;;6004:30;6070:34;6050:18;;;6043:62;-1:-1:-1;;;6121:18:1;;;6114:45;6176:19;;29295:142:0::1;5790:411:1::0;29295:142:0::1;29471:17;:6:::0;29481::::1;29471:17;:::i;:::-;29448:20;:40:::0;-1:-1:-1;29221:275:0:o;12349:492::-;12489:4;12506:36;12516:6;12524:9;12535:6;12506:9;:36::i;:::-;-1:-1:-1;;;;;12582:19:0;;12555:24;12582:19;;;:11;:19;;;;;;;;868:10;12582:33;;;;;;;;12634:26;;;;12626:79;;;;-1:-1:-1;;;12626:79:0;;6408:2:1;12626:79:0;;;6390:21:1;6447:2;6427:18;;;6420:30;6486:34;6466:18;;;6459:62;-1:-1:-1;;;6537:18:1;;;6530:38;6585:19;;12626:79:0;6206:404:1;12626:79:0;12741:57;12750:6;868:10;12791:6;12772:16;:25;12741:8;:57::i;:::-;-1:-1:-1;12829:4:0;;12349:492;-1:-1:-1;;;;12349:492:0:o;31301:272::-;31436:6;;31419:31;;31375:10;;31419:31;;31375:10;;31419:31;;6772:19:1;;;6829:2;6825:15;-1:-1:-1;;6821:53:1;6816:2;6807:12;;6800:75;6900:2;6891:12;;6615:294;31419:31:0;;;;;;;;;;;;;31409:42;;;;;;31400:5;:51;31396:170;;31485:10;31468:28;;;;:16;:28;;;;;:35;;-1:-1:-1;;31468:35:0;31499:4;31468:35;;;;;;31519:18;:35;;;;;;;;;;;;;;-1:-1:-1;;;;;;31519:35:0;;;;;;31348:225;31301:272;:::o;31581:91::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;31638:18:::1;:26:::0;;-1:-1:-1;;31638:26:0::1;::::0;;31581:91::o;30139:309::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;30257:9:::1;:19:::0;;;30287:15:::1;:31:::0;;;30344:27:::1;30305:13:::0;30269:7;30344:27:::1;:::i;:::-;30329:12;:42:::0;;;30406:1:::1;-1:-1:-1::0;30390:17:0::1;30382:58;;;::::0;-1:-1:-1;;;30382:58:0;;4855:2:1;30382:58:0::1;::::0;::::1;4837:21:1::0;4894:2;4874:18;;;4867:30;4933;4913:18;;;4906:58;4981:18;;30382:58:0::1;4653:352:1::0;2766:103:0;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;28525:121::-;2188:6;;28577:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;28594:14:0::1;:22:::0;;-1:-1:-1;;28594:22:0::1;::::0;;;28525:121;:::o;29768:167::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29881:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29881:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29768:167::o;28092:381::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;28165:13:::1;::::0;::::1;::::0;::::1;;;28164:14;:28:::0;::::1;;;;28182:5;28191:1;28182:10;28164:28;28160:208;;;28218:9;28213:144;28235:18;:25:::0;28231:29;::::1;28213:144;;;28332:5;28290:16;:39;28307:18;28326:1;28307:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;::::0;-1:-1:-1;;;;;28307:21:0::1;28290:39:::0;;;::::1;::::0;;;;;;;;:47;;-1:-1:-1;;28290:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28262:3;::::1;::::0;::::1;:::i;:::-;;;;28213:144;;;;28160:208;-1:-1:-1::0;28380:13:0::1;:20:::0;;-1:-1:-1;;28440:25:0;;;;;28092:381::o;30031:100::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;30102:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30102:21:0;;::::1;::::0;;;::::1;::::0;;30031:100::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;11162:175::-;11248:4;11265:42;868:10;11289:9;11300:6;11265:9;:42::i;30780:182::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30865:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30865:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30920:34;;1397:41:1;;;30920:34:0::1;::::0;1370:18:1;30920:34:0::1;;;;;;;30780:182:::0;;:::o;29504:256::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29644:4:::1;29636;29615:13;10739:12:::0;;;10651:108;29615:13:::1;:17;::::0;29631:1:::1;29615:17;:::i;:::-;29614:26;;;;:::i;:::-;29613:35;;;;:::i;:::-;29603:6;:45;;29581:131;;;::::0;-1:-1:-1;;;29581:131:0;;7388:2:1;29581:131:0::1;::::0;::::1;7370:21:1::0;7427:2;7407:18;;;7400:30;7466:34;7446:18;;;7439:62;-1:-1:-1;;;7517:18:1;;;7510:34;7561:19;;29581:131:0::1;7186:400:1::0;29581:131:0::1;29735:17;:6:::0;29745::::1;29735:17;:::i;:::-;29723:9;:29:::0;-1:-1:-1;29504:256:0:o;28716:497::-;2188:6;;28824:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;28903:6:::1;28882:13;10739:12:::0;;;10651:108;28882:13:::1;:17;::::0;28898:1:::1;28882:17;:::i;:::-;28881:28;;;;:::i;:::-;28868:9;:41;;28846:144;;;::::0;-1:-1:-1;;;28846:144:0;;7793:2:1;28846:144:0::1;::::0;::::1;7775:21:1::0;7832:2;7812:18;;;7805:30;7871:34;7851:18;;;7844:62;-1:-1:-1;;;7922:18:1;;;7915:51;7983:19;;28846:144:0::1;7591:417:1::0;28846:144:0::1;29058:4;29037:13;10739:12:::0;;;10651:108;29037:13:::1;:17;::::0;29053:1:::1;29037:17;:::i;:::-;29036:26;;;;:::i;:::-;29023:9;:39;;29001:141;;;::::0;-1:-1:-1;;;29001:141:0;;8215:2:1;29001:141:0::1;::::0;::::1;8197:21:1::0;8254:2;8234:18;;;8227:30;8293:34;8273:18;;;8266:62;-1:-1:-1;;;8344:18:1;;;8337:50;8404:19;;29001:141:0::1;8013:416:1::0;29001:141:0::1;-1:-1:-1::0;29153:18:0::1;:30:::0;;;29201:4:::1;2406:1;28716:497:::0;;;:::o;3024:201::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3113:22:0;::::1;3105:73;;;::::0;-1:-1:-1;;;3105:73:0;;8636:2:1;3105:73:0::1;::::0;::::1;8618:21:1::0;8675:2;8655:18;;;8648:30;8714:34;8694:18;;;8687:62;-1:-1:-1;;;8765:18:1;;;8758:36;8811:19;;3105:73:0::1;8434:402:1::0;3105:73:0::1;3189:28;3208:8;3189:18;:28::i;:::-;3024:201:::0;:::o;15190:380::-;-1:-1:-1;;;;;15326:19:0;;15318:68;;;;-1:-1:-1;;;15318:68:0;;9043:2:1;15318:68:0;;;9025:21:1;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:34;9216:19;;15318:68:0;8841:400:1;15318:68:0;-1:-1:-1;;;;;15405:21:0;;15397:68;;;;-1:-1:-1;;;15397:68:0;;9448:2:1;15397:68:0;;;9430:21:1;9487:2;9467:18;;;9460:30;9526:34;9506:18;;;9499:62;-1:-1:-1;;;9577:18:1;;;9570:32;9619:19;;15397:68:0;9246:398:1;15397:68:0;-1:-1:-1;;;;;15478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15530:32;;2020:25:1;;;15530:32:0;;1993:18:1;15530:32:0;;;;;;;15190:380;;;:::o;31680:3847::-;-1:-1:-1;;;;;31812:18:0;;31804:68;;;;-1:-1:-1;;;31804:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31891:16:0;;31883:64;;;;-1:-1:-1;;;31883:64:0;;;;;;;:::i;:::-;31964:6;31974:1;31964:11;31960:93;;31992:28;32008:4;32014:2;32018:1;31992:15;:28::i;:::-;31680:3847;;;:::o;31960:93::-;32069:14;;;;32065:1598;;;2188:6;;-1:-1:-1;;;;;32122:15:0;;;2188:6;;32122:15;;;;:49;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;32158:13:0;;;2188:6;;32158:13;;32122:49;:86;;;;-1:-1:-1;;;;;;32192:16:0;;;;32122:86;:128;;;;-1:-1:-1;;;;;;32229:21:0;;32243:6;32229:21;;32122:128;:158;;;;-1:-1:-1;32272:8:0;;-1:-1:-1;;;32272:8:0;;;;32271:9;32122:158;32100:1552;;;32320:13;;;;;;;32315:223;;-1:-1:-1;;;;;32392:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32421:23:0;;;;;;:19;:23;;;;;;;;32392:52;32358:160;;;;-1:-1:-1;;;32358:160:0;;10661:2:1;32358:160:0;;;10643:21:1;10700:2;10680:18;;;10673:30;-1:-1:-1;;;10719:18:1;;;10712:52;10781:18;;32358:160:0;10459:346:1;32358:160:0;32752:13;-1:-1:-1;;;;;32744:21:0;:4;-1:-1:-1;;;;;32744:21:0;;:82;;;;-1:-1:-1;;;;;;32791:35:0;;;;;;:31;:35;;;;;;;;32790:36;32744:82;32718:919;;;32873:18;;;;;;;32869:146;;;-1:-1:-1;;;;;32928:20:0;;;;;;:16;:20;;;;;;;;:28;;:20;:28;32920:71;;;;-1:-1:-1;;;32920:71:0;;11012:2:1;32920:71:0;;;10994:21:1;11051:2;11031:18;;;11024:30;11090:32;11070:18;;;11063:60;11140:18;;32920:71:0;10810:354:1;32920:71:0;33081:20;;33071:6;:30;;33037:169;;;;-1:-1:-1;;;33037:169:0;;11371:2:1;33037:169:0;;;11353:21:1;11410:2;11390:18;;;11383:30;11449:34;11429:18;;;11422:62;-1:-1:-1;;;11500:18:1;;;11493:51;11561:19;;33037:169:0;11169:417:1;33037:169:0;33289:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;33263:22;;:6;:22;:::i;:::-;:35;;33229:140;;;;-1:-1:-1;;;33229:140:0;;11793:2:1;33229:140:0;;;11775:21:1;11832:2;11812:18;;;11805:30;-1:-1:-1;;;11851:18:1;;;11844:49;11910:18;;33229:140:0;11591:343:1;33229:140:0;32718:919;;;-1:-1:-1;;;;;33417:35:0;;;;;;:31;:35;;;;;;;;33412:225;;33537:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;33511:22;;:6;:22;:::i;:::-;:35;;33477:140;;;;-1:-1:-1;;;33477:140:0;;11793:2:1;33477:140:0;;;11775:21:1;11832:2;11812:18;;;11805:30;-1:-1:-1;;;11851:18:1;;;11844:49;11910:18;;33477:140:0;11591:343:1;33477:140:0;33724:4;33675:28;10923:18;;;;;;;;;;;33782;;33758:42;;;;;;;33831:35;;-1:-1:-1;33855:11:0;;;;;;;33831:35;:61;;;;-1:-1:-1;33884:8:0;;-1:-1:-1;;;33884:8:0;;;;33883:9;33831:61;:97;;;;;33915:13;-1:-1:-1;;;;;33909:19:0;:2;-1:-1:-1;;;;;33909:19:0;;33831:97;:140;;;;-1:-1:-1;;;;;;33946:25:0;;;;;;:19;:25;;;;;;;;33945:26;33831:140;:181;;;;-1:-1:-1;;;;;;33989:23:0;;;;;;:19;:23;;;;;;;;33988:24;33831:181;33813:313;;;34039:8;:15;;-1:-1:-1;;;;34039:15:0;-1:-1:-1;;;34039:15:0;;;34071:10;:8;:10::i;:::-;34098:8;:16;;-1:-1:-1;;;;34098:16:0;;;33813:313;34154:8;;-1:-1:-1;;;;;34264:25:0;;34138:12;34264:25;;;:19;:25;;;;;;34154:8;-1:-1:-1;;;34154:8:0;;;;;34153:9;;34264:25;;:52;;-1:-1:-1;;;;;;34293:23:0;;;;;;:19;:23;;;;;;;;34264:52;34260:100;;;-1:-1:-1;34343:5:0;34260:100;34372:12;34399:26;34440:20;34553:7;34549:925;;;34611:13;-1:-1:-1;;;;;34605:19:0;:2;-1:-1:-1;;;;;34605:19:0;;:40;;;;;34644:1;34628:13;;:17;34605:40;34601:583;;;34673:34;34703:3;34673:25;34684:13;;34673:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;34666:41;;34775:13;;34755:16;;34748:4;:23;;;;:::i;:::-;34747:41;;;;:::i;:::-;34726:62;;34844:13;;34830:10;;34823:4;:17;;;;:::i;:::-;34822:35;;;;:::i;:::-;34807:50;;34601:583;;;34927:13;-1:-1:-1;;;;;34919:21:0;:4;-1:-1:-1;;;;;34919:21:0;;:41;;;;;34959:1;34944:12;;:16;34919:41;34915:269;;;34988:33;35017:3;34988:24;34999:12;;34988:6;:10;;:24;;;;:::i;:33::-;34981:40;;35088:12;;35069:15;;35062:4;:22;;;;:::i;:::-;35061:39;;;;:::i;:::-;35040:60;;35156:12;;35143:9;;35136:4;:16;;;;:::i;:::-;35135:33;;;;:::i;:::-;35120:48;;34915:269;35204:7;;35200:90;;35232:42;35248:4;35262;35269;35232:15;:42::i;:::-;35308:22;;35304:128;;35351:65;35375:4;35382:13;35397:18;35351:15;:65::i;:::-;35448:14;35458:4;35448:14;;:::i;:::-;;;34549:925;35486:33;35502:4;35508:2;35512:6;35486:15;:33::i;:::-;31793:3734;;;;;;31680:3847;;;:::o;3385:191::-;3478:6;;;-1:-1:-1;;;;;3495:17:0;;;-1:-1:-1;;;;;;3495:17:0;;;;;;;3528:40;;3478:6;;;3495:17;3478:6;;3528:40;;3459:16;;3528:40;3448:128;3385:191;:::o;13331:733::-;-1:-1:-1;;;;;13471:20:0;;13463:70;;;;-1:-1:-1;;;13463:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13552:23:0;;13544:71;;;;-1:-1:-1;;;13544:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13712:17:0;;13688:21;13712:17;;;;;;;;;;;13748:23;;;;13740:74;;;;-1:-1:-1;;;13740:74:0;;12274:2:1;13740:74:0;;;12256:21:1;12313:2;12293:18;;;12286:30;12352:34;12332:18;;;12325:62;-1:-1:-1;;;12403:18:1;;;12396:36;12449:19;;13740:74:0;12072:402:1;13740:74:0;-1:-1:-1;;;;;13850:17:0;;;:9;:17;;;;;;;;;;;13870:22;;;13850:42;;13914:20;;;;;;;;:30;;13886:6;;13850:9;13914:30;;13886:6;;13914:30;:::i;:::-;;;;;;;;13979:9;-1:-1:-1;;;;;13962:35:0;13971:6;-1:-1:-1;;;;;13962:35:0;;13990:6;13962:35;;;;2020:25:1;;2008:2;1993:18;;1874:177;13962:35:0;;;;;;;;13452:612;13331:733;;;:::o;36115:340::-;36198:4;36154:23;10923:18;;;;;;;;;;;;36219:20;;;36215:59;;36256:7;36115:340::o;36215:59::-;36308:18;;:23;;36329:2;36308:23;:::i;:::-;36290:15;:41;36286:115;;;36366:18;;:23;;36387:2;36366:23;:::i;:::-;36348:41;;36286:115;36413:34;36431:15;36413:17;:34::i;20643:98::-;20701:7;20728:5;20732:1;20728;:5;:::i;:::-;20721:12;20643:98;-1:-1:-1;;;20643:98:0:o;21042:::-;21100:7;21127:5;21131:1;21127;:5;:::i;35535:572::-;35686:16;;;35700:1;35686:16;;;;;;;;35662:21;;35686:16;;;;;;;;;;-1:-1:-1;35686:16:0;35662:40;;35731:4;35713;35718:1;35713:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35713:23:0;;;:7;;;;;;;;;:23;35757:4;;35747:7;;35757:4;;;35747;;35757;;35747:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;35747:14:0;;;-1:-1:-1;;;;;35747:14:0;;;;;35774:62;35791:4;35806:15;35824:11;35774:8;:62::i;:::-;36049:9;;35875:224;;-1:-1:-1;;;35875:224:0;;-1:-1:-1;;;;;35875:15:0;:69;;;;;:224;;35959:11;;35985:1;;36030:4;;36049:9;;;;;36073:15;;35875:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35591:516;35535:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:173::-;888:20;;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:254;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1166:29;1185:9;1166:29;:::i;:::-;1156:39;1242:2;1227:18;;;;1214:32;;-1:-1:-1;;;998:254:1:o;1449:186::-;1508:6;1561:2;1549:9;1540:7;1536:23;1532:32;1529:52;;;1577:1;1574;1567:12;1529:52;1600:29;1619:9;1600:29;:::i;2056:180::-;2115:6;2168:2;2156:9;2147:7;2143:23;2139:32;2136:52;;;2184:1;2181;2174:12;2136:52;-1:-1:-1;2207:23:1;;2056:180;-1:-1:-1;2056:180:1:o;2241:328::-;2318:6;2326;2334;2387:2;2375:9;2366:7;2362:23;2358:32;2355:52;;;2403:1;2400;2393:12;2355:52;2426:29;2445:9;2426:29;:::i;:::-;2416:39;;2474:38;2508:2;2497:9;2493:18;2474:38;:::i;:::-;2464:48;;2559:2;2548:9;2544:18;2531:32;2521:42;;2241:328;;;;;:::o;3156:160::-;3221:20;;3277:13;;3270:21;3260:32;;3250:60;;3306:1;3303;3296:12;3321:254;3386:6;3394;3447:2;3435:9;3426:7;3422:23;3418:32;3415:52;;;3463:1;3460;3453:12;3415:52;3486:29;3505:9;3486:29;:::i;:::-;3476:39;;3534:35;3565:2;3554:9;3550:18;3534:35;:::i;:::-;3524:45;;3321:254;;;;;:::o;3580:180::-;3636:6;3689:2;3677:9;3668:7;3664:23;3660:32;3657:52;;;3705:1;3702;3695:12;3657:52;3728:26;3744:9;3728:26;:::i;3765:260::-;3833:6;3841;3894:2;3882:9;3873:7;3869:23;3865:32;3862:52;;;3910:1;3907;3900:12;3862:52;3933:29;3952:9;3933:29;:::i;:::-;3923:39;;3981:38;4015:2;4004:9;4000:18;3981:38;:::i;4030:356::-;4232:2;4214:21;;;4251:18;;;4244:30;4310:34;4305:2;4290:18;;4283:62;4377:2;4362:18;;4030:356::o;4391:127::-;4452:10;4447:3;4443:20;4440:1;4433:31;4483:4;4480:1;4473:15;4507:4;4504:1;4497:15;4523:125;4588:9;;;4609:10;;;4606:36;;;4622:18;;:::i;5010:380::-;5089:1;5085:12;;;;5132;;;5153:61;;5207:4;5199:6;5195:17;5185:27;;5153:61;5260:2;5252:6;5249:14;5229:18;5226:38;5223:161;;5306:10;5301:3;5297:20;5294:1;5287:31;5341:4;5338:1;5331:15;5369:4;5366:1;5359:15;5223:161;;5010:380;;;:::o;5395:168::-;5435:7;5501:1;5497;5493:6;5489:14;5486:1;5483:21;5478:1;5471:9;5464:17;5460:45;5457:71;;;5508:18;;:::i;:::-;-1:-1:-1;5548:9:1;;5395:168::o;5568:217::-;5608:1;5634;5624:132;;5678:10;5673:3;5669:20;5666:1;5659:31;5713:4;5710:1;5703:15;5741:4;5738:1;5731:15;5624:132;-1:-1:-1;5770:9:1;;5568:217::o;6914:127::-;6975:10;6970:3;6966:20;6963:1;6956:31;7006:4;7003:1;6996:15;7030:4;7027:1;7020:15;7046:135;7085:3;7106:17;;;7103:43;;7126:18;;:::i;:::-;-1:-1:-1;7173:1:1;7162:13;;7046:135::o;9649:401::-;9851:2;9833:21;;;9890:2;9870:18;;;9863:30;9929:34;9924:2;9909:18;;9902:62;-1:-1:-1;;;9995:2:1;9980:18;;9973:35;10040:3;10025:19;;9649:401::o;10055:399::-;10257:2;10239:21;;;10296:2;10276:18;;;10269:30;10335:34;10330:2;10315:18;;10308:62;-1:-1:-1;;;10401:2:1;10386:18;;10379:33;10444:3;10429:19;;10055:399::o;11939:128::-;12006:9;;;12027:11;;;12024:37;;;12041:18;;:::i;12611:980::-;12873:4;12921:3;12910:9;12906:19;12952:6;12941:9;12934:25;12978:2;13016:6;13011:2;13000:9;12996:18;12989:34;13059:3;13054:2;13043:9;13039:18;13032:31;13083:6;13118;13112:13;13149:6;13141;13134:22;13187:3;13176:9;13172:19;13165:26;;13226:2;13218:6;13214:15;13200:29;;13247:1;13257:195;13271:6;13268:1;13265:13;13257:195;;;13336:13;;-1:-1:-1;;;;;13332:39:1;13320:52;;13427:15;;;;13392:12;;;;13368:1;13286:9;13257:195;;;-1:-1:-1;;;;;;;13508:32:1;;;;13503:2;13488:18;;13481:60;-1:-1:-1;;;13572:3:1;13557:19;13550:35;13469:3;12611:980;-1:-1:-1;;;12611:980:1:o
Swarm Source
ipfs://9361f78953c86530dcbb26464838c5459d97ceebbb6e45ad0eb30829f9186578
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.