Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 D-Vol
Holders
5
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
17,458.301468713845912505 D-VolValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DVol
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Web: https://d-vol.com/ */ // SPDX-License-Identifier: MIT // File: contracts/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: contracts/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); 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; } // File: contracts/IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: contracts/IUniswapV2Factory.sol pragma solidity >=0.5.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; } // File: contracts/Address.sol // OpenZeppelin Contracts (last updated v4.8.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 * ==== * * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (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); } } } // File: contracts/Context.sol // 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; } } // File: contracts/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.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; } } } // File: contracts/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.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); } // File: contracts/old.sol pragma solidity 0.8.17; contract Blacklist { struct AntiBot { bool antiBotStatus; mapping(address => uint256) _userFirstTry; mapping(address => uint256) _userLastTry; mapping(address => bool) _blacklistedUsers; } AntiBot antiBot; } abstract contract Configuration is IERC20 { string public _name = "D-Vol"; string public _symbol = "D-Vol"; uint8 public _decimals = 18; uint256 public _totalSupply = 1000000 * 10**_decimals; // 1 million total supply address public developerAddress; // Developer Address uint256 public maxTransactionAmount = _totalSupply / 200; // 0.50% of the total supply uint256 public maxWalletBalance = _totalSupply / 100; // 1% of the total supply address public uniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; uint256 public numberOfTokensToSwapToLiquidity = _totalSupply / 1000; // 0.1% of the total supply uint8 public _liquidityFee = 4; // 4% uint8 public _developerFee = 2; // 2% bool public _FeeOnBuy = true; bool public _FeeOnSell = true; bool public _FeeOnTransfer = false; } contract DVol is Context, Configuration, Ownable, Blacklist { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _totalOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; bool private inSwapAndLiquify; bool private swapAndLiquifyEnabled = true; modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } uint256 public launchingTime; bool public tradeStarted; IUniswapV2Router02 public _uniswapV2Router = IUniswapV2Router02(uniswapV2Router); address public uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair( address(this), _uniswapV2Router.WETH() ); /* * Steps to launch: * 0. * 1. deploy contract. * 2. add Liq * 3. set _FeeOnTransfer to true (optional) * */ constructor() { _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[developerAddress] = true; _isExcludedFromFee[uniswapV2Router] = true; developerAddress =_msgSender(); _approve(_msgSender(), address(uniswapV2Router), ~uint256(0)); _approve(address(this), address(uniswapV2Router), ~uint256(0)); antiBot.antiBotStatus = true; _totalOwned[_msgSender()] = _totalSupply; //mint all to msg.sender emit Transfer(address(0), _msgSender(), _totalSupply); } modifier isTradeStarted(address from, address to) { if (from != developerAddress) { require(tradeStarted == true, "trade not started"); } else {} _; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _totalOwned[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; } // once enabled, can never be turned off function EnableTrading() external onlyOwner { tradeStarted = true; launchingTime = block.number; } function transferFrom( address sender, address recipient, uint256 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 increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function _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 isTradeStarted(from, to) { 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"); require( !antiBot._blacklistedUsers[to] && !antiBot._blacklistedUsers[from], "You are not allowed" ); if ( amount > maxTransactionAmount && !_isExcludedFromFee[from] && !_isExcludedFromFee[to] ) { revert("Transfer is bigger than max tx amount"); } if ( maxWalletBalance > 0 && !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && to != uniswapV2Pair ) { uint256 recipientBalance = balanceOf(to); require( recipientBalance + amount <= maxWalletBalance, "Your balance is too high" ); } if (antiBot.antiBotStatus == true) { if ( to != owner() && to != address(_uniswapV2Router) && to != uniswapV2Pair ) { require( antiBot._userLastTry[tx.origin] < block.number, "You cannot do more than 1 transaction per block" ); antiBot._userLastTry[tx.origin] = block.number; } } if ( block.number <= (launchingTime + 2) && to != address(_uniswapV2Router) && to != uniswapV2Pair ) { antiBot._blacklistedUsers[to] = true; } bool takeFee = _FeeOnTransfer; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } else { if (from == uniswapV2Pair) { takeFee = _FeeOnBuy; } else if (to == uniswapV2Pair) { takeFee = _FeeOnSell; } } _tokenTransfer(from, to, amount, takeFee); } function _beforeTransfer(address sender) internal { uint256 contractTokenBalance = balanceOf(address(this)); checkLiqBal(contractTokenBalance, sender); } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) { _beforeTransfer(sender); _transferStandard(sender, recipient, amount); } else { _beforeTransfer(sender); _transferWithFee(sender, recipient, amount); } } function _transferWithFee( address sender, address recipient, uint256 tAmount ) private { uint256 fromBalance = _totalOwned[sender]; require( fromBalance >= tAmount, "ERC20: transfer amount exceeds balance" ); uint256 devFee = (tAmount * _developerFee) / 100; uint256 liqFee = (tAmount * _liquidityFee) / 100; uint256 tTransferAmount = tAmount - devFee - liqFee; unchecked { _totalOwned[sender] = fromBalance - tTransferAmount; _totalOwned[recipient] += tTransferAmount; _totalOwned[address(this)] += liqFee; _totalOwned[developerAddress] += devFee; } emit Transfer(sender, recipient, tTransferAmount); emit Transfer(sender, developerAddress, devFee); emit Transfer(sender, address(this), liqFee); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { uint256 fromBalance = _totalOwned[sender]; require( fromBalance >= tAmount, "ERC20: transfer amount exceeds balance" ); unchecked { _totalOwned[sender] = fromBalance - tAmount; _totalOwned[recipient] += tAmount; } emit Transfer(sender, recipient, tAmount); } function _getCurrentSupply() private view returns (uint256) { uint256 tSupply = _totalSupply; return tSupply; } function isExcludedFromFee(address _address) public view returns (bool) { return _isExcludedFromFee[_address]; } function excludeFromFee(address _address) public onlyOwner { _isExcludedFromFee[_address] = true; } function includeInFee(address _address) public onlyOwner { _isExcludedFromFee[_address] = false; } function setFeesStatus( bool FeeOnBuy, bool FeeOnsell, bool FeeOnTransfer ) external onlyOwner { _FeeOnBuy = FeeOnBuy; _FeeOnSell = FeeOnsell; _FeeOnTransfer = FeeOnTransfer; } function checkFeesStatus() public view onlyOwner returns (bool[] memory) { bool[] memory result = new bool[](3); result[0] = _FeeOnBuy; result[1] = _FeeOnSell; result[2] = _FeeOnTransfer; return result; } function checkLiqBal(uint256 contractTokenBalance, address sender) internal { if (contractTokenBalance >= maxTransactionAmount) contractTokenBalance = maxTransactionAmount; bool isOverRequiredTokenBalance = (contractTokenBalance >= numberOfTokensToSwapToLiquidity); if ( isOverRequiredTokenBalance && swapAndLiquifyEnabled && !inSwapAndLiquify && (sender != uniswapV2Pair) ) { startSwappingForLiquidity(contractTokenBalance); } } function startSwappingForLiquidity(uint256 amount) private lockTheSwap { uint256 half = amount.div(2); uint256 otherHalf = amount.sub(half); uint256 initialBalance = address(this).balance; _swapTokens(half); uint256 newBalance = address(this).balance.sub(initialBalance); _createLiquidity(otherHalf, newBalance); } function _swapTokens(uint256 tokenAmount) private { 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 _createLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function blackListWallets(address _wallet, bool _status) public onlyOwner { antiBot._blacklistedUsers[_wallet] = _status; // true or false } // change the minimum amount of tokens to sell for ETH, swap add liquidity function setMinimunAmountOfTokenToSwapToLiquidity(uint256 _minAmount) external onlyOwner returns (bool) { numberOfTokensToSwapToLiquidity = _minAmount; return true; } function setMaxTransactionAmount(uint256 _amount) external onlyOwner { maxTransactionAmount = _amount * (10**_decimals); } function updateMaxWalletBalance(uint256 _newMaxBalance) external onlyOwner { maxWalletBalance = _newMaxBalance * (10**_decimals); } receive() external payable {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"EnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_FeeOnBuy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FeeOnSell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FeeOnTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developerFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"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":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"blackListWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkFeesStatus","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTokensToSwapToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"FeeOnBuy","type":"bool"},{"internalType":"bool","name":"FeeOnsell","type":"bool"},{"internalType":"bool","name":"FeeOnTransfer","type":"bool"}],"name":"setFeesStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minAmount","type":"uint256"}],"name":"setMinimunAmountOfTokenToSwapToLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxBalance","type":"uint256"}],"name":"updateMaxWalletBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f442d566f6c000000000000000000000000000000000000000000000000000000815250600090816200004a919062000d44565b506040518060400160405280600581526020017f442d566f6c0000000000000000000000000000000000000000000000000000008152506001908162000091919062000d44565b506012600260006101000a81548160ff021916908360ff160217905550600260009054906101000a900460ff16600a620000cc919062000fbb565b620f4240620000dc91906200100c565b60035560c8600354620000f0919062001086565b600555606460035462000104919062001086565b600655737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e86003546200016e919062001086565b6008556004600960006101000a81548160ff021916908360ff1602179055506002600960016101000a81548160ff021916908360ff1602179055506001600960026101000a81548160ff0219169083151502179055506001600960036101000a81548160ff0219169083151502179055506000600960046101000a81548160ff0219169083151502179055506001601160016101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030c919062001128565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000396573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003bc919062001128565b6040518363ffffffff1660e01b8152600401620003db9291906200116b565b6020604051808303816000875af1158015620003fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000421919062001128565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200046e57600080fd5b506200048f620004836200080160201b60201c565b6200080960201b60201c565b600160106000620004a5620008cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006526200080160201b60201c565b600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006d8620006a66200080160201b60201c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019620008f960201b60201c565b6200070f30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019620008f960201b60201c565b6001600a60000160006101000a81548160ff021916908315150217905550600354600e6000620007446200080160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620007926200080160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600354604051620007f39190620011a9565b60405180910390a362001307565b600033905090565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000962906200124d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d490620012e5565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000abd9190620011a9565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4c57607f821691505b60208210810362000b625762000b6162000b04565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8d565b62000bd8868362000b8d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c2562000c1f62000c198462000bf0565b62000bfa565b62000bf0565b9050919050565b6000819050919050565b62000c418362000c04565b62000c5962000c508262000c2c565b84845462000b9a565b825550505050565b600090565b62000c7062000c61565b62000c7d81848462000c36565b505050565b5b8181101562000ca55762000c9960008262000c66565b60018101905062000c83565b5050565b601f82111562000cf45762000cbe8162000b68565b62000cc98462000b7d565b8101602085101562000cd9578190505b62000cf162000ce88562000b7d565b83018262000c82565b50505b505050565b600082821c905092915050565b600062000d196000198460080262000cf9565b1980831691505092915050565b600062000d34838362000d06565b9150826002028217905092915050565b62000d4f8262000aca565b67ffffffffffffffff81111562000d6b5762000d6a62000ad5565b5b62000d77825462000b33565b62000d8482828562000ca9565b600060209050601f83116001811462000dbc576000841562000da7578287015190505b62000db3858262000d26565b86555062000e23565b601f19841662000dcc8662000b68565b60005b8281101562000df65784890151825560018201915060208501945060208101905062000dcf565b8683101562000e16578489015162000e12601f89168262000d06565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000eb95780860481111562000e915762000e9062000e2b565b5b600185161562000ea15780820291505b808102905062000eb18562000e5a565b945062000e71565b94509492505050565b60008262000ed4576001905062000fa7565b8162000ee4576000905062000fa7565b816001811462000efd576002811462000f085762000f3e565b600191505062000fa7565b60ff84111562000f1d5762000f1c62000e2b565b5b8360020a91508482111562000f375762000f3662000e2b565b5b5062000fa7565b5060208310610133831016604e8410600b841016171562000f785782820a90508381111562000f725762000f7162000e2b565b5b62000fa7565b62000f87848484600162000e67565b9250905081840481111562000fa15762000fa062000e2b565b5b81810290505b9392505050565b600060ff82169050919050565b600062000fc88262000bf0565b915062000fd58362000fae565b9250620010047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ec2565b905092915050565b6000620010198262000bf0565b9150620010268362000bf0565b9250828202620010368162000bf0565b9150828204841483151762001050576200104f62000e2b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010938262000bf0565b9150620010a08362000bf0565b925082620010b357620010b262001057565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010f082620010c3565b9050919050565b6200110281620010e3565b81146200110e57600080fd5b50565b6000815190506200112281620010f7565b92915050565b600060208284031215620011415762001140620010be565b5b6000620011518482850162001111565b91505092915050565b6200116581620010e3565b82525050565b60006040820190506200118260008301856200115a565b6200119160208301846200115a565b9392505050565b620011a38162000bf0565b82525050565b6000602082019050620011c0600083018462001198565b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001235602483620011c6565b91506200124282620011d7565b604082019050919050565b60006020820190508181036000830152620012688162001226565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620012cd602283620011c6565b9150620012da826200126f565b604082019050919050565b600060208201905081810360008301526200130081620012be565b9050919050565b613f2080620013176000396000f3fe6080604052600436106102555760003560e01c8063583e056811610139578063a457c2d7116100b6578063caccd7f71161007a578063caccd7f7146108cd578063d28d8852146108f8578063dd62ed3e14610923578063e3d5fdb614610960578063ea2f0b3714610989578063f2fde38b146109b25761025c565b8063a457c2d7146107d2578063a9059cbb1461080f578063b09f12661461084c578063bbde77c114610877578063c8c8ebe4146108a25761025c565b80638d2efcb9116100fd5780638d2efcb9146106fb5780638da5cb5b146107265780638ebe4fe51461075157806395d89b411461077c578063a22b557c146107a75761025c565b8063583e0568146106285780636bc87c3a1461065357806370a082311461067e578063715018a6146106bb5780638c52c6c8146106d25761025c565b80632a1cb2e8116101d25780633eaaf86b116101965780633eaaf86b14610504578063437823ec1461052f57806348de478e1461055857806349bd5a5e146105835780634e363b65146105ae5780635342acb4146105eb5761025c565b80632a1cb2e81461041b578063313ce5671461044657806332424aa31461047157806337aa30ee1461049c57806339509351146104c75761025c565b8063188b1bf111610219578063188b1bf11461034a5780631d97b7cd146103735780631e293c101461038a57806323b872dd146103b357806329d42dbd146103f05761025c565b806306fdde0314610261578063095ea7b31461028c5780630b76dbec146102c95780631694505e146102f457806318160ddd1461031f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b506102766109db565b6040516102839190612d36565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612df1565b610a6d565b6040516102c09190612e4c565b60405180910390f35b3480156102d557600080fd5b506102de610a8b565b6040516102eb9190612e76565b60405180910390f35b34801561030057600080fd5b50610309610a91565b6040516103169190612ea0565b60405180910390f35b34801561032b57600080fd5b50610334610ab7565b6040516103419190612e76565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612ebb565b610ac1565b005b34801561037f57600080fd5b50610388610af9565b005b34801561039657600080fd5b506103b160048036038101906103ac9190612ebb565b610b25565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612ee8565b610b5d565b6040516103e79190612e4c565b60405180910390f35b3480156103fc57600080fd5b50610405610c36565b6040516104129190612e4c565b60405180910390f35b34801561042757600080fd5b50610430610c49565b60405161043d9190612e4c565b60405180910390f35b34801561045257600080fd5b5061045b610c5c565b6040516104689190612f57565b60405180910390f35b34801561047d57600080fd5b50610486610c73565b6040516104939190612f57565b60405180910390f35b3480156104a857600080fd5b506104b1610c86565b6040516104be9190612e76565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612df1565b610c8c565b6040516104fb9190612e4c565b60405180910390f35b34801561051057600080fd5b50610519610d3f565b6040516105269190612e76565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612f72565b610d45565b005b34801561056457600080fd5b5061056d610da8565b60405161057a9190612f57565b60405180910390f35b34801561058f57600080fd5b50610598610dbb565b6040516105a59190612ea0565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612ebb565b610de1565b6040516105e29190612e4c565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612f72565b610dfb565b60405161061f9190612e4c565b60405180910390f35b34801561063457600080fd5b5061063d610e51565b60405161064a9190612ffe565b60405180910390f35b34801561065f57600080fd5b50610668610e77565b6040516106759190612f57565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612f72565b610e8a565b6040516106b29190612e76565b60405180910390f35b3480156106c757600080fd5b506106d0610ed3565b005b3480156106de57600080fd5b506106f960048036038101906106f49190613045565b610ee7565b005b34801561070757600080fd5b50610710610f4d565b60405161071d9190613143565b60405180910390f35b34801561073257600080fd5b5061073b61104e565b6040516107489190612ea0565b60405180910390f35b34801561075d57600080fd5b50610766611078565b6040516107739190612e4c565b60405180910390f35b34801561078857600080fd5b5061079161108b565b60405161079e9190612d36565b60405180910390f35b3480156107b357600080fd5b506107bc61111d565b6040516107c99190612e4c565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612df1565b611130565b6040516108069190612e4c565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190612df1565b6111fd565b6040516108439190612e4c565b60405180910390f35b34801561085857600080fd5b5061086161121b565b60405161086e9190612d36565b60405180910390f35b34801561088357600080fd5b5061088c6112a9565b6040516108999190612e76565b60405180910390f35b3480156108ae57600080fd5b506108b76112af565b6040516108c49190612e76565b60405180910390f35b3480156108d957600080fd5b506108e26112b5565b6040516108ef9190612ea0565b60405180910390f35b34801561090457600080fd5b5061090d6112db565b60405161091a9190612d36565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190613165565b611369565b6040516109579190612e76565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906131a5565b6113f0565b005b34801561099557600080fd5b506109b060048036038101906109ab9190612f72565b61144b565b005b3480156109be57600080fd5b506109d960048036038101906109d49190612f72565b6114ae565b005b6060600080546109ea90613227565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1690613227565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b5050505050905090565b6000610a81610a7a611531565b8484611539565b6001905092915050565b60085481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b610ac9611702565b600260009054906101000a900460ff16600a610ae591906133ba565b81610af09190613405565b60068190555050565b610b01611702565b6001601360006101000a81548160ff02191690831515021790555043601281905550565b610b2d611702565b600260009054906101000a900460ff16600a610b4991906133ba565b81610b549190613405565b60058190555050565b6000610b6a848484611780565b610c2b84610b76611531565b610c2685604051806060016040528060288152602001613e9e60289139600f60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bdc611531565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461214d9092919063ffffffff16565b611539565b600190509392505050565b601360009054906101000a900460ff1681565b600960039054906101000a900460ff1681565b6000600260009054906101000a900460ff16905090565b600260009054906101000a900460ff1681565b60125481565b6000610d35610c99611531565b84610d3085600f6000610caa611531565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121a290919063ffffffff16565b611539565b6001905092915050565b60035481565b610d4d611702565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960019054906101000a900460ff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610deb611702565b8160088190555060019050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610edb611702565b610ee560006121b8565b565b610eef611702565b80600a60030160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060610f57611702565b6000600367ffffffffffffffff811115610f7457610f73613447565b5b604051908082528060200260200182016040528015610fa25781602001602082028036833780820191505090505b509050600960029054906101000a900460ff1681600081518110610fc957610fc8613476565b5b602002602001019015159081151581525050600960039054906101000a900460ff1681600181518110610fff57610ffe613476565b5b602002602001019015159081151581525050600960049054906101000a900460ff168160028151811061103557611034613476565b5b6020026020010190151590811515815250508091505090565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960029054906101000a900460ff1681565b60606001805461109a90613227565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690613227565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b600960049054906101000a900460ff1681565b60006111f361113d611531565b846111ee85604051806060016040528060258152602001613ec660259139600f6000611167611531565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461214d9092919063ffffffff16565b611539565b6001905092915050565b600061121161120a611531565b8484611780565b6001905092915050565b6001805461122890613227565b80601f016020809104026020016040519081016040528092919081815260200182805461125490613227565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b505050505081565b60065481565b60055481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080546112e890613227565b80601f016020809104026020016040519081016040528092919081815260200182805461131490613227565b80156113615780601f1061133657610100808354040283529160200191611361565b820191906000526020600020905b81548152906001019060200180831161134457829003601f168201915b505050505081565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113f8611702565b82600960026101000a81548160ff02191690831515021790555081600960036101000a81548160ff02191690831515021790555080600960046101000a81548160ff021916908315150217905550505050565b611453611702565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6114b6611702565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613517565b60405180910390fd5b61152e816121b8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906135a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e9061363b565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116f59190612e76565b60405180910390a3505050565b61170a611531565b73ffffffffffffffffffffffffffffffffffffffff1661172861104e565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906136a7565b60405180910390fd5b565b8282600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146118325760011515601360009054906101000a900460ff1615151461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613713565b60405180910390fd5b611833565b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906137a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613837565b60405180910390fd5b60008311611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b906138c9565b60405180910390fd5b600a60030160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119fe5750600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613935565b60405180910390fd5b60055483118015611a985750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aee5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b25906139c7565b60405180910390fd5b6000600654118015611b8a5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611be05750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c3a5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611c9e576000611c4a85610e8a565b90506006548482611c5b91906139e7565b1115611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613a67565b60405180910390fd5b505b60011515600a60000160009054906101000a900460ff16151503611e7957611cc461104e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611d4d5750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611da75750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611e785743600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790613af9565b60405180910390fd5b43600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6002601254611e8891906139e7565b4311158015611ee55750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611f3f5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611fa0576001600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000600960049054906101000a900460ff169050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120555750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120635760009050612139565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036120cf57600960029054906101000a900460ff169050612138565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361213757600960039054906101000a900460ff1690505b5b5b6121458686868461227e565b505050505050565b6000838311158290612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c9190612d36565b60405180910390fd5b5082840390509392505050565b600081836121b091906139e7565b905092915050565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8061229c5761228c846122b7565b6122978484846122d2565b6122b1565b6122a5846122b7565b6122b0848484612457565b5b50505050565b60006122c230610e8a565b90506122ce81836127fe565b5050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613b8b565b60405180910390fd5b818103600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124499190612e76565b60405180910390a350505050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590613b8b565b60405180910390fd5b60006064600960019054906101000a900460ff1660ff16846125009190613405565b61250a9190613bda565b905060006064600960009054906101000a900460ff1660ff168561252e9190613405565b6125389190613bda565b905060008183866125499190613c0b565b6125539190613c0b565b9050808403600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555082600e6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127019190612e76565b60405180910390a3600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127889190612e76565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127ed9190612e76565b60405180910390a350505050505050565b600554821061280d5760055491505b600060085483101590508080156128305750601160019054906101000a900460ff165b80156128495750601160009054906101000a900460ff16155b80156128a35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128b2576128b1836128b7565b5b505050565b6001601160006101000a81548160ff02191690831515021790555060006128e860028361295290919063ffffffff16565b905060006128ff828461296890919063ffffffff16565b9050600047905061290f8361297e565b6000612924824761296890919063ffffffff16565b90506129308382612bc1565b505050506000601160006101000a81548160ff02191690831515021790555050565b600081836129609190613bda565b905092915050565b600081836129769190613c0b565b905092915050565b6000600267ffffffffffffffff81111561299b5761299a613447565b5b6040519080825280602002602001820160405280156129c95781602001602082028036833780820191505090505b50905030816000815181106129e1576129e0613476565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aac9190613c54565b81600181518110612ac057612abf613476565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b2730601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611539565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b8b959493929190613d7a565b600060405180830381600087803b158015612ba557600080fd5b505af1158015612bb9573d6000803e3d6000fd5b505050505050565b612bee30601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611539565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612c3a61104e565b426040518863ffffffff1660e01b8152600401612c5c96959493929190613dd4565b60606040518083038185885af1158015612c7a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9f9190613e4a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ce0578082015181840152602081019050612cc5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d0882612ca6565b612d128185612cb1565b9350612d22818560208601612cc2565b612d2b81612cec565b840191505092915050565b60006020820190508181036000830152612d508184612cfd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d8882612d5d565b9050919050565b612d9881612d7d565b8114612da357600080fd5b50565b600081359050612db581612d8f565b92915050565b6000819050919050565b612dce81612dbb565b8114612dd957600080fd5b50565b600081359050612deb81612dc5565b92915050565b60008060408385031215612e0857612e07612d58565b5b6000612e1685828601612da6565b9250506020612e2785828601612ddc565b9150509250929050565b60008115159050919050565b612e4681612e31565b82525050565b6000602082019050612e616000830184612e3d565b92915050565b612e7081612dbb565b82525050565b6000602082019050612e8b6000830184612e67565b92915050565b612e9a81612d7d565b82525050565b6000602082019050612eb56000830184612e91565b92915050565b600060208284031215612ed157612ed0612d58565b5b6000612edf84828501612ddc565b91505092915050565b600080600060608486031215612f0157612f00612d58565b5b6000612f0f86828701612da6565b9350506020612f2086828701612da6565b9250506040612f3186828701612ddc565b9150509250925092565b600060ff82169050919050565b612f5181612f3b565b82525050565b6000602082019050612f6c6000830184612f48565b92915050565b600060208284031215612f8857612f87612d58565b5b6000612f9684828501612da6565b91505092915050565b6000819050919050565b6000612fc4612fbf612fba84612d5d565b612f9f565b612d5d565b9050919050565b6000612fd682612fa9565b9050919050565b6000612fe882612fcb565b9050919050565b612ff881612fdd565b82525050565b60006020820190506130136000830184612fef565b92915050565b61302281612e31565b811461302d57600080fd5b50565b60008135905061303f81613019565b92915050565b6000806040838503121561305c5761305b612d58565b5b600061306a85828601612da6565b925050602061307b85828601613030565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ba81612e31565b82525050565b60006130cc83836130b1565b60208301905092915050565b6000602082019050919050565b60006130f082613085565b6130fa8185613090565b9350613105836130a1565b8060005b8381101561313657815161311d88826130c0565b9750613128836130d8565b925050600181019050613109565b5085935050505092915050565b6000602082019050818103600083015261315d81846130e5565b905092915050565b6000806040838503121561317c5761317b612d58565b5b600061318a85828601612da6565b925050602061319b85828601612da6565b9150509250929050565b6000806000606084860312156131be576131bd612d58565b5b60006131cc86828701613030565b93505060206131dd86828701613030565b92505060406131ee86828701613030565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323f57607f821691505b602082108103613252576132516131f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156132de578086048111156132ba576132b9613258565b5b60018516156132c95780820291505b80810290506132d785613287565b945061329e565b94509492505050565b6000826132f757600190506133b3565b8161330557600090506133b3565b816001811461331b576002811461332557613354565b60019150506133b3565b60ff84111561333757613336613258565b5b8360020a91508482111561334e5761334d613258565b5b506133b3565b5060208310610133831016604e8410600b84101617156133895782820a90508381111561338457613383613258565b5b6133b3565b6133968484846001613294565b925090508184048111156133ad576133ac613258565b5b81810290505b9392505050565b60006133c582612dbb565b91506133d083612f3b565b92506133fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846132e7565b905092915050565b600061341082612dbb565b915061341b83612dbb565b925082820261342981612dbb565b915082820484148315176134405761343f613258565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613501602683612cb1565b915061350c826134a5565b604082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613593602483612cb1565b915061359e82613537565b604082019050919050565b600060208201905081810360008301526135c281613586565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613625602283612cb1565b9150613630826135c9565b604082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613691602083612cb1565b915061369c8261365b565b602082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f7472616465206e6f742073746172746564000000000000000000000000000000600082015250565b60006136fd601183612cb1565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061378f602583612cb1565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613821602383612cb1565b915061382c826137c5565b604082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006138b3602983612cb1565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656400000000000000000000000000600082015250565b600061391f601383612cb1565b915061392a826138e9565b602082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b7f5472616e7366657220697320626967676572207468616e206d6178207478206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b60006139b1602583612cb1565b91506139bc82613955565b604082019050919050565b600060208201905081810360008301526139e0816139a4565b9050919050565b60006139f282612dbb565b91506139fd83612dbb565b9250828201905080821115613a1557613a14613258565b5b92915050565b7f596f75722062616c616e636520697320746f6f20686967680000000000000000600082015250565b6000613a51601883612cb1565b9150613a5c82613a1b565b602082019050919050565b60006020820190508181036000830152613a8081613a44565b9050919050565b7f596f752063616e6e6f7420646f206d6f7265207468616e2031207472616e736160008201527f6374696f6e2070657220626c6f636b0000000000000000000000000000000000602082015250565b6000613ae3602f83612cb1565b9150613aee82613a87565b604082019050919050565b60006020820190508181036000830152613b1281613ad6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b75602683612cb1565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613be582612dbb565b9150613bf083612dbb565b925082613c0057613bff613bab565b5b828204905092915050565b6000613c1682612dbb565b9150613c2183612dbb565b9250828203905081811115613c3957613c38613258565b5b92915050565b600081519050613c4e81612d8f565b92915050565b600060208284031215613c6a57613c69612d58565b5b6000613c7884828501613c3f565b91505092915050565b6000819050919050565b6000613ca6613ca1613c9c84613c81565b612f9f565b612dbb565b9050919050565b613cb681613c8b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cf181612d7d565b82525050565b6000613d038383613ce8565b60208301905092915050565b6000602082019050919050565b6000613d2782613cbc565b613d318185613cc7565b9350613d3c83613cd8565b8060005b83811015613d6d578151613d548882613cf7565b9750613d5f83613d0f565b925050600181019050613d40565b5085935050505092915050565b600060a082019050613d8f6000830188612e67565b613d9c6020830187613cad565b8181036040830152613dae8186613d1c565b9050613dbd6060830185612e91565b613dca6080830184612e67565b9695505050505050565b600060c082019050613de96000830189612e91565b613df66020830188612e67565b613e036040830187613cad565b613e106060830186613cad565b613e1d6080830185612e91565b613e2a60a0830184612e67565b979650505050505050565b600081519050613e4481612dc5565b92915050565b600080600060608486031215613e6357613e62612d58565b5b6000613e7186828701613e35565b9350506020613e8286828701613e35565b9250506040613e9386828701613e35565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b26c0917885dff2cba2bebe3e1cb0bd4ea119df3dffdcca9e874646bcb8d5fd364736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102555760003560e01c8063583e056811610139578063a457c2d7116100b6578063caccd7f71161007a578063caccd7f7146108cd578063d28d8852146108f8578063dd62ed3e14610923578063e3d5fdb614610960578063ea2f0b3714610989578063f2fde38b146109b25761025c565b8063a457c2d7146107d2578063a9059cbb1461080f578063b09f12661461084c578063bbde77c114610877578063c8c8ebe4146108a25761025c565b80638d2efcb9116100fd5780638d2efcb9146106fb5780638da5cb5b146107265780638ebe4fe51461075157806395d89b411461077c578063a22b557c146107a75761025c565b8063583e0568146106285780636bc87c3a1461065357806370a082311461067e578063715018a6146106bb5780638c52c6c8146106d25761025c565b80632a1cb2e8116101d25780633eaaf86b116101965780633eaaf86b14610504578063437823ec1461052f57806348de478e1461055857806349bd5a5e146105835780634e363b65146105ae5780635342acb4146105eb5761025c565b80632a1cb2e81461041b578063313ce5671461044657806332424aa31461047157806337aa30ee1461049c57806339509351146104c75761025c565b8063188b1bf111610219578063188b1bf11461034a5780631d97b7cd146103735780631e293c101461038a57806323b872dd146103b357806329d42dbd146103f05761025c565b806306fdde0314610261578063095ea7b31461028c5780630b76dbec146102c95780631694505e146102f457806318160ddd1461031f5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b506102766109db565b6040516102839190612d36565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190612df1565b610a6d565b6040516102c09190612e4c565b60405180910390f35b3480156102d557600080fd5b506102de610a8b565b6040516102eb9190612e76565b60405180910390f35b34801561030057600080fd5b50610309610a91565b6040516103169190612ea0565b60405180910390f35b34801561032b57600080fd5b50610334610ab7565b6040516103419190612e76565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612ebb565b610ac1565b005b34801561037f57600080fd5b50610388610af9565b005b34801561039657600080fd5b506103b160048036038101906103ac9190612ebb565b610b25565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612ee8565b610b5d565b6040516103e79190612e4c565b60405180910390f35b3480156103fc57600080fd5b50610405610c36565b6040516104129190612e4c565b60405180910390f35b34801561042757600080fd5b50610430610c49565b60405161043d9190612e4c565b60405180910390f35b34801561045257600080fd5b5061045b610c5c565b6040516104689190612f57565b60405180910390f35b34801561047d57600080fd5b50610486610c73565b6040516104939190612f57565b60405180910390f35b3480156104a857600080fd5b506104b1610c86565b6040516104be9190612e76565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612df1565b610c8c565b6040516104fb9190612e4c565b60405180910390f35b34801561051057600080fd5b50610519610d3f565b6040516105269190612e76565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612f72565b610d45565b005b34801561056457600080fd5b5061056d610da8565b60405161057a9190612f57565b60405180910390f35b34801561058f57600080fd5b50610598610dbb565b6040516105a59190612ea0565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612ebb565b610de1565b6040516105e29190612e4c565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612f72565b610dfb565b60405161061f9190612e4c565b60405180910390f35b34801561063457600080fd5b5061063d610e51565b60405161064a9190612ffe565b60405180910390f35b34801561065f57600080fd5b50610668610e77565b6040516106759190612f57565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612f72565b610e8a565b6040516106b29190612e76565b60405180910390f35b3480156106c757600080fd5b506106d0610ed3565b005b3480156106de57600080fd5b506106f960048036038101906106f49190613045565b610ee7565b005b34801561070757600080fd5b50610710610f4d565b60405161071d9190613143565b60405180910390f35b34801561073257600080fd5b5061073b61104e565b6040516107489190612ea0565b60405180910390f35b34801561075d57600080fd5b50610766611078565b6040516107739190612e4c565b60405180910390f35b34801561078857600080fd5b5061079161108b565b60405161079e9190612d36565b60405180910390f35b3480156107b357600080fd5b506107bc61111d565b6040516107c99190612e4c565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612df1565b611130565b6040516108069190612e4c565b60405180910390f35b34801561081b57600080fd5b5061083660048036038101906108319190612df1565b6111fd565b6040516108439190612e4c565b60405180910390f35b34801561085857600080fd5b5061086161121b565b60405161086e9190612d36565b60405180910390f35b34801561088357600080fd5b5061088c6112a9565b6040516108999190612e76565b60405180910390f35b3480156108ae57600080fd5b506108b76112af565b6040516108c49190612e76565b60405180910390f35b3480156108d957600080fd5b506108e26112b5565b6040516108ef9190612ea0565b60405180910390f35b34801561090457600080fd5b5061090d6112db565b60405161091a9190612d36565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190613165565b611369565b6040516109579190612e76565b60405180910390f35b34801561096c57600080fd5b50610987600480360381019061098291906131a5565b6113f0565b005b34801561099557600080fd5b506109b060048036038101906109ab9190612f72565b61144b565b005b3480156109be57600080fd5b506109d960048036038101906109d49190612f72565b6114ae565b005b6060600080546109ea90613227565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1690613227565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b5050505050905090565b6000610a81610a7a611531565b8484611539565b6001905092915050565b60085481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b610ac9611702565b600260009054906101000a900460ff16600a610ae591906133ba565b81610af09190613405565b60068190555050565b610b01611702565b6001601360006101000a81548160ff02191690831515021790555043601281905550565b610b2d611702565b600260009054906101000a900460ff16600a610b4991906133ba565b81610b549190613405565b60058190555050565b6000610b6a848484611780565b610c2b84610b76611531565b610c2685604051806060016040528060288152602001613e9e60289139600f60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610bdc611531565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461214d9092919063ffffffff16565b611539565b600190509392505050565b601360009054906101000a900460ff1681565b600960039054906101000a900460ff1681565b6000600260009054906101000a900460ff16905090565b600260009054906101000a900460ff1681565b60125481565b6000610d35610c99611531565b84610d3085600f6000610caa611531565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121a290919063ffffffff16565b611539565b6001905092915050565b60035481565b610d4d611702565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960019054906101000a900460ff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610deb611702565b8160088190555060019050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610edb611702565b610ee560006121b8565b565b610eef611702565b80600a60030160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060610f57611702565b6000600367ffffffffffffffff811115610f7457610f73613447565b5b604051908082528060200260200182016040528015610fa25781602001602082028036833780820191505090505b509050600960029054906101000a900460ff1681600081518110610fc957610fc8613476565b5b602002602001019015159081151581525050600960039054906101000a900460ff1681600181518110610fff57610ffe613476565b5b602002602001019015159081151581525050600960049054906101000a900460ff168160028151811061103557611034613476565b5b6020026020010190151590811515815250508091505090565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960029054906101000a900460ff1681565b60606001805461109a90613227565b80601f01602080910402602001604051908101604052809291908181526020018280546110c690613227565b80156111135780601f106110e857610100808354040283529160200191611113565b820191906000526020600020905b8154815290600101906020018083116110f657829003601f168201915b5050505050905090565b600960049054906101000a900460ff1681565b60006111f361113d611531565b846111ee85604051806060016040528060258152602001613ec660259139600f6000611167611531565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461214d9092919063ffffffff16565b611539565b6001905092915050565b600061121161120a611531565b8484611780565b6001905092915050565b6001805461122890613227565b80601f016020809104026020016040519081016040528092919081815260200182805461125490613227565b80156112a15780601f10611276576101008083540402835291602001916112a1565b820191906000526020600020905b81548152906001019060200180831161128457829003601f168201915b505050505081565b60065481565b60055481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080546112e890613227565b80601f016020809104026020016040519081016040528092919081815260200182805461131490613227565b80156113615780601f1061133657610100808354040283529160200191611361565b820191906000526020600020905b81548152906001019060200180831161134457829003601f168201915b505050505081565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113f8611702565b82600960026101000a81548160ff02191690831515021790555081600960036101000a81548160ff02191690831515021790555080600960046101000a81548160ff021916908315150217905550505050565b611453611702565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6114b6611702565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613517565b60405180910390fd5b61152e816121b8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f906135a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e9061363b565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116f59190612e76565b60405180910390a3505050565b61170a611531565b73ffffffffffffffffffffffffffffffffffffffff1661172861104e565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906136a7565b60405180910390fd5b565b8282600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146118325760011515601360009054906101000a900460ff1615151461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490613713565b60405180910390fd5b611833565b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906137a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613837565b60405180910390fd5b60008311611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b906138c9565b60405180910390fd5b600a60030160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119fe5750600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3490613935565b60405180910390fd5b60055483118015611a985750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aee5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b25906139c7565b60405180910390fd5b6000600654118015611b8a5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611be05750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c3a5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611c9e576000611c4a85610e8a565b90506006548482611c5b91906139e7565b1115611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9390613a67565b60405180910390fd5b505b60011515600a60000160009054906101000a900460ff16151503611e7957611cc461104e565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611d4d5750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611da75750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611e785743600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790613af9565b60405180910390fd5b43600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6002601254611e8891906139e7565b4311158015611ee55750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611f3f5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611fa0576001600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000600960049054906101000a900460ff169050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120555750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120635760009050612139565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036120cf57600960029054906101000a900460ff169050612138565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361213757600960039054906101000a900460ff1690505b5b5b6121458686868461227e565b505050505050565b6000838311158290612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c9190612d36565b60405180910390fd5b5082840390509392505050565b600081836121b091906139e7565b905092915050565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8061229c5761228c846122b7565b6122978484846122d2565b6122b1565b6122a5846122b7565b6122b0848484612457565b5b50505050565b60006122c230610e8a565b90506122ce81836127fe565b5050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090613b8b565b60405180910390fd5b818103600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124499190612e76565b60405180910390a350505050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590613b8b565b60405180910390fd5b60006064600960019054906101000a900460ff1660ff16846125009190613405565b61250a9190613bda565b905060006064600960009054906101000a900460ff1660ff168561252e9190613405565b6125389190613bda565b905060008183866125499190613c0b565b6125539190613c0b565b9050808403600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555082600e6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127019190612e76565b60405180910390a3600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127889190612e76565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127ed9190612e76565b60405180910390a350505050505050565b600554821061280d5760055491505b600060085483101590508080156128305750601160019054906101000a900460ff165b80156128495750601160009054906101000a900460ff16155b80156128a35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128b2576128b1836128b7565b5b505050565b6001601160006101000a81548160ff02191690831515021790555060006128e860028361295290919063ffffffff16565b905060006128ff828461296890919063ffffffff16565b9050600047905061290f8361297e565b6000612924824761296890919063ffffffff16565b90506129308382612bc1565b505050506000601160006101000a81548160ff02191690831515021790555050565b600081836129609190613bda565b905092915050565b600081836129769190613c0b565b905092915050565b6000600267ffffffffffffffff81111561299b5761299a613447565b5b6040519080825280602002602001820160405280156129c95781602001602082028036833780820191505090505b50905030816000815181106129e1576129e0613476565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aac9190613c54565b81600181518110612ac057612abf613476565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b2730601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611539565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612b8b959493929190613d7a565b600060405180830381600087803b158015612ba557600080fd5b505af1158015612bb9573d6000803e3d6000fd5b505050505050565b612bee30601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611539565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612c3a61104e565b426040518863ffffffff1660e01b8152600401612c5c96959493929190613dd4565b60606040518083038185885af1158015612c7a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c9f9190613e4a565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ce0578082015181840152602081019050612cc5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d0882612ca6565b612d128185612cb1565b9350612d22818560208601612cc2565b612d2b81612cec565b840191505092915050565b60006020820190508181036000830152612d508184612cfd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d8882612d5d565b9050919050565b612d9881612d7d565b8114612da357600080fd5b50565b600081359050612db581612d8f565b92915050565b6000819050919050565b612dce81612dbb565b8114612dd957600080fd5b50565b600081359050612deb81612dc5565b92915050565b60008060408385031215612e0857612e07612d58565b5b6000612e1685828601612da6565b9250506020612e2785828601612ddc565b9150509250929050565b60008115159050919050565b612e4681612e31565b82525050565b6000602082019050612e616000830184612e3d565b92915050565b612e7081612dbb565b82525050565b6000602082019050612e8b6000830184612e67565b92915050565b612e9a81612d7d565b82525050565b6000602082019050612eb56000830184612e91565b92915050565b600060208284031215612ed157612ed0612d58565b5b6000612edf84828501612ddc565b91505092915050565b600080600060608486031215612f0157612f00612d58565b5b6000612f0f86828701612da6565b9350506020612f2086828701612da6565b9250506040612f3186828701612ddc565b9150509250925092565b600060ff82169050919050565b612f5181612f3b565b82525050565b6000602082019050612f6c6000830184612f48565b92915050565b600060208284031215612f8857612f87612d58565b5b6000612f9684828501612da6565b91505092915050565b6000819050919050565b6000612fc4612fbf612fba84612d5d565b612f9f565b612d5d565b9050919050565b6000612fd682612fa9565b9050919050565b6000612fe882612fcb565b9050919050565b612ff881612fdd565b82525050565b60006020820190506130136000830184612fef565b92915050565b61302281612e31565b811461302d57600080fd5b50565b60008135905061303f81613019565b92915050565b6000806040838503121561305c5761305b612d58565b5b600061306a85828601612da6565b925050602061307b85828601613030565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130ba81612e31565b82525050565b60006130cc83836130b1565b60208301905092915050565b6000602082019050919050565b60006130f082613085565b6130fa8185613090565b9350613105836130a1565b8060005b8381101561313657815161311d88826130c0565b9750613128836130d8565b925050600181019050613109565b5085935050505092915050565b6000602082019050818103600083015261315d81846130e5565b905092915050565b6000806040838503121561317c5761317b612d58565b5b600061318a85828601612da6565b925050602061319b85828601612da6565b9150509250929050565b6000806000606084860312156131be576131bd612d58565b5b60006131cc86828701613030565b93505060206131dd86828701613030565b92505060406131ee86828701613030565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061323f57607f821691505b602082108103613252576132516131f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156132de578086048111156132ba576132b9613258565b5b60018516156132c95780820291505b80810290506132d785613287565b945061329e565b94509492505050565b6000826132f757600190506133b3565b8161330557600090506133b3565b816001811461331b576002811461332557613354565b60019150506133b3565b60ff84111561333757613336613258565b5b8360020a91508482111561334e5761334d613258565b5b506133b3565b5060208310610133831016604e8410600b84101617156133895782820a90508381111561338457613383613258565b5b6133b3565b6133968484846001613294565b925090508184048111156133ad576133ac613258565b5b81810290505b9392505050565b60006133c582612dbb565b91506133d083612f3b565b92506133fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846132e7565b905092915050565b600061341082612dbb565b915061341b83612dbb565b925082820261342981612dbb565b915082820484148315176134405761343f613258565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613501602683612cb1565b915061350c826134a5565b604082019050919050565b60006020820190508181036000830152613530816134f4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613593602483612cb1565b915061359e82613537565b604082019050919050565b600060208201905081810360008301526135c281613586565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613625602283612cb1565b9150613630826135c9565b604082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613691602083612cb1565b915061369c8261365b565b602082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f7472616465206e6f742073746172746564000000000000000000000000000000600082015250565b60006136fd601183612cb1565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061378f602583612cb1565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613821602383612cb1565b915061382c826137c5565b604082019050919050565b6000602082019050818103600083015261385081613814565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006138b3602983612cb1565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656400000000000000000000000000600082015250565b600061391f601383612cb1565b915061392a826138e9565b602082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b7f5472616e7366657220697320626967676572207468616e206d6178207478206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b60006139b1602583612cb1565b91506139bc82613955565b604082019050919050565b600060208201905081810360008301526139e0816139a4565b9050919050565b60006139f282612dbb565b91506139fd83612dbb565b9250828201905080821115613a1557613a14613258565b5b92915050565b7f596f75722062616c616e636520697320746f6f20686967680000000000000000600082015250565b6000613a51601883612cb1565b9150613a5c82613a1b565b602082019050919050565b60006020820190508181036000830152613a8081613a44565b9050919050565b7f596f752063616e6e6f7420646f206d6f7265207468616e2031207472616e736160008201527f6374696f6e2070657220626c6f636b0000000000000000000000000000000000602082015250565b6000613ae3602f83612cb1565b9150613aee82613a87565b604082019050919050565b60006020820190508181036000830152613b1281613ad6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613b75602683612cb1565b9150613b8082613b19565b604082019050919050565b60006020820190508181036000830152613ba481613b68565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613be582612dbb565b9150613bf083612dbb565b925082613c0057613bff613bab565b5b828204905092915050565b6000613c1682612dbb565b9150613c2183612dbb565b9250828203905081811115613c3957613c38613258565b5b92915050565b600081519050613c4e81612d8f565b92915050565b600060208284031215613c6a57613c69612d58565b5b6000613c7884828501613c3f565b91505092915050565b6000819050919050565b6000613ca6613ca1613c9c84613c81565b612f9f565b612dbb565b9050919050565b613cb681613c8b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cf181612d7d565b82525050565b6000613d038383613ce8565b60208301905092915050565b6000602082019050919050565b6000613d2782613cbc565b613d318185613cc7565b9350613d3c83613cd8565b8060005b83811015613d6d578151613d548882613cf7565b9750613d5f83613d0f565b925050600181019050613d40565b5085935050505092915050565b600060a082019050613d8f6000830188612e67565b613d9c6020830187613cad565b8181036040830152613dae8186613d1c565b9050613dbd6060830185612e91565b613dca6080830184612e67565b9695505050505050565b600060c082019050613de96000830189612e91565b613df66020830188612e67565b613e036040830187613cad565b613e106060830186613cad565b613e1d6080830185612e91565b613e2a60a0830184612e67565b979650505050505050565b600081519050613e4481612dc5565b92915050565b600080600060608486031215613e6357613e62612d58565b5b6000613e7186828701613e35565b9350506020613e8286828701613e35565b9250506040613e9386828701613e35565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b26c0917885dff2cba2bebe3e1cb0bd4ea119df3dffdcca9e874646bcb8d5fd364736f6c63430008110033
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.