Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 JACK
Holders
35
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
9,002.62755041 JACKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
JackBot
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; /** * JACKBOT - Stake $JACK to win hourly Jackpot * 2.5% of the whole trading volume goes to jackpot. * * Website: https://www.jackbot.pro/ * Twitter: https://twitter.com/Jackbot_erc20 * Telegram: https://t.me/jackbot_erc20 * Bot: https://t.me/JackpotETH_Bot * Docs: https://docs.jackbot.pro/ */ import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Router02.sol"; import "./IStaking.sol"; contract JackBot is IERC20, Ownable(msg.sender) { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; IStaking public staking; uint256 private _initialBuyTax = 25; uint256 private _initialSellTax = 25; uint256 private _finalBuyTax = 5; uint256 private _finalSellTax = 5; uint256 private _reduceBuyTaxAt = 20; uint256 private _reduceSellTaxAt = 20; uint256 private _preventSwapBefore = 20; uint256 private _buyCount = 0; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 1000000 * 10 ** _decimals; string private constant _name = unicode"JACKBOT - Stake to win"; string private constant _symbol = unicode"JACK"; uint256 public _maxTxAmount = 20000 * 10 ** _decimals; uint256 public _maxWalletSize = 20000 * 10 ** _decimals; uint256 public _taxSwapThreshold = 10000 * 10 ** _decimals; uint256 public _maxTaxSwap = 10000 * 10 ** _decimals; address payable taxWallet; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; bool private inSwap; bool private swapEnabled; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor(address staking_) { staking = IStaking(staking_); taxWallet = payable(msg.sender); _balances[msg.sender] = _tTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[address(staking_)] = true; uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); 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 (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()] - amount ); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 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"); uint256 taxAmount = 0; if (from != owner() && to != owner()) { if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] ) { taxAmount = (amount * ( _buyCount > _reduceBuyTaxAt ? _finalBuyTax : _initialBuyTax )) / 100; require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount."); require( balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize." ); _buyCount++; } if (to != uniswapV2Pair && !_isExcludedFromFee[to]) { require( balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize." ); } if (to == uniswapV2Pair && from != address(this)) { taxAmount = (amount * ( _buyCount > _reduceSellTaxAt ? _finalSellTax : _initialSellTax )) / 100; } uint256 contractTokenBalance = balanceOf(address(this)); if ( !inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _preventSwapBefore ) { swapTokensForEth( min(amount, min(contractTokenBalance, _maxTaxSwap)) ); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } if (taxAmount > 0) { _balances[address(this)] = _balances[address(this)] + taxAmount; emit Transfer(from, address(this), taxAmount); } _balances[from] = _balances[from] - amount; _balances[to] = _balances[to] + (amount - taxAmount); emit Transfer(from, to, amount - taxAmount); if (to == address(staking)) { staking.deposit(from, amount); } } function min(uint256 a, uint256 b) private pure returns (uint256) { return a > b ? b : a; } function isContract(address account) private view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { 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(uint256 amount) private { Address.sendValue(payable(address(staking)), amount / 2); Address.sendValue(payable(taxWallet), amount / 2); } function openTrading() external onlyOwner { require(!tradingOpen, "trading is already open"); swapEnabled = true; uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); tradingOpen = true; } function recover() external { taxWallet.call{value: address(this).balance}(""); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) 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 FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IStaking { function deposit(address, uint) external; function withdraw() external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } }
{ "remappings": [ "@openzeppelin/=lib/openzeppelin-contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "lib/forge-std:ds-test/=lib/forge-std/lib/ds-test/src/", "lib/openzeppelin-contracts:@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "lib/openzeppelin-contracts:ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "lib/openzeppelin-contracts:erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "lib/openzeppelin-contracts:forge-std/=lib/openzeppelin-contracts/lib/forge-std/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"staking_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"_taxSwapThreshold","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":"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":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","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
6080604052601960055560196006556005600755600560085560146009556014600a556014600b556000600c556009600a6200003c91906200051f565b6200004a90614e2062000537565b600d556200005b6009600a6200051f565b6200006990614e2062000537565b600e556200007a6009600a6200051f565b620000889061271062000537565b600f55620000996009600a6200051f565b620000a79061271062000537565b601055348015620000b757600080fd5b5060405162001aec38038062001aec833981016040819052620000da9162000551565b33620000e681620003ba565b50600480546001600160a01b0383166001600160a01b03199182161790915560118054909116331790556200011e6009600a6200051f565b6200012d90620f424062000537565b336000908152600160208190526040822092909255600390620001586000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600384528281208054861660019081179091559186168152829020805490941617909255601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155825163c45a015560e01b81529251909263c45a01559260048083019391928290030181865afa1580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000551565b6001600160a01b031663c9c6539630601260009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000297573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bd919062000551565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200030b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000331919062000551565b601380546001600160a01b0319166001600160a01b0392909216919091179055620003593390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620003936009600a6200051f565b620003a290620f424062000537565b60405190815260200160405180910390a3506200057c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004615781600019048211156200044557620004456200040a565b808516156200045357918102915b93841c939080029062000425565b509250929050565b6000826200047a5750600162000519565b81620004895750600062000519565b8160018114620004a25760028114620004ad57620004cd565b600191505062000519565b60ff841115620004c157620004c16200040a565b50506001821b62000519565b5060208310610133831016604e8410600b8410161715620004f2575081810a62000519565b620004fe838362000420565b80600019048211156200051557620005156200040a565b0290505b92915050565b60006200053060ff84168362000469565b9392505050565b80820281158282048414176200051957620005196200040a565b6000602082840312156200056457600080fd5b81516001600160a01b03811681146200053057600080fd5b611560806200058c6000396000f3fe6080604052600436106101235760003560e01c80637d1db4a5116100a0578063bf474bed11610064578063bf474bed14610356578063c9567bf91461036c578063ce74602414610381578063dd62ed3e14610396578063f2fde38b146103dc57600080fd5b80637d1db4a5146102bf5780638da5cb5b146102d55780638f9a55c0146102f357806395d89b4114610309578063a9059cbb1461033657600080fd5b8063313ce567116100e7578063313ce567146102095780634cf088d91461022557806370a082311461025d578063715018a614610293578063751039fc146102aa57600080fd5b806306fdde031461012f578063095ea7b3146101805780630faee56f146101b057806318160ddd146101d457806323b872dd146101e957600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506040805180820190915260168152752520a1a5a127aa10169029ba30b5b2903a37903bb4b760511b60208201525b60405161017791906111b1565b60405180910390f35b34801561018c57600080fd5b506101a061019b366004611214565b6103fc565b6040519015158152602001610177565b3480156101bc57600080fd5b506101c660105481565b604051908152602001610177565b3480156101e057600080fd5b506101c6610413565b3480156101f557600080fd5b506101a0610204366004611240565b610433565b34801561021557600080fd5b5060405160098152602001610177565b34801561023157600080fd5b50600454610245906001600160a01b031681565b6040516001600160a01b039091168152602001610177565b34801561026957600080fd5b506101c6610278366004611281565b6001600160a01b031660009081526001602052604090205490565b34801561029f57600080fd5b506102a8610485565b005b3480156102b657600080fd5b506102a8610499565b3480156102cb57600080fd5b506101c6600d5481565b3480156102e157600080fd5b506000546001600160a01b0316610245565b3480156102ff57600080fd5b506101c6600e5481565b34801561031557600080fd5b506040805180820190915260048152634a41434b60e01b602082015261016a565b34801561034257600080fd5b506101a0610351366004611214565b610526565b34801561036257600080fd5b506101c6600f5481565b34801561037857600080fd5b506102a8610533565b34801561038d57600080fd5b506102a86106e1565b3480156103a257600080fd5b506101c66103b136600461129e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156103e857600080fd5b506102a86103f7366004611281565b610738565b6000610409338484610776565b5060015b92915050565b60006104216009600a6113d1565b61042e90620f42406113e0565b905090565b600061044084848461089a565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461047b9186916104769086906113f7565b610776565b5060019392505050565b61048d610ed0565b6104976000610efd565b565b6104a1610ed0565b6104ad6009600a6113d1565b6104ba90620f42406113e0565b600d556104c96009600a6113d1565b6104d690620f42406113e0565b600e557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105066009600a6113d1565b61051390620f42406113e0565b60405190815260200160405180910390a1565b600061040933848461089a565b61053b610ed0565b601354600160a01b900460ff161561059a5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6013805460ff60b01b1916600160b01b179055601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556105f59030906105e86009600a6113d1565b61047690620f42406113e0565b6012546001600160a01b031663f305d7194730610627816001600160a01b031660009081526001602052604090205490565b60008061063c6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106c9919061140a565b50506013805460ff60a01b1916600160a01b17905550565b6011546040516001600160a01b03909116904790600081818185875af1925050503d806000811461072e576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b606091505b505050565b610740610ed0565b6001600160a01b03811661076a57604051631e4fbdf760e01b815260006004820152602401610591565b61077381610efd565b50565b6001600160a01b0383166107d85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610591565b6001600160a01b0382166108395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610591565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610591565b6001600160a01b0382166109605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610591565b600081116109c25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610591565b600080546001600160a01b038581169116148015906109ef57506000546001600160a01b03848116911614155b15610d0b576013546001600160a01b038581169116148015610a1f57506012546001600160a01b03848116911614155b8015610a4457506001600160a01b03831660009081526003602052604090205460ff16155b15610b5b576064600954600c5411610a5e57600554610a62565b6007545b610a6c90846113e0565b610a769190611438565b9050600d54821115610aca5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610591565b600e5482610aed856001600160a01b031660009081526001602052604090205490565b610af7919061145a565b1115610b455760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610591565b600c8054906000610b558361146d565b91905055505b6013546001600160a01b03848116911614801590610b9257506001600160a01b03831660009081526003602052604090205460ff16155b15610c1257600e5482610bba856001600160a01b031660009081526001602052604090205490565b610bc4919061145a565b1115610c125760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610591565b6013546001600160a01b038481169116148015610c3857506001600160a01b0384163014155b15610c6d576064600a54600c5411610c5257600654610c56565b6008545b610c6090846113e0565b610c6a9190611438565b90505b30600090815260016020526040902054601354600160a81b900460ff16158015610ca457506013546001600160a01b038581169116145b8015610cb95750601354600160b01b900460ff165b8015610cc65750600f5481115b8015610cd55750600b54600c54115b15610d0957610cf7610cf284610ced84601054610f4d565b610f4d565b610f65565b478015610d0757610d07476110df565b505b505b8015610d865730600090815260016020526040902054610d2c90829061145a565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d7d9085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610daa9083906113f7565b6001600160a01b038516600090815260016020526040902055610dcd81836113f7565b6001600160a01b038416600090815260016020526040902054610df0919061145a565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e3a84866113f7565b60405190815260200160405180910390a36004546001600160a01b0390811690841603610eca57600480546040516311f9fbc960e21b81526001600160a01b0387811693820193909352602481018590529116906347e7ef2490604401600060405180830381600087803b158015610eb157600080fd5b505af1158015610ec5573d6000803e3d6000fd5b505050505b50505050565b6000546001600160a01b031633146104975760405163118cdaa760e01b8152336004820152602401610591565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818311610f5c5782610f5e565b815b9392505050565b6013805460ff60a81b1916600160a81b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610fad57610fad611486565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611006573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102a919061149c565b8160018151811061103d5761103d611486565b6001600160a01b0392831660209182029290920101526012546110639130911684610776565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac9479061109c9085906000908690309042906004016114b9565b600060405180830381600087803b1580156110b657600080fd5b505af11580156110ca573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6004546110ff906001600160a01b03166110fa600284611438565b61111a565b601154610773906001600160a01b03166110fa600284611438565b8047101561113d5760405163cd78605960e01b8152306004820152602401610591565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461118a576040519150601f19603f3d011682016040523d82523d6000602084013e61118f565b606091505b505090508061073357604051630a12f52160e11b815260040160405180910390fd5b600060208083528351808285015260005b818110156111de578581018301518582016040015282016111c2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461077357600080fd5b6000806040838503121561122757600080fd5b8235611232816111ff565b946020939093013593505050565b60008060006060848603121561125557600080fd5b8335611260816111ff565b92506020840135611270816111ff565b929592945050506040919091013590565b60006020828403121561129357600080fd5b8135610f5e816111ff565b600080604083850312156112b157600080fd5b82356112bc816111ff565b915060208301356112cc816111ff565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561132857816000190482111561130e5761130e6112d7565b8085161561131b57918102915b93841c93908002906112f2565b509250929050565b60008261133f5750600161040d565b8161134c5750600061040d565b8160018114611362576002811461136c57611388565b600191505061040d565b60ff84111561137d5761137d6112d7565b50506001821b61040d565b5060208310610133831016604e8410600b84101617156113ab575081810a61040d565b6113b583836112ed565b80600019048211156113c9576113c96112d7565b029392505050565b6000610f5e60ff841683611330565b808202811582820484141761040d5761040d6112d7565b8181038181111561040d5761040d6112d7565b60008060006060848603121561141f57600080fd5b8351925060208401519150604084015190509250925092565b60008261145557634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561040d5761040d6112d7565b60006001820161147f5761147f6112d7565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114ae57600080fd5b8151610f5e816111ff565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115095784516001600160a01b0316835293830193918301916001016114e4565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220df124dc5b70ca4df754c84750bc1d4581ce0cf79f1ccad797427c959540edb1164736f6c63430008140033000000000000000000000000d10fbc74a0e8a4d604b335dad3d2f28707dcb5d2
Deployed Bytecode
0x6080604052600436106101235760003560e01c80637d1db4a5116100a0578063bf474bed11610064578063bf474bed14610356578063c9567bf91461036c578063ce74602414610381578063dd62ed3e14610396578063f2fde38b146103dc57600080fd5b80637d1db4a5146102bf5780638da5cb5b146102d55780638f9a55c0146102f357806395d89b4114610309578063a9059cbb1461033657600080fd5b8063313ce567116100e7578063313ce567146102095780634cf088d91461022557806370a082311461025d578063715018a614610293578063751039fc146102aa57600080fd5b806306fdde031461012f578063095ea7b3146101805780630faee56f146101b057806318160ddd146101d457806323b872dd146101e957600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506040805180820190915260168152752520a1a5a127aa10169029ba30b5b2903a37903bb4b760511b60208201525b60405161017791906111b1565b60405180910390f35b34801561018c57600080fd5b506101a061019b366004611214565b6103fc565b6040519015158152602001610177565b3480156101bc57600080fd5b506101c660105481565b604051908152602001610177565b3480156101e057600080fd5b506101c6610413565b3480156101f557600080fd5b506101a0610204366004611240565b610433565b34801561021557600080fd5b5060405160098152602001610177565b34801561023157600080fd5b50600454610245906001600160a01b031681565b6040516001600160a01b039091168152602001610177565b34801561026957600080fd5b506101c6610278366004611281565b6001600160a01b031660009081526001602052604090205490565b34801561029f57600080fd5b506102a8610485565b005b3480156102b657600080fd5b506102a8610499565b3480156102cb57600080fd5b506101c6600d5481565b3480156102e157600080fd5b506000546001600160a01b0316610245565b3480156102ff57600080fd5b506101c6600e5481565b34801561031557600080fd5b506040805180820190915260048152634a41434b60e01b602082015261016a565b34801561034257600080fd5b506101a0610351366004611214565b610526565b34801561036257600080fd5b506101c6600f5481565b34801561037857600080fd5b506102a8610533565b34801561038d57600080fd5b506102a86106e1565b3480156103a257600080fd5b506101c66103b136600461129e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156103e857600080fd5b506102a86103f7366004611281565b610738565b6000610409338484610776565b5060015b92915050565b60006104216009600a6113d1565b61042e90620f42406113e0565b905090565b600061044084848461089a565b6001600160a01b03841660009081526002602090815260408083203380855292529091205461047b9186916104769086906113f7565b610776565b5060019392505050565b61048d610ed0565b6104976000610efd565b565b6104a1610ed0565b6104ad6009600a6113d1565b6104ba90620f42406113e0565b600d556104c96009600a6113d1565b6104d690620f42406113e0565b600e557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105066009600a6113d1565b61051390620f42406113e0565b60405190815260200160405180910390a1565b600061040933848461089a565b61053b610ed0565b601354600160a01b900460ff161561059a5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b6013805460ff60b01b1916600160b01b179055601280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556105f59030906105e86009600a6113d1565b61047690620f42406113e0565b6012546001600160a01b031663f305d7194730610627816001600160a01b031660009081526001602052604090205490565b60008061063c6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106a4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106c9919061140a565b50506013805460ff60a01b1916600160a01b17905550565b6011546040516001600160a01b03909116904790600081818185875af1925050503d806000811461072e576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b606091505b505050565b610740610ed0565b6001600160a01b03811661076a57604051631e4fbdf760e01b815260006004820152602401610591565b61077381610efd565b50565b6001600160a01b0383166107d85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610591565b6001600160a01b0382166108395760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610591565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610591565b6001600160a01b0382166109605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610591565b600081116109c25760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610591565b600080546001600160a01b038581169116148015906109ef57506000546001600160a01b03848116911614155b15610d0b576013546001600160a01b038581169116148015610a1f57506012546001600160a01b03848116911614155b8015610a4457506001600160a01b03831660009081526003602052604090205460ff16155b15610b5b576064600954600c5411610a5e57600554610a62565b6007545b610a6c90846113e0565b610a769190611438565b9050600d54821115610aca5760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610591565b600e5482610aed856001600160a01b031660009081526001602052604090205490565b610af7919061145a565b1115610b455760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610591565b600c8054906000610b558361146d565b91905055505b6013546001600160a01b03848116911614801590610b9257506001600160a01b03831660009081526003602052604090205460ff16155b15610c1257600e5482610bba856001600160a01b031660009081526001602052604090205490565b610bc4919061145a565b1115610c125760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610591565b6013546001600160a01b038481169116148015610c3857506001600160a01b0384163014155b15610c6d576064600a54600c5411610c5257600654610c56565b6008545b610c6090846113e0565b610c6a9190611438565b90505b30600090815260016020526040902054601354600160a81b900460ff16158015610ca457506013546001600160a01b038581169116145b8015610cb95750601354600160b01b900460ff165b8015610cc65750600f5481115b8015610cd55750600b54600c54115b15610d0957610cf7610cf284610ced84601054610f4d565b610f4d565b610f65565b478015610d0757610d07476110df565b505b505b8015610d865730600090815260016020526040902054610d2c90829061145a565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d7d9085815260200190565b60405180910390a35b6001600160a01b038416600090815260016020526040902054610daa9083906113f7565b6001600160a01b038516600090815260016020526040902055610dcd81836113f7565b6001600160a01b038416600090815260016020526040902054610df0919061145a565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610e3a84866113f7565b60405190815260200160405180910390a36004546001600160a01b0390811690841603610eca57600480546040516311f9fbc960e21b81526001600160a01b0387811693820193909352602481018590529116906347e7ef2490604401600060405180830381600087803b158015610eb157600080fd5b505af1158015610ec5573d6000803e3d6000fd5b505050505b50505050565b6000546001600160a01b031633146104975760405163118cdaa760e01b8152336004820152602401610591565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000818311610f5c5782610f5e565b815b9392505050565b6013805460ff60a81b1916600160a81b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110610fad57610fad611486565b6001600160a01b03928316602091820292909201810191909152601254604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611006573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102a919061149c565b8160018151811061103d5761103d611486565b6001600160a01b0392831660209182029290920101526012546110639130911684610776565b60125460405163791ac94760e01b81526001600160a01b039091169063791ac9479061109c9085906000908690309042906004016114b9565b600060405180830381600087803b1580156110b657600080fd5b505af11580156110ca573d6000803e3d6000fd5b50506013805460ff60a81b1916905550505050565b6004546110ff906001600160a01b03166110fa600284611438565b61111a565b601154610773906001600160a01b03166110fa600284611438565b8047101561113d5760405163cd78605960e01b8152306004820152602401610591565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461118a576040519150601f19603f3d011682016040523d82523d6000602084013e61118f565b606091505b505090508061073357604051630a12f52160e11b815260040160405180910390fd5b600060208083528351808285015260005b818110156111de578581018301518582016040015282016111c2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461077357600080fd5b6000806040838503121561122757600080fd5b8235611232816111ff565b946020939093013593505050565b60008060006060848603121561125557600080fd5b8335611260816111ff565b92506020840135611270816111ff565b929592945050506040919091013590565b60006020828403121561129357600080fd5b8135610f5e816111ff565b600080604083850312156112b157600080fd5b82356112bc816111ff565b915060208301356112cc816111ff565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561132857816000190482111561130e5761130e6112d7565b8085161561131b57918102915b93841c93908002906112f2565b509250929050565b60008261133f5750600161040d565b8161134c5750600061040d565b8160018114611362576002811461136c57611388565b600191505061040d565b60ff84111561137d5761137d6112d7565b50506001821b61040d565b5060208310610133831016604e8410600b84101617156113ab575081810a61040d565b6113b583836112ed565b80600019048211156113c9576113c96112d7565b029392505050565b6000610f5e60ff841683611330565b808202811582820484141761040d5761040d6112d7565b8181038181111561040d5761040d6112d7565b60008060006060848603121561141f57600080fd5b8351925060208401519150604084015190509250925092565b60008261145557634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561040d5761040d6112d7565b60006001820161147f5761147f6112d7565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156114ae57600080fd5b8151610f5e816111ff565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115095784516001600160a01b0316835293830193918301916001016114e4565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220df124dc5b70ca4df754c84750bc1d4581ce0cf79f1ccad797427c959540edb1164736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d10fbc74a0e8a4d604b335dad3d2f28707dcb5d2
-----Decoded View---------------
Arg [0] : staking_ (address): 0xD10FBc74a0E8A4d604B335dAD3D2F28707Dcb5d2
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d10fbc74a0e8a4d604b335dad3d2f28707dcb5d2
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.