Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
NFT
Overview
Max Total Supply
100,000,000 Aspen
Holders
1,311 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
55 AspenValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Aspen
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Standard Json-Input format)
/** Aspen: The Ultimate NFT Platform Have fun growing your portfolio https://aspenft.io */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; // Contract implementation contract Aspen is Context, IERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; using Address for address; // standard variables string private constant _name = "Aspen"; string private constant _symbol = "Aspen"; uint8 private constant _decimals = 18; // baseline token construction uint256 private constant MAX = ~uint256(0); uint256 private constant _totalTokenSupply = 100 * 10**6 * 10**_decimals; uint256 private _totalReflections = (MAX - (MAX % _totalTokenSupply)); uint256 private _totalTaxesReflectedToHodlers; uint256 private _totalTaxesSentToTreasury; mapping(address => uint256) private _reflectionsOwned; mapping(address => mapping(address => uint256)) private _allowances; // taxes and fees address payable public _treasuryAddress; uint256 private _currentTaxForReflections = 0; // modified depending on context of tx uint256 private _currentTaxForTreasury = 0; // modified depending on context of tx uint256 public _fixedTaxForReflections = 0; // unchanged save by owner transaction uint256 public _fixedTaxForTreasury = 0; // unchanged save by owner transaction // tax exempt addresses mapping(address => bool) private _isExcludedFromTaxes; // uniswap matters -- n.b. we are married to this particular uniswap v2 pair // contract will not survive as is and will require migration if a new pool // is stood up on sushiswap, uniswapv3, etc. address private constant uniDefault = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 public immutable uniswapV2Router; bool private _inSwap = false; address public immutable uniswapV2Pair; // minimum tokens to initiate a swap uint256 private constant _minimumTokensToSwap = 10 * 10**3 * 10**_decimals; // events event TreasuryAddressSet(address indexed _to); event ExcludedFromTaxes(address indexed _to, bool indexed _excluded); event ReflectionTaxesModified(uint256 indexed _tax); event TreasuryTaxesModified(uint256 indexed _tax); modifier lockTheSwap() { _inSwap = true; _; _inSwap = false; } constructor(address payable treasuryAddress, address router) { require( (treasuryAddress != address(0)), "Give me the treasury address" ); _treasuryAddress = treasuryAddress; _reflectionsOwned[_msgSender()] = _totalReflections; // connect to uniswap router if (router == address(0)) { router = uniDefault; } IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); // setup uniswap pair address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Pair = _uniswapV2Pair; uniswapV2Router = _uniswapV2Router; // Exclude owner, treasury, and this contract from fee _isExcludedFromTaxes[owner()] = true; _isExcludedFromTaxes[address(this)] = true; _isExcludedFromTaxes[_treasuryAddress] = true; emit Transfer(address(0), _msgSender(), _totalTokenSupply); } // recieve ETH from uniswapV2Router when swaping receive() external payable { return; } // We expose this function to modify the address where the treasuryTax goes function setTreasuryAddress(address payable treasuryAddress) external { require( _msgSender() == _treasuryAddress, "You are not the treasury address" ); require( (treasuryAddress != address(0)), "Give me the treasury address" ); address _previousTreasuryAddress = _treasuryAddress; _treasuryAddress = treasuryAddress; _isExcludedFromTaxes[treasuryAddress] = true; _isExcludedFromTaxes[_previousTreasuryAddress] = false; emit TreasuryAddressSet(treasuryAddress); } // We allow the owner to set addresses that are unaffected by taxes function excludeFromTaxes(address account, bool excluded) external onlyOwner { _isExcludedFromTaxes[account] = excluded; emit ExcludedFromTaxes(account, excluded); } // We expose these functions to be able to modify the fees and tx amounts function setReflectionsTax(uint256 tax) external onlyOwner { require(tax <= 10, "ERC20: tax out of band"); _currentTaxForReflections = tax; _fixedTaxForReflections = tax; emit ReflectionTaxesModified(tax); } function setTreasuryTax(uint256 tax) external onlyOwner { require(tax <= 10, "ERC20: tax out of band"); _currentTaxForTreasury = tax; _fixedTaxForTreasury = tax; emit TreasuryTaxesModified(tax); } // We expose these functions to be able to manual swap and send function manualSend() external onlyOwner { uint256 _contractETHBalance = address(this).balance; _sendETHToTreasury(_contractETHBalance); } function manualSwap() external onlyOwner { uint256 _contractBalance = balanceOf(address(this)); _swapTokensForETH(_contractBalance); } // public functions to do things function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } // used by smart contracts rather than users 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 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) { uint256 currentRate = _getRate(); return _totalReflections.div(currentRate); } function isExcludedFromTaxes(address account) public view returns (bool) { return _isExcludedFromTaxes[account]; } function totalTaxesSentToReflections() public view returns (uint256) { return tokensFromReflection(_totalTaxesReflectedToHodlers); } function totalTaxesSentToTreasury() public view returns (uint256) { return tokensFromReflection(_totalTaxesSentToTreasury); } function getETHBalance() public view returns (uint256 balance) { return address(this).balance; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function balanceOf(address account) public view override returns (uint256) { return tokensFromReflection(_reflectionsOwned[account]); } function reflectionFromToken( uint256 amountOfTokens, bool deductTaxForReflections ) public view returns (uint256) { require( amountOfTokens <= _totalTokenSupply, "Amount must be less than supply" ); if (!deductTaxForReflections) { (uint256 reflectionsToDebit, , , ) = _getValues(amountOfTokens); return reflectionsToDebit; } else { (, uint256 reflectionsToCredit, , ) = _getValues(amountOfTokens); return reflectionsToCredit; } } function tokensFromReflection(uint256 amountOfReflections) public view returns (uint256) { require( amountOfReflections <= _totalReflections, "ERC20: Amount too large" ); uint256 currentRate = _getRate(); return amountOfReflections.div(currentRate); } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from 0 address"); require(spender != address(0), "ERC20: approve to 0 address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } // transfer function that sets up the context so that the // _tokenTransfer function can do the accounting work // to perform the transfer function function _transfer( address sender, address recipient, uint256 amountOfTokens ) private nonReentrant { require(sender != address(0), "ERC20: transfer from 0 address"); require(recipient != address(0), "ERC20: transfer to 0 address"); require(amountOfTokens > 0, "ERC20: Transfer more than zero"); // if either side of transfer account belongs to _isExcludedFromTaxes // account then remove the fee bool takeFee = true; if (_isExcludedFromTaxes[sender] || _isExcludedFromTaxes[recipient]) { takeFee = false; } // check if we're buy side or sell side in a swap; if buy side apply // buy side taxes; if sell side then apply those taxes; duh bool buySide = false; if (sender == address(uniswapV2Pair)) { buySide = true; } // based on context set the correct fee structure if (!takeFee) { _setNoFees(); } else if (buySide) { _setBuySideFees(); } else { _setSellSideFees(); } // conduct the transfer _tokenTransfer(sender, recipient, amountOfTokens); // reset the fees for the next go around _restoreAllFees(); } // primary transfer function that does all the work function _tokenTransfer( address sender, address recipient, uint256 amountOfTokens ) private { // when treasury transfers to the contract we automatically // remove these reflections from pool such that all token hodlers // benefit prorata and the treasury's reflections are removed. // // this allows for gas effective distribution of farming profits // to be returned cleanly to all token hodlers. // // we do not emit a Transfer event here because it is not strictly // speaking a transfer due to the lack of a recipient if (sender == _treasuryAddress && recipient == address(this)) { _manualReflect(amountOfTokens); return; } // the below allows for a consolidated handling of the necessary // math to support the possible transfer+tax combinations ( uint256 reflectionsToDebit, // sender uint256 reflectionsToCredit, // recipient uint256 reflectionsToRemove, // to all the hodlers uint256 reflectionsForTreasury // to treasury ) = _getValues(amountOfTokens); // debit the correct reflections from the sender's account and credit // the correct number of reflections to the recipient's (accounting for // taxes) _reflectionsOwned[sender] = _reflectionsOwned[sender].sub( reflectionsToDebit ); _reflectionsOwned[recipient] = _reflectionsOwned[recipient].add( reflectionsToCredit ); // take taxes -- this is not a tax free zone ser _takeTreasuryTax(reflectionsForTreasury); _takeReflectionTax(reflectionsToRemove); // we potentially do any "inline" swapping after the taxes are taken // so that we know if there's balance to take. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= _minimumTokensToSwap; if (!_inSwap && overMinTokenBalance && reflectionsForTreasury != 0) { _swapTokensForETH(contractTokenBalance); } uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { _sendETHToTreasury(address(this).balance); } // let the world know emit Transfer(sender, recipient, reflectionsToCredit.div(_getRate())); } // allows for treasury to cleanly distribute earnings back to // tokenhodlers pro rata function _manualReflect(uint256 amountOfTokens) private { uint256 currentRate = _getRate(); uint256 amountOfReflections = amountOfTokens.mul(currentRate); // we remove the reflections from the treasury address and then // burn them by removing them from the reflections pool thus // reducing the denominator and "distributing" the reflections // to all hodlers pro rata _reflectionsOwned[_treasuryAddress] = _reflectionsOwned[ _treasuryAddress ].sub(amountOfReflections); _totalReflections = _totalReflections.sub(amountOfReflections); } // reflections are added to the balance of this contract and are // subsequently swapped out with the uniswap pair within the same // transaction; the resulting eth is transfered to the treasury. // // the below function is simple accounting which will not survive // to the end of the transaction as long as the totaly amount of // reflections taken by the tax are more than the _minimumTokensToSwap // // in the case where they are not more than _minimumTokensToSwap // the tokens will not be swapped due to gas concerns and will simply // accrue within the contract until the contract's Aspen balance is // more than _minimumTokensToSwap at which time the automatic swap // will occur sending eth to the treasury. function _takeTreasuryTax(uint256 reflectionsForTreasury) private { _reflectionsOwned[address(this)] = _reflectionsOwned[address(this)].add( reflectionsForTreasury ); _totalTaxesSentToTreasury = _totalTaxesSentToTreasury.add( reflectionsForTreasury ); } // reflections are "reflected" back to hodlers via a mechanism which // seeks to simply remove the amount of the tax from the total reflection // pool. since the token balance is a simple product of the amount of // reflections a hodler has in their account to the ratio of all the // reflections to the total token supply, removing reflections is a // gas efficient way of applying a benefit to all hodlers pro rata as // it lowers the denominator in the ratio thus increasing the result // of the product. in other words, by removing reflections the // numbers folks care about go up. function _takeReflectionTax(uint256 reflectionsToRemove) private { _totalReflections = _totalReflections.sub(reflectionsToRemove); _totalTaxesReflectedToHodlers = _totalTaxesReflectedToHodlers.add( reflectionsToRemove ); } // baking this in so deeply will mean if the uni v2 pool ever dries up // then the contract will effectively stop functioning and it will need // to be migrated function _swapTokensForETH(uint256 tokenAmount) private lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(_treasuryAddress), block.timestamp ); } function _sendETHToTreasury(uint256 amount) private { (bool success, ) = _treasuryAddress.call{value: amount}(""); require(success == true, "send eth to treasury failed"); } // on buy side we collect tax and apply that to reflections; there is // no tax taken for the treasury on the buy side function _setBuySideFees() private { _currentTaxForReflections = _fixedTaxForReflections; _currentTaxForTreasury = 0; } // on sell side we collect tax and apply that to the treasury account; // there is no sell side tax taken for reflections function _setSellSideFees() private { _currentTaxForReflections = 0; _currentTaxForTreasury = _fixedTaxForTreasury; } // if a tax exempt address is transfering we turn off all the taxes function _setNoFees() private { _currentTaxForReflections = 0; _currentTaxForTreasury = 0; } // once a transfer occurs we reset the taxes. this is strictly speaking // not necessary due to the construction of the transfer function which // will opinionated-ly always set the tax structure before performing // the math (in the functions below). however, for reasons of super- // stition it remains function _restoreAllFees() private { _currentTaxForReflections = _fixedTaxForReflections; _currentTaxForTreasury = _fixedTaxForTreasury; } // this function is the primary math function which calculates the // proper accounting to support a transfer based on the context of // that transfer (buy side; sell side; tax free). function _getValues(uint256 amountOfTokens) private view returns ( uint256, uint256, uint256, uint256 ) { // given tokens split those out into what goes where (reflections, // treasury, and recipient) ( uint256 tokensToTransfer, uint256 tokensForReflections, uint256 tokensForTreasury ) = _getTokenValues(amountOfTokens); // given the proper split of tokens, turn those into reflections // based on the current ratio of _tokenTokenSupply:_totalReflections uint256 currentRate = _getRate(); uint256 reflectionsTotal = amountOfTokens.mul(currentRate); uint256 reflectionsToTransfer = tokensToTransfer.mul(currentRate); uint256 reflectionsToRemove = tokensForReflections.mul(currentRate); uint256 reflectionsForTreasury = tokensForTreasury.mul(currentRate); return ( reflectionsTotal, reflectionsToTransfer, reflectionsToRemove, reflectionsForTreasury ); } // the golden and necssary function that allows us to calculate the // ratio of total token supply to total reflections on which the // entire token accounting infrastructure resides function _getRate() private view returns (uint256) { return _totalReflections.div(_totalTokenSupply); } // the below function calculates where tokens needs to go based on the // inputted amount of tokens. n.b., this function does not work in // reflections, those typically happen later in the processing when the // token distribution calculated by this function is turned to reflections // based on the golden ratio of total token supply to total reflections. function _getTokenValues(uint256 amountOfTokens) private view returns ( uint256, uint256, uint256 ) { uint256 tokensForReflections = amountOfTokens .mul(_currentTaxForReflections) .div(100); uint256 tokensForTreasury = amountOfTokens .mul(_currentTaxForTreasury) .div(100); uint256 tokensToTransfer = amountOfTokens.sub(tokensForReflections).sub( tokensForTreasury ); return (tokensToTransfer, tokensForReflections, tokensForTreasury); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
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; }
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; }
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); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"treasuryAddress","type":"address"},{"internalType":"address","name":"router","type":"address"}],"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":"_to","type":"address"},{"indexed":true,"internalType":"bool","name":"_excluded","type":"bool"}],"name":"ExcludedFromTaxes","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":"uint256","name":"_tax","type":"uint256"}],"name":"ReflectionTaxesModified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"}],"name":"TreasuryAddressSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"TreasuryTaxesModified","type":"event"},{"inputs":[],"name":"_fixedTaxForReflections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fixedTaxForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryAddress","outputs":[{"internalType":"address payable","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":[],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromTaxes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"},{"internalType":"bool","name":"deductTaxForReflections","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setReflectionsTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setTreasuryTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfReflections","type":"uint256"}],"name":"tokensFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxesSentToReflections","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxesSentToTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052620000126012600a6200050b565b62000022906305f5e10062000523565b620000309060001962000545565b6200003e9060001962000568565b600255600060088190556009819055600a819055600b55600d805460ff191690553480156200006c57600080fd5b5060405162002189380380620021898339810160408190526200008f916200059b565b6200009a33620003a6565b600180556001600160a01b038216620000f95760405162461bcd60e51b815260206004820152601c60248201527f47697665206d6520746865207472656173757279206164647265737300000000604482015260640160405180910390fd5b600780546001600160a01b0319166001600160a01b03841617905560025460056000620001233390565b6001600160a01b0390811682526020820192909252604001600020919091558116620001605750737a250d5630b4cf539739df2c5dacb4c659f2488d5b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cc9190620005da565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002409190620005da565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200028e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b49190620005da565b6001600160a01b0380821660a052831660805290506001600c6000620002e26000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600c909352818320805485166001908117909155600754909116835291208054909216179055620003413390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200037b6012600a6200050b565b6200038b906305f5e10062000523565b60405190815260200160405180910390a350505050620005fa565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200044d578160001904821115620004315762000431620003f6565b808516156200043f57918102915b93841c939080029062000411565b509250929050565b600082620004665750600162000505565b81620004755750600062000505565b81600181146200048e57600281146200049957620004b9565b600191505062000505565b60ff841115620004ad57620004ad620003f6565b50506001821b62000505565b5060208310610133831016604e8410600b8410161715620004de575081810a62000505565b620004ea83836200040c565b8060001904821115620005015762000501620003f6565b0290505b92915050565b60006200051c60ff84168362000455565b9392505050565b6000816000190483118215151615620005405762000540620003f6565b500290565b6000826200056357634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200057d576200057d620003f6565b500390565b6001600160a01b03811681146200059857600080fd5b50565b60008060408385031215620005af57600080fd5b8251620005bc8162000582565b6020840151909250620005cf8162000582565b809150509250929050565b600060208284031215620005ed57600080fd5b81516200051c8162000582565b60805160a051611b4d6200063c600039600081816103c30152610fb6015260008181610267015281816111640152818161121d015261125c0152611b4d6000f3fe6080604052600436106101dc5760003560e01c80636e94729811610102578063a457c2d711610095578063dc34cabe11610064578063dc34cabe1461056b578063dd62ed3e14610580578063f2fde38b146105c6578063f4293890146105e657600080fd5b8063a457c2d7146104f5578063a9059cbb14610515578063cd6840d514610535578063d6010f451461055557600080fd5b806388915725116100d157806388915725146104a25780638da5cb5b146104c257806395d89b41146101e85780639946f6b1146104e057600080fd5b80636e9472981461043a57806370a082311461044d578063715018a61461046d5780638743da6d1461048257600080fd5b806327b07d751161017a57806349bd5a5e1161014957806349bd5a5e146103b157806351bc3c85146103e557806356d91e16146103fa5780636605bfda1461041a57600080fd5b806327b07d751461031c578063313ce5671461035557806339509351146103715780634549b0391461039157600080fd5b806318160ddd116101b657806318160ddd146102a1578063222c2576146102c457806322603661146102da57806323b872dd146102fc57600080fd5b806306fdde03146101e8578063095ea7b3146102255780631694505e1461025557600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b50604080518082018252600581526420b9b832b760d91b6020820152905161021c91906116c5565b60405180910390f35b34801561023157600080fd5b5061024561024036600461172f565b6105fb565b604051901515815260200161021c565b34801561026157600080fd5b506102897f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161021c565b3480156102ad57600080fd5b506102b6610612565b60405190815260200161021c565b3480156102d057600080fd5b506102b6600a5481565b3480156102e657600080fd5b506102fa6102f5366004611770565b610633565b005b34801561030857600080fd5b506102456103173660046117a5565b6106ba565b34801561032857600080fd5b506102456103373660046117e6565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561036157600080fd5b506040516012815260200161021c565b34801561037d57600080fd5b5061024561038c36600461172f565b610723565b34801561039d57600080fd5b506102b66103ac366004611803565b610759565b3480156103bd57600080fd5b506102897f000000000000000000000000000000000000000000000000000000000000000081565b3480156103f157600080fd5b506102fa6107f9565b34801561040657600080fd5b506102b6610415366004611826565b61083c565b34801561042657600080fd5b506102fa6104353660046117e6565b6108ad565b34801561044657600080fd5b50476102b6565b34801561045957600080fd5b506102b66104683660046117e6565b6109e0565b34801561047957600080fd5b506102fa610a02565b34801561048e57600080fd5b50600754610289906001600160a01b031681565b3480156104ae57600080fd5b506102fa6104bd366004611826565b610a38565b3480156104ce57600080fd5b506000546001600160a01b0316610289565b3480156104ec57600080fd5b506102b6610ae4565b34801561050157600080fd5b5061024561051036600461172f565b610af6565b34801561052157600080fd5b5061024561053036600461172f565b610b45565b34801561054157600080fd5b506102fa610550366004611826565b610b52565b34801561056157600080fd5b506102b6600b5481565b34801561057757600080fd5b506102b6610bfe565b34801561058c57600080fd5b506102b661059b36600461183f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156105d257600080fd5b506102fa6105e13660046117e6565b610c0b565b3480156105f257600080fd5b506102fa610ca3565b6000610608338484610cd7565b5060015b92915050565b60008061061d610de4565b60025490915061062d9082610e08565b91505090565b6000546001600160a01b031633146106665760405162461bcd60e51b815260040161065d90611878565b60405180910390fd5b6001600160a01b0382166000818152600c6020526040808220805460ff191685151590811790915590519092917f84eae58ecaa0936ac0ac6f48197dcb0114f4d02a577296f82aa5c7d102118f9191a35050565b60006106c7848484610e14565b610719843361071485604051806060016040528060288152602001611acb602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190611057565b610cd7565b5060019392505050565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916106089185906107149086611083565b60006107676012600a6119a7565b610775906305f5e1006119b6565b8311156107c45760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161065d565b816107e15760006107d48461108f565b5091935061060c92505050565b60006107ec8461108f565b5090935061060c92505050565b6000546001600160a01b031633146108235760405162461bcd60e51b815260040161065d90611878565b600061082e306109e0565b905061083981611100565b50565b60006002548211156108905760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c61726765000000000000000000604482015260640161065d565b600061089a610de4565b90506108a68382610e08565b9392505050565b6007546001600160a01b0316336001600160a01b0316146109105760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f74207468652074726561737572792061646472657373604482015260640161065d565b6001600160a01b0381166109665760405162461bcd60e51b815260206004820152601c60248201527f47697665206d6520746865207472656173757279206164647265737300000000604482015260640161065d565b600780546001600160a01b038381166001600160a01b0319831681179093556000838152600c6020526040808220805460ff1990811660011790915592909316808252838220805490931690925591519092917f5cc4bdb402e519d4921d6bfaca9c17c16ea3a8e658ff5accd29e6080635562ce91a25050565b6001600160a01b03811660009081526005602052604081205461060c9061083c565b6000546001600160a01b03163314610a2c5760405162461bcd60e51b815260040161065d90611878565b610a3660006112de565b565b6000546001600160a01b03163314610a625760405162461bcd60e51b815260040161065d90611878565b600a811115610aac5760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b604482015260640161065d565b6008819055600a81905560405181907fd743ffb731bc418afcb6d43751e3746c08c4eebe29c741d05b94f400748d7dba90600090a250565b6000610af160035461083c565b905090565b6000610608338461071485604051806060016040528060258152602001611af3602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190611057565b6000610608338484610e14565b6000546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161065d90611878565b600a811115610bc65760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b604482015260640161065d565b6009819055600b81905560405181907fe1dc6ba9bbd3531416b928f9bd6c86ef164988f0f1db71b04c5c1b4f975dd8c690600090a250565b6000610af160045461083c565b6000546001600160a01b03163314610c355760405162461bcd60e51b815260040161065d90611878565b6001600160a01b038116610c9a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065d565b610839816112de565b6000546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161065d90611878565b476108398161132e565b6001600160a01b038316610d2d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d20302061646472657373000000604482015260640161065d565b6001600160a01b038216610d835760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f203020616464726573730000000000604482015260640161065d565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610af1610df56012600a6119a7565b610e03906305f5e1006119b6565b600254905b60006108a682846119d5565b600260015403610e665760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161065d565b60026001556001600160a01b038316610ec15760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d203020616464726573730000604482015260640161065d565b6001600160a01b038216610f175760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f2030206164647265737300000000604482015260640161065d565b60008111610f675760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f0000604482015260640161065d565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610fa957506001600160a01b0383166000908152600c602052604090205460ff165b15610fb2575060005b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603610ff1575060015b8161100a5761100560006008819055600955565b611030565b801561102057611005600a546008556000600955565b6110306000600855600b54600955565b61103b8585856113db565b61104c600a54600855600b54600955565b505060018055505050565b6000818484111561107b5760405162461bcd60e51b815260040161065d91906116c5565b505050900390565b60006108a682846119f7565b60008060008060008060006110a388611573565b92509250925060006110b3610de4565b905060006110c18a836115dd565b905060006110cf86846115dd565b905060006110dd86856115dd565b905060006110eb86866115dd565b939d929c50909a509198509650505050505050565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061114257611142611a0f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e49190611a25565b816001815181106111f7576111f7611a0f565b60200260200101906001600160a01b031690816001600160a01b031681525050611242307f000000000000000000000000000000000000000000000000000000000000000084610cd7565b60075460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac9479261129e928792600092889291909116904290600401611a42565b600060405180830381600087803b1580156112b857600080fd5b505af11580156112cc573d6000803e3d6000fd5b5050600d805460ff1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6007546040516000916001600160a01b03169083908381818185875af1925050503d806000811461137b576040519150601f19603f3d011682016040523d82523d6000602084013e611380565b606091505b50909150506001811515146113d75760405162461bcd60e51b815260206004820152601b60248201527f73656e642065746820746f207472656173757279206661696c65640000000000604482015260640161065d565b5050565b6007546001600160a01b03848116911614801561140057506001600160a01b03821630145b156114135761140e816115e9565b505050565b6000806000806114228561108f565b6001600160a01b038b166000908152600560205260409020549397509195509350915061144f9085611659565b6001600160a01b03808916600090815260056020526040808220939093559088168152205461147e9084611083565b6001600160a01b0387166000908152600560205260409020556114a081611665565b6114a9826116a2565b60006114b4306109e0565b905060006114c46012600a6119a7565b6114d0906127106119b6565b600d5490831015915060ff161580156114e65750805b80156114f157508215155b156114ff576114ff82611100565b47801561150f5761150f4761132e565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61155661154f610de4565b8a90610e08565b60405190815260200160405180910390a350505050505050505050565b6000806000806115996064611593600854886115dd90919063ffffffff16565b90610e08565b905060006115b76064611593600954896115dd90919063ffffffff16565b905060006115cf826115c98986611659565b90611659565b979296509094509092505050565b60006108a682846119b6565b60006115f3610de4565b9050600061160183836115dd565b6007546001600160a01b03166000908152600560205260409020549091506116299082611659565b6007546001600160a01b03166000908152600560205260409020556002546116519082611659565b600255505050565b60006108a68284611ab3565b3060009081526005602052604090205461167f9082611083565b3060009081526005602052604090205560045461169c9082611083565b60045550565b6002546116af9082611659565b6002556003546116bf9082611083565b60035550565b600060208083528351808285015260005b818110156116f2578581018301518582016040015282016116d6565b81811115611704576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461083957600080fd5b6000806040838503121561174257600080fd5b823561174d8161171a565b946020939093013593505050565b8035801515811461176b57600080fd5b919050565b6000806040838503121561178357600080fd5b823561178e8161171a565b915061179c6020840161175b565b90509250929050565b6000806000606084860312156117ba57600080fd5b83356117c58161171a565b925060208401356117d58161171a565b929592945050506040919091013590565b6000602082840312156117f857600080fd5b81356108a68161171a565b6000806040838503121561181657600080fd5b8235915061179c6020840161175b565b60006020828403121561183857600080fd5b5035919050565b6000806040838503121561185257600080fd5b823561185d8161171a565b9150602083013561186d8161171a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156118fe5781600019048211156118e4576118e46118ad565b808516156118f157918102915b93841c93908002906118c8565b509250929050565b6000826119155750600161060c565b816119225750600061060c565b816001811461193857600281146119425761195e565b600191505061060c565b60ff841115611953576119536118ad565b50506001821b61060c565b5060208310610133831016604e8410600b8410161715611981575081810a61060c565b61198b83836118c3565b806000190482111561199f5761199f6118ad565b029392505050565b60006108a660ff841683611906565b60008160001904831182151516156119d0576119d06118ad565b500290565b6000826119f257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611a0a57611a0a6118ad565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a3757600080fd5b81516108a68161171a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a925784516001600160a01b031683529383019391830191600101611a6d565b50506001600160a01b03969096166060850152505050608001529392505050565b600082821015611ac557611ac56118ad565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dddaaf17ee77f05e7d412f8db9f6bdbb1e244dbd00110c3fdcb2ac69b0990cc864736f6c634300080d0033000000000000000000000000b5ba28879946d98b4ad63e0e0a53ff2376580ac70000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c80636e94729811610102578063a457c2d711610095578063dc34cabe11610064578063dc34cabe1461056b578063dd62ed3e14610580578063f2fde38b146105c6578063f4293890146105e657600080fd5b8063a457c2d7146104f5578063a9059cbb14610515578063cd6840d514610535578063d6010f451461055557600080fd5b806388915725116100d157806388915725146104a25780638da5cb5b146104c257806395d89b41146101e85780639946f6b1146104e057600080fd5b80636e9472981461043a57806370a082311461044d578063715018a61461046d5780638743da6d1461048257600080fd5b806327b07d751161017a57806349bd5a5e1161014957806349bd5a5e146103b157806351bc3c85146103e557806356d91e16146103fa5780636605bfda1461041a57600080fd5b806327b07d751461031c578063313ce5671461035557806339509351146103715780634549b0391461039157600080fd5b806318160ddd116101b657806318160ddd146102a1578063222c2576146102c457806322603661146102da57806323b872dd146102fc57600080fd5b806306fdde03146101e8578063095ea7b3146102255780631694505e1461025557600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b50604080518082018252600581526420b9b832b760d91b6020820152905161021c91906116c5565b60405180910390f35b34801561023157600080fd5b5061024561024036600461172f565b6105fb565b604051901515815260200161021c565b34801561026157600080fd5b506102897f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161021c565b3480156102ad57600080fd5b506102b6610612565b60405190815260200161021c565b3480156102d057600080fd5b506102b6600a5481565b3480156102e657600080fd5b506102fa6102f5366004611770565b610633565b005b34801561030857600080fd5b506102456103173660046117a5565b6106ba565b34801561032857600080fd5b506102456103373660046117e6565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561036157600080fd5b506040516012815260200161021c565b34801561037d57600080fd5b5061024561038c36600461172f565b610723565b34801561039d57600080fd5b506102b66103ac366004611803565b610759565b3480156103bd57600080fd5b506102897f000000000000000000000000725051a7500822ae521274332767a88d2884117d81565b3480156103f157600080fd5b506102fa6107f9565b34801561040657600080fd5b506102b6610415366004611826565b61083c565b34801561042657600080fd5b506102fa6104353660046117e6565b6108ad565b34801561044657600080fd5b50476102b6565b34801561045957600080fd5b506102b66104683660046117e6565b6109e0565b34801561047957600080fd5b506102fa610a02565b34801561048e57600080fd5b50600754610289906001600160a01b031681565b3480156104ae57600080fd5b506102fa6104bd366004611826565b610a38565b3480156104ce57600080fd5b506000546001600160a01b0316610289565b3480156104ec57600080fd5b506102b6610ae4565b34801561050157600080fd5b5061024561051036600461172f565b610af6565b34801561052157600080fd5b5061024561053036600461172f565b610b45565b34801561054157600080fd5b506102fa610550366004611826565b610b52565b34801561056157600080fd5b506102b6600b5481565b34801561057757600080fd5b506102b6610bfe565b34801561058c57600080fd5b506102b661059b36600461183f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156105d257600080fd5b506102fa6105e13660046117e6565b610c0b565b3480156105f257600080fd5b506102fa610ca3565b6000610608338484610cd7565b5060015b92915050565b60008061061d610de4565b60025490915061062d9082610e08565b91505090565b6000546001600160a01b031633146106665760405162461bcd60e51b815260040161065d90611878565b60405180910390fd5b6001600160a01b0382166000818152600c6020526040808220805460ff191685151590811790915590519092917f84eae58ecaa0936ac0ac6f48197dcb0114f4d02a577296f82aa5c7d102118f9191a35050565b60006106c7848484610e14565b610719843361071485604051806060016040528060288152602001611acb602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190611057565b610cd7565b5060019392505050565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916106089185906107149086611083565b60006107676012600a6119a7565b610775906305f5e1006119b6565b8311156107c45760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161065d565b816107e15760006107d48461108f565b5091935061060c92505050565b60006107ec8461108f565b5090935061060c92505050565b6000546001600160a01b031633146108235760405162461bcd60e51b815260040161065d90611878565b600061082e306109e0565b905061083981611100565b50565b60006002548211156108905760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c61726765000000000000000000604482015260640161065d565b600061089a610de4565b90506108a68382610e08565b9392505050565b6007546001600160a01b0316336001600160a01b0316146109105760405162461bcd60e51b815260206004820181905260248201527f596f7520617265206e6f74207468652074726561737572792061646472657373604482015260640161065d565b6001600160a01b0381166109665760405162461bcd60e51b815260206004820152601c60248201527f47697665206d6520746865207472656173757279206164647265737300000000604482015260640161065d565b600780546001600160a01b038381166001600160a01b0319831681179093556000838152600c6020526040808220805460ff1990811660011790915592909316808252838220805490931690925591519092917f5cc4bdb402e519d4921d6bfaca9c17c16ea3a8e658ff5accd29e6080635562ce91a25050565b6001600160a01b03811660009081526005602052604081205461060c9061083c565b6000546001600160a01b03163314610a2c5760405162461bcd60e51b815260040161065d90611878565b610a3660006112de565b565b6000546001600160a01b03163314610a625760405162461bcd60e51b815260040161065d90611878565b600a811115610aac5760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b604482015260640161065d565b6008819055600a81905560405181907fd743ffb731bc418afcb6d43751e3746c08c4eebe29c741d05b94f400748d7dba90600090a250565b6000610af160035461083c565b905090565b6000610608338461071485604051806060016040528060258152602001611af3602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190611057565b6000610608338484610e14565b6000546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161065d90611878565b600a811115610bc65760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b604482015260640161065d565b6009819055600b81905560405181907fe1dc6ba9bbd3531416b928f9bd6c86ef164988f0f1db71b04c5c1b4f975dd8c690600090a250565b6000610af160045461083c565b6000546001600160a01b03163314610c355760405162461bcd60e51b815260040161065d90611878565b6001600160a01b038116610c9a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065d565b610839816112de565b6000546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161065d90611878565b476108398161132e565b6001600160a01b038316610d2d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d20302061646472657373000000604482015260640161065d565b6001600160a01b038216610d835760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f203020616464726573730000000000604482015260640161065d565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610af1610df56012600a6119a7565b610e03906305f5e1006119b6565b600254905b60006108a682846119d5565b600260015403610e665760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161065d565b60026001556001600160a01b038316610ec15760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d203020616464726573730000604482015260640161065d565b6001600160a01b038216610f175760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f2030206164647265737300000000604482015260640161065d565b60008111610f675760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f0000604482015260640161065d565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610fa957506001600160a01b0383166000908152600c602052604090205460ff165b15610fb2575060005b60007f000000000000000000000000725051a7500822ae521274332767a88d2884117d6001600160a01b0316856001600160a01b031603610ff1575060015b8161100a5761100560006008819055600955565b611030565b801561102057611005600a546008556000600955565b6110306000600855600b54600955565b61103b8585856113db565b61104c600a54600855600b54600955565b505060018055505050565b6000818484111561107b5760405162461bcd60e51b815260040161065d91906116c5565b505050900390565b60006108a682846119f7565b60008060008060008060006110a388611573565b92509250925060006110b3610de4565b905060006110c18a836115dd565b905060006110cf86846115dd565b905060006110dd86856115dd565b905060006110eb86866115dd565b939d929c50909a509198509650505050505050565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061114257611142611a0f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e49190611a25565b816001815181106111f7576111f7611a0f565b60200260200101906001600160a01b031690816001600160a01b031681525050611242307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cd7565b60075460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac9479261129e928792600092889291909116904290600401611a42565b600060405180830381600087803b1580156112b857600080fd5b505af11580156112cc573d6000803e3d6000fd5b5050600d805460ff1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6007546040516000916001600160a01b03169083908381818185875af1925050503d806000811461137b576040519150601f19603f3d011682016040523d82523d6000602084013e611380565b606091505b50909150506001811515146113d75760405162461bcd60e51b815260206004820152601b60248201527f73656e642065746820746f207472656173757279206661696c65640000000000604482015260640161065d565b5050565b6007546001600160a01b03848116911614801561140057506001600160a01b03821630145b156114135761140e816115e9565b505050565b6000806000806114228561108f565b6001600160a01b038b166000908152600560205260409020549397509195509350915061144f9085611659565b6001600160a01b03808916600090815260056020526040808220939093559088168152205461147e9084611083565b6001600160a01b0387166000908152600560205260409020556114a081611665565b6114a9826116a2565b60006114b4306109e0565b905060006114c46012600a6119a7565b6114d0906127106119b6565b600d5490831015915060ff161580156114e65750805b80156114f157508215155b156114ff576114ff82611100565b47801561150f5761150f4761132e565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61155661154f610de4565b8a90610e08565b60405190815260200160405180910390a350505050505050505050565b6000806000806115996064611593600854886115dd90919063ffffffff16565b90610e08565b905060006115b76064611593600954896115dd90919063ffffffff16565b905060006115cf826115c98986611659565b90611659565b979296509094509092505050565b60006108a682846119b6565b60006115f3610de4565b9050600061160183836115dd565b6007546001600160a01b03166000908152600560205260409020549091506116299082611659565b6007546001600160a01b03166000908152600560205260409020556002546116519082611659565b600255505050565b60006108a68284611ab3565b3060009081526005602052604090205461167f9082611083565b3060009081526005602052604090205560045461169c9082611083565b60045550565b6002546116af9082611659565b6002556003546116bf9082611083565b60035550565b600060208083528351808285015260005b818110156116f2578581018301518582016040015282016116d6565b81811115611704576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461083957600080fd5b6000806040838503121561174257600080fd5b823561174d8161171a565b946020939093013593505050565b8035801515811461176b57600080fd5b919050565b6000806040838503121561178357600080fd5b823561178e8161171a565b915061179c6020840161175b565b90509250929050565b6000806000606084860312156117ba57600080fd5b83356117c58161171a565b925060208401356117d58161171a565b929592945050506040919091013590565b6000602082840312156117f857600080fd5b81356108a68161171a565b6000806040838503121561181657600080fd5b8235915061179c6020840161175b565b60006020828403121561183857600080fd5b5035919050565b6000806040838503121561185257600080fd5b823561185d8161171a565b9150602083013561186d8161171a565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156118fe5781600019048211156118e4576118e46118ad565b808516156118f157918102915b93841c93908002906118c8565b509250929050565b6000826119155750600161060c565b816119225750600061060c565b816001811461193857600281146119425761195e565b600191505061060c565b60ff841115611953576119536118ad565b50506001821b61060c565b5060208310610133831016604e8410600b8410161715611981575081810a61060c565b61198b83836118c3565b806000190482111561199f5761199f6118ad565b029392505050565b60006108a660ff841683611906565b60008160001904831182151516156119d0576119d06118ad565b500290565b6000826119f257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611a0a57611a0a6118ad565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611a3757600080fd5b81516108a68161171a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a925784516001600160a01b031683529383019391830191600101611a6d565b50506001600160a01b03969096166060850152505050608001529392505050565b600082821015611ac557611ac56118ad565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220dddaaf17ee77f05e7d412f8db9f6bdbb1e244dbd00110c3fdcb2ac69b0990cc864736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b5ba28879946d98b4ad63e0e0a53ff2376580ac70000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : treasuryAddress (address): 0xB5ba28879946D98b4aD63E0E0a53Ff2376580aC7
Arg [1] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b5ba28879946d98b4ad63e0e0a53ff2376580ac7
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
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.