ERC-20
Overview
Max Total Supply
26,439,111 XXXX
Holders
74
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
0.00000001 XXXXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
QuadrupleX
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ____________/\\\_____/\\\_______/\\\_ __________/\\\\\____\///\\\___/\\\/__ ________/\\\/\\\______\///\\\\\\/____ ______/\\\/\/\\\________\//\\\\______ ____/\\\/__\/\\\_________\/\\\\______ __/\\\\\\\\\\\\\\\\______/\\\\\\_____ _\///////////\\\//_____/\\\////\\\___ ___________\/\\\_____/\\\/___\///\\\_ ___________\///_____\///_______\///__ Website: https://xxxxstrewth.com Telegram: https://t.me/xxxxstrewth Twitter: https://twitter.com/HOPPYToken */ // SPDX-License-Identifier: MIT pragma solidity =0.8.19; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Router02.sol"; contract QuadrupleX is Context, IERC20, Ownable { using Address for address payable; using SafeMath for uint; mapping (address => uint) private _balances; mapping (address => mapping (address => uint)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => uint) private _holderLastTransferTimestamp; address payable private _taxWallet; uint private _initialBuyTax = 40; uint private _initialSellTax = 40; uint private _finalBuyTax = 1; uint private _finalSellTax = 1; uint private _reduceBuyTaxAfter = 20; uint private _reduceSellTaxAfter = 20; uint private _preventSwapBefore = 20; uint8 private constant _decimals = 8; uint private constant _tTotal = 26439111 * 10**_decimals; string private constant _name = unicode"4X"; string private constant _symbol = unicode"XXXX"; uint public _maxTxAmount = _tTotal / 100; uint public _maxWalletSize = _tTotal / 100; uint public _swapThreshold = _tTotal / 1000; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; uint public launchBlock; bool private inSwap = false; bool private swapEnabled = false; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor () { _taxWallet = payable(_msgSender()); _balances[_msgSender()] = _tTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_taxWallet] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint) { return _tTotal; } function balanceOf(address account) public view override returns (uint) { return _balances[account]; } function transfer(address recipient, uint amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint) { return _allowances[owner][spender]; } function approve(address spender, uint amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _approve(address owner, address spender, uint amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint amount) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint taxAmount; if (from != owner() && to != owner()) { if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to]) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); } taxAmount = amount.mul((block.number > launchBlock + _reduceBuyTaxAfter) ? _finalBuyTax : _initialBuyTax).div(100); if (to == uniswapV2Pair && from != address(this)) { require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); taxAmount = amount.mul((block.number > launchBlock + _reduceSellTaxAfter) ? _finalSellTax : _initialSellTax).div(100); } uint contractTokenBalance = balanceOf(address(this)); if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _swapThreshold && block.number > launchBlock + _preventSwapBefore) { swapTokensForEth(min(amount, min(contractTokenBalance, _swapThreshold.mul(5)))); uint contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)].add(taxAmount); emit Transfer(from, address(this), taxAmount); } _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(amount.sub(taxAmount)); emit Transfer(from, to, amount.sub(taxAmount)); } function min(uint a, uint b) private pure returns (uint) { return (a > b) ? b : a; } function swapTokensForEth(uint tokenAmount) private lockTheSwap { if (tokenAmount == 0) return; if (!tradingOpen) return; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function removeLimits() external onlyOwner{ _maxTxAmount = _tTotal; _maxWalletSize = _tTotal; emit MaxTxAmountUpdated(_tTotal); } function sendETHToFee(uint amount) private { Address.sendValue(payable(_taxWallet), amount); } function openTrading() external onlyOwner() { require(!tradingOpen, "Trading is already open"); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; launchBlock = block.number; } function manualSwap() external { require(_msgSender() == _taxWallet); uint tokenBalance = balanceOf(address(this)); if (tokenBalance > 0) { swapTokensForEth(tokenBalance); } uint ethBalance = address(this).balance; if (ethBalance > 0) { sendETHToFee(ethBalance); } } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 subtraction 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; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns ( uint amountA, uint amountB, uint liquidity ); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns ( uint amountToken, uint amountETH, uint liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260286006556028600755600160085560016009556014600a556014600b556014600c5560646008600a6200003991906200064a565b6301936dc76200004a91906200069b565b62000056919062000715565b600d5560646008600a6200006b91906200064a565b6301936dc76200007c91906200069b565b62000088919062000715565b600e556103e86008600a6200009e91906200064a565b6301936dc7620000af91906200069b565b620000bb919062000715565b600f556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055503480156200010157600080fd5b506200012262000116620003bb60201b60201c565b620003c360201b60201c565b62000132620003bb60201b60201c565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008600a6200018291906200064a565b6301936dc76200019391906200069b565b60016000620001a7620003bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160036000620001fb6200048760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160036000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200032e620003bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008600a6200038d91906200064a565b6301936dc76200039e91906200069b565b604051620003ad91906200075e565b60405180910390a36200077b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200053e57808604811115620005165762000515620004b0565b5b6001851615620005265780820291505b80810290506200053685620004df565b9450620004f6565b94509492505050565b6000826200055957600190506200062c565b816200056957600090506200062c565b81600181146200058257600281146200058d57620005c3565b60019150506200062c565b60ff841115620005a257620005a1620004b0565b5b8360020a915084821115620005bc57620005bb620004b0565b5b506200062c565b5060208310610133831016604e8410600b8410161715620005fd5782820a905083811115620005f757620005f6620004b0565b5b6200062c565b6200060c8484846001620004ec565b92509050818404811115620006265762000625620004b0565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006578262000633565b915062000664836200063d565b9250620006937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000547565b905092915050565b6000620006a88262000633565b9150620006b58362000633565b9250828202620006c58162000633565b91508282048414831517620006df57620006de620004b0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620007228262000633565b91506200072f8362000633565b925082620007425762000741620006e6565b5b828204905092915050565b620007588162000633565b82525050565b60006020820190506200077560008301846200074d565b92915050565b612da5806200078b6000396000f3fe6080604052600436106101185760003560e01c8063751039fc116100a0578063a9059cbb11610064578063a9059cbb14610378578063c9567bf9146103b5578063d00efb2f146103cc578063dd62ed3e146103f7578063f2fde38b146104345761011f565b8063751039fc146102b55780637d1db4a5146102cc5780638da5cb5b146102f75780638f9a55c01461032257806395d89b411461034d5761011f565b806323b872dd116100e757806323b872dd146101e2578063313ce5671461021f57806351bc3c851461024a57806370a0823114610261578063715018a61461029e5761011f565b806306fdde0314610124578063095ea7b31461014f5780630e5a92311461018c57806318160ddd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b5061013961045d565b6040516101469190611e43565b60405180910390f35b34801561015b57600080fd5b5061017660048036038101906101719190611efe565b61049a565b6040516101839190611f59565b60405180910390f35b34801561019857600080fd5b506101a16104b8565b6040516101ae9190611f83565b60405180910390f35b3480156101c357600080fd5b506101cc6104be565b6040516101d99190611f83565b60405180910390f35b3480156101ee57600080fd5b5061020960048036038101906102049190611f9e565b6104e2565b6040516102169190611f59565b60405180910390f35b34801561022b57600080fd5b506102346105bb565b604051610241919061200d565b60405180910390f35b34801561025657600080fd5b5061025f6105c4565b005b34801561026d57600080fd5b5061028860048036038101906102839190612028565b610661565b6040516102959190611f83565b60405180910390f35b3480156102aa57600080fd5b506102b36106aa565b005b3480156102c157600080fd5b506102ca6106be565b005b3480156102d857600080fd5b506102e1610761565b6040516102ee9190611f83565b60405180910390f35b34801561030357600080fd5b5061030c610767565b6040516103199190612064565b60405180910390f35b34801561032e57600080fd5b50610337610790565b6040516103449190611f83565b60405180910390f35b34801561035957600080fd5b50610362610796565b60405161036f9190611e43565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190611efe565b6107d3565b6040516103ac9190611f59565b60405180910390f35b3480156103c157600080fd5b506103ca6107f1565b005b3480156103d857600080fd5b506103e1610ca3565b6040516103ee9190611f83565b60405180910390f35b34801561040357600080fd5b5061041e6004803603810190610419919061207f565b610ca9565b60405161042b9190611f83565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190612028565b610d30565b005b60606040518060400160405280600281526020017f3458000000000000000000000000000000000000000000000000000000000000815250905090565b60006104ae6104a7610db3565b8484610dbb565b6001905092915050565b600f5481565b60006008600a6104ce9190612221565b6301936dc76104dd919061226c565b905090565b60006104ef848484610f84565b6105b0846104fb610db3565b6105ab85604051806060016040528060288152602001612d4860289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610561610db3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117f09092919063ffffffff16565b610dbb565b600190509392505050565b60006008905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610605610db3565b73ffffffffffffffffffffffffffffffffffffffff161461062557600080fd5b600061063030610661565b905060008111156106455761064481611845565b5b6000479050600081111561065d5761065c81611add565b5b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2611b0c565b6106bc6000611b8a565b565b6106c6611b0c565b6008600a6106d49190612221565b6301936dc76106e3919061226c565b600d819055506008600a6106f79190612221565b6301936dc7610706919061226c565b600e819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008600a61073b9190612221565b6301936dc761074a919061226c565b6040516107579190611f83565b60405180910390a1565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606040518060400160405280600481526020017f5858585800000000000000000000000000000000000000000000000000000000815250905090565b60006107e76107e0610db3565b8484610f84565b6001905092915050565b6107f9611b0c565b601160149054906101000a900460ff1615610849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610840906122fa565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506108e730601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008600a6108d39190612221565b6301936dc76108e2919061226c565b610dbb565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610954573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610978919061232f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a25919061232f565b6040518363ffffffff1660e01b8152600401610a4292919061235c565b6020604051808303816000875af1158015610a61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a85919061232f565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610b0e30610661565b600080610b19610767565b426040518863ffffffff1660e01b8152600401610b3b969594939291906123ca565b60606040518083038185885af1158015610b59573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b7e9190612440565b505050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610c20929190612493565b6020604051808303816000875af1158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6391906124e8565b506001601360016101000a81548160ff0219169083151502179055506001601160146101000a81548160ff02191690831515021790555043601281905550565b60125481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d38611b0c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90612587565b60405180910390fd5b610db081611b8a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612619565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e90906126ab565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f779190611f83565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061273d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906127cf565b60405180910390fd5b600081116110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90612861565b60405180910390fd5b60006110af610767565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561111d57506110ed610767565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561153357601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111cd5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112235750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156112c657600d5482111561126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906128cd565b60405180910390fd5b600e548261127a85610661565b61128491906128ed565b11156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc9061296d565b60405180910390fd5b5b61130d60646112ff600a546012546112de91906128ed565b43116112ec576006546112f0565b6008545b85611c4e90919063ffffffff16565b611c6490919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561139857503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561142c57600d548211156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d9906128cd565b60405180910390fd5b611429606461141b600b546012546113fa91906128ed565b43116114085760075461140c565b6009545b85611c4e90919063ffffffff16565b611c6490919063ffffffff16565b90505b600061143730610661565b9050601360009054906101000a900460ff161580156114a35750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156114bb5750601360019054906101000a900460ff165b80156114c85750600f5481115b80156114e25750600c546012546114df91906128ed565b43115b15611531576115176115128461150d846115086005600f54611c4e90919063ffffffff16565b611c7a565b611c7a565b611845565b6000479050600081111561152f5761152e47611add565b5b505b505b60008111156116375761158e81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9390919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161162e9190611f83565b60405180910390a35b61168982600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117306116e28284611ca990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9390919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6117d58486611ca990919063ffffffff16565b6040516117e29190611f83565b60405180910390a350505050565b6000838311158290611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f9190611e43565b60405180910390fd5b5082840390509392505050565b6001601360006101000a81548160ff0219169083151502179055506000810315611abf57601160149054906101000a900460ff1615611abf576000600267ffffffffffffffff81111561189b5761189a61298d565b5b6040519080825280602002602001820160405280156118c95781602001602082028036833780820191505090505b50905030816000815181106118e1576118e06129bc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ac919061232f565b816001815181106119c0576119bf6129bc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a2730601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dbb565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611a8b959493929190612aa9565b600060405180830381600087803b158015611aa557600080fd5b505af1158015611ab9573d6000803e3d6000fd5b50505050505b6000601360006101000a81548160ff02191690831515021790555050565b611b09600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611cbf565b50565b611b14610db3565b73ffffffffffffffffffffffffffffffffffffffff16611b32610767565b73ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90612b4f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c5c919061226c565b905092915050565b60008183611c729190612b9e565b905092915050565b6000818311611c895782611c8b565b815b905092915050565b60008183611ca191906128ed565b905092915050565b60008183611cb79190612bcf565b905092915050565b80471015611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990612c4f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d2890612ca0565b60006040518083038185875af1925050503d8060008114611d65576040519150601f19603f3d011682016040523d82523d6000602084013e611d6a565b606091505b5050905080611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590612d27565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ded578082015181840152602081019050611dd2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e1582611db3565b611e1f8185611dbe565b9350611e2f818560208601611dcf565b611e3881611df9565b840191505092915050565b60006020820190508181036000830152611e5d8184611e0a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e9582611e6a565b9050919050565b611ea581611e8a565b8114611eb057600080fd5b50565b600081359050611ec281611e9c565b92915050565b6000819050919050565b611edb81611ec8565b8114611ee657600080fd5b50565b600081359050611ef881611ed2565b92915050565b60008060408385031215611f1557611f14611e65565b5b6000611f2385828601611eb3565b9250506020611f3485828601611ee9565b9150509250929050565b60008115159050919050565b611f5381611f3e565b82525050565b6000602082019050611f6e6000830184611f4a565b92915050565b611f7d81611ec8565b82525050565b6000602082019050611f986000830184611f74565b92915050565b600080600060608486031215611fb757611fb6611e65565b5b6000611fc586828701611eb3565b9350506020611fd686828701611eb3565b9250506040611fe786828701611ee9565b9150509250925092565b600060ff82169050919050565b61200781611ff1565b82525050565b60006020820190506120226000830184611ffe565b92915050565b60006020828403121561203e5761203d611e65565b5b600061204c84828501611eb3565b91505092915050565b61205e81611e8a565b82525050565b60006020820190506120796000830184612055565b92915050565b6000806040838503121561209657612095611e65565b5b60006120a485828601611eb3565b92505060206120b585828601611eb3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561214557808604811115612121576121206120bf565b5b60018516156121305780820291505b808102905061213e856120ee565b9450612105565b94509492505050565b60008261215e576001905061221a565b8161216c576000905061221a565b8160018114612182576002811461218c576121bb565b600191505061221a565b60ff84111561219e5761219d6120bf565b5b8360020a9150848211156121b5576121b46120bf565b5b5061221a565b5060208310610133831016604e8410600b84101617156121f05782820a9050838111156121eb576121ea6120bf565b5b61221a565b6121fd84848460016120fb565b92509050818404811115612214576122136120bf565b5b81810290505b9392505050565b600061222c82611ec8565b915061223783611ff1565b92506122647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461214e565b905092915050565b600061227782611ec8565b915061228283611ec8565b925082820261229081611ec8565b915082820484148315176122a7576122a66120bf565b5b5092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006122e4601783611dbe565b91506122ef826122ae565b602082019050919050565b60006020820190508181036000830152612313816122d7565b9050919050565b60008151905061232981611e9c565b92915050565b60006020828403121561234557612344611e65565b5b60006123538482850161231a565b91505092915050565b60006040820190506123716000830185612055565b61237e6020830184612055565b9392505050565b6000819050919050565b6000819050919050565b60006123b46123af6123aa84612385565b61238f565b611ec8565b9050919050565b6123c481612399565b82525050565b600060c0820190506123df6000830189612055565b6123ec6020830188611f74565b6123f960408301876123bb565b61240660608301866123bb565b6124136080830185612055565b61242060a0830184611f74565b979650505050505050565b60008151905061243a81611ed2565b92915050565b60008060006060848603121561245957612458611e65565b5b60006124678682870161242b565b93505060206124788682870161242b565b92505060406124898682870161242b565b9150509250925092565b60006040820190506124a86000830185612055565b6124b56020830184611f74565b9392505050565b6124c581611f3e565b81146124d057600080fd5b50565b6000815190506124e2816124bc565b92915050565b6000602082840312156124fe576124fd611e65565b5b600061250c848285016124d3565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612571602683611dbe565b915061257c82612515565b604082019050919050565b600060208201905081810360008301526125a081612564565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612603602483611dbe565b915061260e826125a7565b604082019050919050565b60006020820190508181036000830152612632816125f6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612695602283611dbe565b91506126a082612639565b604082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612727602583611dbe565b9150612732826126cb565b604082019050919050565b600060208201905081810360008301526127568161271a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127b9602383611dbe565b91506127c48261275d565b604082019050919050565b600060208201905081810360008301526127e8816127ac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061284b602983611dbe565b9150612856826127ef565b604082019050919050565b6000602082019050818103600083015261287a8161283e565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006128b7601983611dbe565b91506128c282612881565b602082019050919050565b600060208201905081810360008301526128e6816128aa565b9050919050565b60006128f882611ec8565b915061290383611ec8565b925082820190508082111561291b5761291a6120bf565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000612957601a83611dbe565b915061296282612921565b602082019050919050565b600060208201905081810360008301526129868161294a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a2081611e8a565b82525050565b6000612a328383612a17565b60208301905092915050565b6000602082019050919050565b6000612a56826129eb565b612a6081856129f6565b9350612a6b83612a07565b8060005b83811015612a9c578151612a838882612a26565b9750612a8e83612a3e565b925050600181019050612a6f565b5085935050505092915050565b600060a082019050612abe6000830188611f74565b612acb60208301876123bb565b8181036040830152612add8186612a4b565b9050612aec6060830185612055565b612af96080830184611f74565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b39602083611dbe565b9150612b4482612b03565b602082019050919050565b60006020820190508181036000830152612b6881612b2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba982611ec8565b9150612bb483611ec8565b925082612bc457612bc3612b6f565b5b828204905092915050565b6000612bda82611ec8565b9150612be583611ec8565b9250828203905081811115612bfd57612bfc6120bf565b5b92915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612c39601d83611dbe565b9150612c4482612c03565b602082019050919050565b60006020820190508181036000830152612c6881612c2c565b9050919050565b600081905092915050565b50565b6000612c8a600083612c6f565b9150612c9582612c7a565b600082019050919050565b6000612cab82612c7d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612d11603a83611dbe565b9150612d1c82612cb5565b604082019050919050565b60006020820190508181036000830152612d4081612d04565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206c522f30809fd963cfc2edd0d357b819989ef635960fe2b6178717730cc09dbd64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101185760003560e01c8063751039fc116100a0578063a9059cbb11610064578063a9059cbb14610378578063c9567bf9146103b5578063d00efb2f146103cc578063dd62ed3e146103f7578063f2fde38b146104345761011f565b8063751039fc146102b55780637d1db4a5146102cc5780638da5cb5b146102f75780638f9a55c01461032257806395d89b411461034d5761011f565b806323b872dd116100e757806323b872dd146101e2578063313ce5671461021f57806351bc3c851461024a57806370a0823114610261578063715018a61461029e5761011f565b806306fdde0314610124578063095ea7b31461014f5780630e5a92311461018c57806318160ddd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b5061013961045d565b6040516101469190611e43565b60405180910390f35b34801561015b57600080fd5b5061017660048036038101906101719190611efe565b61049a565b6040516101839190611f59565b60405180910390f35b34801561019857600080fd5b506101a16104b8565b6040516101ae9190611f83565b60405180910390f35b3480156101c357600080fd5b506101cc6104be565b6040516101d99190611f83565b60405180910390f35b3480156101ee57600080fd5b5061020960048036038101906102049190611f9e565b6104e2565b6040516102169190611f59565b60405180910390f35b34801561022b57600080fd5b506102346105bb565b604051610241919061200d565b60405180910390f35b34801561025657600080fd5b5061025f6105c4565b005b34801561026d57600080fd5b5061028860048036038101906102839190612028565b610661565b6040516102959190611f83565b60405180910390f35b3480156102aa57600080fd5b506102b36106aa565b005b3480156102c157600080fd5b506102ca6106be565b005b3480156102d857600080fd5b506102e1610761565b6040516102ee9190611f83565b60405180910390f35b34801561030357600080fd5b5061030c610767565b6040516103199190612064565b60405180910390f35b34801561032e57600080fd5b50610337610790565b6040516103449190611f83565b60405180910390f35b34801561035957600080fd5b50610362610796565b60405161036f9190611e43565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190611efe565b6107d3565b6040516103ac9190611f59565b60405180910390f35b3480156103c157600080fd5b506103ca6107f1565b005b3480156103d857600080fd5b506103e1610ca3565b6040516103ee9190611f83565b60405180910390f35b34801561040357600080fd5b5061041e6004803603810190610419919061207f565b610ca9565b60405161042b9190611f83565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190612028565b610d30565b005b60606040518060400160405280600281526020017f3458000000000000000000000000000000000000000000000000000000000000815250905090565b60006104ae6104a7610db3565b8484610dbb565b6001905092915050565b600f5481565b60006008600a6104ce9190612221565b6301936dc76104dd919061226c565b905090565b60006104ef848484610f84565b6105b0846104fb610db3565b6105ab85604051806060016040528060288152602001612d4860289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610561610db3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117f09092919063ffffffff16565b610dbb565b600190509392505050565b60006008905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610605610db3565b73ffffffffffffffffffffffffffffffffffffffff161461062557600080fd5b600061063030610661565b905060008111156106455761064481611845565b5b6000479050600081111561065d5761065c81611add565b5b5050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106b2611b0c565b6106bc6000611b8a565b565b6106c6611b0c565b6008600a6106d49190612221565b6301936dc76106e3919061226c565b600d819055506008600a6106f79190612221565b6301936dc7610706919061226c565b600e819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008600a61073b9190612221565b6301936dc761074a919061226c565b6040516107579190611f83565b60405180910390a1565b600d5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606040518060400160405280600481526020017f5858585800000000000000000000000000000000000000000000000000000000815250905090565b60006107e76107e0610db3565b8484610f84565b6001905092915050565b6107f9611b0c565b601160149054906101000a900460ff1615610849576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610840906122fa565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506108e730601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008600a6108d39190612221565b6301936dc76108e2919061226c565b610dbb565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610954573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610978919061232f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a25919061232f565b6040518363ffffffff1660e01b8152600401610a4292919061235c565b6020604051808303816000875af1158015610a61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a85919061232f565b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610b0e30610661565b600080610b19610767565b426040518863ffffffff1660e01b8152600401610b3b969594939291906123ca565b60606040518083038185885af1158015610b59573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b7e9190612440565b505050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610c20929190612493565b6020604051808303816000875af1158015610c3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6391906124e8565b506001601360016101000a81548160ff0219169083151502179055506001601160146101000a81548160ff02191690831515021790555043601281905550565b60125481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d38611b0c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90612587565b60405180910390fd5b610db081611b8a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612619565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e90906126ab565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f779190611f83565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061273d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611059906127cf565b60405180910390fd5b600081116110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90612861565b60405180910390fd5b60006110af610767565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561111d57506110ed610767565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561153357601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156111cd5750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112235750600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156112c657600d5482111561126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906128cd565b60405180910390fd5b600e548261127a85610661565b61128491906128ed565b11156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc9061296d565b60405180910390fd5b5b61130d60646112ff600a546012546112de91906128ed565b43116112ec576006546112f0565b6008545b85611c4e90919063ffffffff16565b611c6490919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561139857503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561142c57600d548211156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d9906128cd565b60405180910390fd5b611429606461141b600b546012546113fa91906128ed565b43116114085760075461140c565b6009545b85611c4e90919063ffffffff16565b611c6490919063ffffffff16565b90505b600061143730610661565b9050601360009054906101000a900460ff161580156114a35750601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b80156114bb5750601360019054906101000a900460ff165b80156114c85750600f5481115b80156114e25750600c546012546114df91906128ed565b43115b15611531576115176115128461150d846115086005600f54611c4e90919063ffffffff16565b611c7a565b611c7a565b611845565b6000479050600081111561152f5761152e47611add565b5b505b505b60008111156116375761158e81600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9390919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161162e9190611f83565b60405180910390a35b61168982600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117306116e28284611ca990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9390919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6117d58486611ca990919063ffffffff16565b6040516117e29190611f83565b60405180910390a350505050565b6000838311158290611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f9190611e43565b60405180910390fd5b5082840390509392505050565b6001601360006101000a81548160ff0219169083151502179055506000810315611abf57601160149054906101000a900460ff1615611abf576000600267ffffffffffffffff81111561189b5761189a61298d565b5b6040519080825280602002602001820160405280156118c95781602001602082028036833780820191505090505b50905030816000815181106118e1576118e06129bc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ac919061232f565b816001815181106119c0576119bf6129bc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611a2730601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610dbb565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611a8b959493929190612aa9565b600060405180830381600087803b158015611aa557600080fd5b505af1158015611ab9573d6000803e3d6000fd5b50505050505b6000601360006101000a81548160ff02191690831515021790555050565b611b09600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611cbf565b50565b611b14610db3565b73ffffffffffffffffffffffffffffffffffffffff16611b32610767565b73ffffffffffffffffffffffffffffffffffffffff1614611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f90612b4f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611c5c919061226c565b905092915050565b60008183611c729190612b9e565b905092915050565b6000818311611c895782611c8b565b815b905092915050565b60008183611ca191906128ed565b905092915050565b60008183611cb79190612bcf565b905092915050565b80471015611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990612c4f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d2890612ca0565b60006040518083038185875af1925050503d8060008114611d65576040519150601f19603f3d011682016040523d82523d6000602084013e611d6a565b606091505b5050905080611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590612d27565b60405180910390fd5b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ded578082015181840152602081019050611dd2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611e1582611db3565b611e1f8185611dbe565b9350611e2f818560208601611dcf565b611e3881611df9565b840191505092915050565b60006020820190508181036000830152611e5d8184611e0a565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e9582611e6a565b9050919050565b611ea581611e8a565b8114611eb057600080fd5b50565b600081359050611ec281611e9c565b92915050565b6000819050919050565b611edb81611ec8565b8114611ee657600080fd5b50565b600081359050611ef881611ed2565b92915050565b60008060408385031215611f1557611f14611e65565b5b6000611f2385828601611eb3565b9250506020611f3485828601611ee9565b9150509250929050565b60008115159050919050565b611f5381611f3e565b82525050565b6000602082019050611f6e6000830184611f4a565b92915050565b611f7d81611ec8565b82525050565b6000602082019050611f986000830184611f74565b92915050565b600080600060608486031215611fb757611fb6611e65565b5b6000611fc586828701611eb3565b9350506020611fd686828701611eb3565b9250506040611fe786828701611ee9565b9150509250925092565b600060ff82169050919050565b61200781611ff1565b82525050565b60006020820190506120226000830184611ffe565b92915050565b60006020828403121561203e5761203d611e65565b5b600061204c84828501611eb3565b91505092915050565b61205e81611e8a565b82525050565b60006020820190506120796000830184612055565b92915050565b6000806040838503121561209657612095611e65565b5b60006120a485828601611eb3565b92505060206120b585828601611eb3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111561214557808604811115612121576121206120bf565b5b60018516156121305780820291505b808102905061213e856120ee565b9450612105565b94509492505050565b60008261215e576001905061221a565b8161216c576000905061221a565b8160018114612182576002811461218c576121bb565b600191505061221a565b60ff84111561219e5761219d6120bf565b5b8360020a9150848211156121b5576121b46120bf565b5b5061221a565b5060208310610133831016604e8410600b84101617156121f05782820a9050838111156121eb576121ea6120bf565b5b61221a565b6121fd84848460016120fb565b92509050818404811115612214576122136120bf565b5b81810290505b9392505050565b600061222c82611ec8565b915061223783611ff1565b92506122647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461214e565b905092915050565b600061227782611ec8565b915061228283611ec8565b925082820261229081611ec8565b915082820484148315176122a7576122a66120bf565b5b5092915050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006122e4601783611dbe565b91506122ef826122ae565b602082019050919050565b60006020820190508181036000830152612313816122d7565b9050919050565b60008151905061232981611e9c565b92915050565b60006020828403121561234557612344611e65565b5b60006123538482850161231a565b91505092915050565b60006040820190506123716000830185612055565b61237e6020830184612055565b9392505050565b6000819050919050565b6000819050919050565b60006123b46123af6123aa84612385565b61238f565b611ec8565b9050919050565b6123c481612399565b82525050565b600060c0820190506123df6000830189612055565b6123ec6020830188611f74565b6123f960408301876123bb565b61240660608301866123bb565b6124136080830185612055565b61242060a0830184611f74565b979650505050505050565b60008151905061243a81611ed2565b92915050565b60008060006060848603121561245957612458611e65565b5b60006124678682870161242b565b93505060206124788682870161242b565b92505060406124898682870161242b565b9150509250925092565b60006040820190506124a86000830185612055565b6124b56020830184611f74565b9392505050565b6124c581611f3e565b81146124d057600080fd5b50565b6000815190506124e2816124bc565b92915050565b6000602082840312156124fe576124fd611e65565b5b600061250c848285016124d3565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612571602683611dbe565b915061257c82612515565b604082019050919050565b600060208201905081810360008301526125a081612564565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612603602483611dbe565b915061260e826125a7565b604082019050919050565b60006020820190508181036000830152612632816125f6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612695602283611dbe565b91506126a082612639565b604082019050919050565b600060208201905081810360008301526126c481612688565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612727602583611dbe565b9150612732826126cb565b604082019050919050565b600060208201905081810360008301526127568161271a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127b9602383611dbe565b91506127c48261275d565b604082019050919050565b600060208201905081810360008301526127e8816127ac565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b600061284b602983611dbe565b9150612856826127ef565b604082019050919050565b6000602082019050818103600083015261287a8161283e565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e00000000000000600082015250565b60006128b7601983611dbe565b91506128c282612881565b602082019050919050565b600060208201905081810360008301526128e6816128aa565b9050919050565b60006128f882611ec8565b915061290383611ec8565b925082820190508082111561291b5761291a6120bf565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e000000000000600082015250565b6000612957601a83611dbe565b915061296282612921565b602082019050919050565b600060208201905081810360008301526129868161294a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612a2081611e8a565b82525050565b6000612a328383612a17565b60208301905092915050565b6000602082019050919050565b6000612a56826129eb565b612a6081856129f6565b9350612a6b83612a07565b8060005b83811015612a9c578151612a838882612a26565b9750612a8e83612a3e565b925050600181019050612a6f565b5085935050505092915050565b600060a082019050612abe6000830188611f74565b612acb60208301876123bb565b8181036040830152612add8186612a4b565b9050612aec6060830185612055565b612af96080830184611f74565b9695505050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b39602083611dbe565b9150612b4482612b03565b602082019050919050565b60006020820190508181036000830152612b6881612b2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612ba982611ec8565b9150612bb483611ec8565b925082612bc457612bc3612b6f565b5b828204905092915050565b6000612bda82611ec8565b9150612be583611ec8565b9250828203905081811115612bfd57612bfc6120bf565b5b92915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612c39601d83611dbe565b9150612c4482612c03565b602082019050919050565b60006020820190508181036000830152612c6881612c2c565b9050919050565b600081905092915050565b50565b6000612c8a600083612c6f565b9150612c9582612c7a565b600082019050919050565b6000612cab82612c7d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612d11603a83611dbe565b9150612d1c82612cb5565b604082019050919050565b60006020820190508181036000830152612d4081612d04565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206c522f30809fd963cfc2edd0d357b819989ef635960fe2b6178717730cc09dbd64736f6c63430008130033
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.