Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
1,000,000,000,000 ACYC
Holders
3,331 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$322,010.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
241,618,122.654159568376949868 ACYCValue
$77.80 ( ~0.0308510841704726 Eth) [0.0242%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AllCoinsYieldCapital
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
/** All Coins Yield Capital: $ACYC - The Meme Coin Index - You aim for one moon shot, we grab them all. Tokenomics: - Buy side taxes: - 10% of each buy goes to reflections. - Sell side taxes: - 5% of each sell to our proprietary trading algorithm; and - 5% to the liquidity pool. - You do the marketing Distribution of profits from farming: - 50% reflected back to token holders. - 35% reflected back to farming pool. - 15% to team and advisors. Website: https://acy.capital Telegram: https://t.me/ACYCapital Twitter: https://twitter.com/ACYCapital Medium: https://acycapital.medium.com */ // 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/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 AllCoinsYieldCapital is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; // standard variables string private _name = "AllCoinsYieldCapital"; string private _symbol = "ACYC"; uint8 private _decimals = 18; // baseline token construction uint256 private constant MAX = ~uint256(0); uint256 private _totalTokenSupply = 1 * 10**12 * 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 = 10; // modified depending on context of tx uint256 private _currentTaxForTreasury = 10; // modified depending on context of tx uint256 public _fixedTaxForReflections = 10; // unchanged save by owner transaction uint256 public _fixedTaxForTreasury = 10; // 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 uniDefault = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 public immutable uniswapV2Router; bool private _inSwap = false; address public immutable uniswapV2Pair; // minimum tokens to initiate a swap uint256 private _minimumTokensToSwap = 10 * 10**3 * 10**_decimals; 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 cannot call this"); require( (treasuryAddress != address(0)), "Give me the treasury address" ); address _previousTreasuryAddress = _treasuryAddress; _treasuryAddress = treasuryAddress; _isExcludedFromTaxes[treasuryAddress] = true; _isExcludedFromTaxes[_previousTreasuryAddress] = false; } // We allow the owner to set addresses that are unaffected by taxes function excludeFromTaxes(address account, bool excluded) external onlyOwner { _isExcludedFromTaxes[account] = excluded; } // We expose these functions to be able to modify the fees and tx amounts function setReflectionsTax(uint256 tax) external onlyOwner { require(tax >= 0 && tax <= 10, "ERC20: tax out of band"); _currentTaxForReflections = tax; _fixedTaxForReflections = tax; } function setTreasuryTax(uint256 tax) external onlyOwner { require(tax >= 0 && tax <= 10, "ERC20: tax out of band"); _currentTaxForTreasury = tax; _fixedTaxForTreasury = 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 { 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); // 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); } // 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 ); // 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 acyc 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 { _treasuryAddress.transfer(amount); } // 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.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
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":"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":"_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
610100604052601460c08190527f416c6c436f696e735969656c644361706974616c00000000000000000000000060e0908152620000419160019190620004a3565b50604080518082019091526004808252634143594360e01b60209092019182526200006f91600291620004a3565b506003805460ff191660129081179091556200008d90600a6200065e565b6200009e9064e8d4a5100062000676565b6004819055620000b19060001962000698565b620000bf90600019620006bb565b600555600a600b819055600c819055600d819055600e819055601080546001600160a81b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055600354620001139160ff91909116906200065e565b620001219061271062000676565b6011553480156200013157600080fd5b506040516200214d3803806200214d8339810160408190526200015491620006ee565b6200015f3362000453565b6001600160a01b038216620001ba5760405162461bcd60e51b815260206004820152601c60248201527f47697665206d6520746865207472656173757279206164647265737300000000604482015260640160405180910390fd5b600a80546001600160a01b0319166001600160a01b03841617905560055460086000620001e43390565b6001600160a01b03908116825260208201929092526040016000209190915581166200021857506010546001600160a01b03165b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028491906200072d565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f891906200072d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000346573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036c91906200072d565b6001600160a01b0380821660a052831660805290506001600f60006200039a6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600f909352818320805485166001908117909155600a54909116835291208054909216179055620003f93390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200044191815260200190565b60405180910390a3505050506200078a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620004b1906200074d565b90600052602060002090601f016020900481019282620004d5576000855562000520565b82601f10620004f057805160ff191683800117855562000520565b8280016001018555821562000520579182015b828111156200052057825182559160200191906001019062000503565b506200052e92915062000532565b5090565b5b808211156200052e576000815560010162000533565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005a057816000190482111562000584576200058462000549565b808516156200059257918102915b93841c939080029062000564565b509250929050565b600082620005b95750600162000658565b81620005c85750600062000658565b8160018114620005e15760028114620005ec576200060c565b600191505062000658565b60ff84111562000600576200060062000549565b50506001821b62000658565b5060208310610133831016604e8410600b841016171562000631575081810a62000658565b6200063d83836200055f565b806000190482111562000654576200065462000549565b0290505b92915050565b60006200066f60ff841683620005a8565b9392505050565b600081600019048311821515161562000693576200069362000549565b500290565b600082620006b657634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620006d057620006d062000549565b500390565b6001600160a01b0381168114620006eb57600080fd5b50565b600080604083850312156200070257600080fd5b82516200070f81620006d5565b60208401519092506200072281620006d5565b809150509250929050565b6000602082840312156200074057600080fd5b81516200066f81620006d5565b600181811c908216806200076257607f821691505b602082108114156200078457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611981620007cc600039600081816103b70152610f2c015260008181610255015281816110dd0152818161119601526111d501526119816000f3fe6080604052600436106101dc5760003560e01c80636e94729811610102578063a457c2d711610095578063dc34cabe11610064578063dc34cabe14610574578063dd62ed3e14610589578063f2fde38b146105cf578063f4293890146105ef57600080fd5b8063a457c2d7146104fe578063a9059cbb1461051e578063cd6840d51461053e578063d6010f451461055e57600080fd5b806388915725116100d157806388915725146104965780638da5cb5b146104b657806395d89b41146104d45780639946f6b1146104e957600080fd5b80636e9472981461042e57806370a0823114610441578063715018a6146104615780638743da6d1461047657600080fd5b806327b07d751161017a57806349bd5a5e1161014957806349bd5a5e146103a557806351bc3c85146103d957806356d91e16146103ee5780636605bfda1461040e57600080fd5b806327b07d751461030a578063313ce5671461034357806339509351146103655780634549b0391461038557600080fd5b806318160ddd116101b657806318160ddd1461028f578063222c2576146102b257806322603661146102c857806323b872dd146102ea57600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610604565b60405161020a91906115b1565b60405180910390f35b34801561021f57600080fd5b5061023361022e36600461161b565b610696565b604051901515815260200161020a565b34801561024f57600080fd5b506102777f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161020a565b34801561029b57600080fd5b506102a46106ad565b60405190815260200161020a565b3480156102be57600080fd5b506102a4600d5481565b3480156102d457600080fd5b506102e86102e336600461165c565b6106ce565b005b3480156102f657600080fd5b50610233610305366004611691565b61072c565b34801561031657600080fd5b506102336103253660046116d2565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561034f57600080fd5b5060035460405160ff909116815260200161020a565b34801561037157600080fd5b5061023361038036600461161b565b610795565b34801561039157600080fd5b506102a46103a03660046116ef565b6107cb565b3480156103b157600080fd5b506102777f000000000000000000000000000000000000000000000000000000000000000081565b3480156103e557600080fd5b506102e8610854565b3480156103fa57600080fd5b506102a4610409366004611712565b610897565b34801561041a57600080fd5b506102e86104293660046116d2565b610908565b34801561043a57600080fd5b50476102a4565b34801561044d57600080fd5b506102a461045c3660046116d2565b610a05565b34801561046d57600080fd5b506102e8610a27565b34801561048257600080fd5b50600a54610277906001600160a01b031681565b3480156104a257600080fd5b506102e86104b1366004611712565b610a5d565b3480156104c257600080fd5b506000546001600160a01b0316610277565b3480156104e057600080fd5b506101fd610adb565b3480156104f557600080fd5b506102a4610aea565b34801561050a57600080fd5b5061023361051936600461161b565b610afc565b34801561052a57600080fd5b5061023361053936600461161b565b610b4b565b34801561054a57600080fd5b506102e8610559366004611712565b610b58565b34801561056a57600080fd5b506102a4600e5481565b34801561058057600080fd5b506102a4610bd6565b34801561059557600080fd5b506102a46105a436600461172b565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b3480156105db57600080fd5b506102e86105ea3660046116d2565b610be3565b3480156105fb57600080fd5b506102e8610c7b565b60606001805461061390611764565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90611764565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a3338484610caf565b5060015b92915050565b6000806106b8610dbc565b6005549091506106c89082610dd5565b91505090565b6000546001600160a01b031633146107015760405162461bcd60e51b81526004016106f89061179f565b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000610739848484610de1565b61078b8433610786856040518060600160405280602881526020016118ff602891396001600160a01b038a1660009081526009602090815260408083203384529091529020549190610fca565b610caf565b5060019392505050565b3360008181526009602090815260408083206001600160a01b038716845290915281205490916106a39185906107869086610ff6565b600060045483111561081f5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016106f8565b8161083c57600061082f84611002565b509193506106a792505050565b600061084784611002565b509093506106a792505050565b6000546001600160a01b0316331461087e5760405162461bcd60e51b81526004016106f89061179f565b600061088930610a05565b905061089481611073565b50565b60006005548211156108eb5760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c6172676500000000000000000060448201526064016106f8565b60006108f5610dbc565b90506109018382610dd5565b9392505050565b600a546001600160a01b0316336001600160a01b0316146109625760405162461bcd60e51b8152602060048201526014602482015273596f752063616e6e6f742063616c6c207468697360601b60448201526064016106f8565b6001600160a01b0381166109b85760405162461bcd60e51b815260206004820152601c60248201527f47697665206d652074686520747265617375727920616464726573730000000060448201526064016106f8565b600a80546001600160a01b039283166001600160a01b0319821681179092556000918252600f6020526040808320805460ff19908116600117909155939091168252902080549091169055565b6001600160a01b0381166000908152600860205260408120546106a790610897565b6000546001600160a01b03163314610a515760405162461bcd60e51b81526004016106f89061179f565b610a5b600061125a565b565b6000546001600160a01b03163314610a875760405162461bcd60e51b81526004016106f89061179f565b600a811115610ad15760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106f8565b600b819055600d55565b60606002805461061390611764565b6000610af7600654610897565b905090565b60006106a3338461078685604051806060016040528060258152602001611927602591393360009081526009602090815260408083206001600160a01b038d1684529091529020549190610fca565b60006106a3338484610de1565b6000546001600160a01b03163314610b825760405162461bcd60e51b81526004016106f89061179f565b600a811115610bcc5760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106f8565b600c819055600e55565b6000610af7600754610897565b6000546001600160a01b03163314610c0d5760405162461bcd60e51b81526004016106f89061179f565b6001600160a01b038116610c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f8565b6108948161125a565b6000546001600160a01b03163314610ca55760405162461bcd60e51b81526004016106f89061179f565b47610894816112aa565b6001600160a01b038316610d055760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d2030206164647265737300000060448201526064016106f8565b6001600160a01b038216610d5b5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f20302061646472657373000000000060448201526064016106f8565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610af7600454600554610dd590919063ffffffff16565b600061090182846117ea565b6001600160a01b038316610e375760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d20302061646472657373000060448201526064016106f8565b6001600160a01b038216610e8d5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f203020616464726573730000000060448201526064016106f8565b60008111610edd5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f000060448201526064016106f8565b6001600160a01b0383166000908152600f602052604090205460019060ff1680610f1f57506001600160a01b0383166000908152600f602052604090205460ff165b15610f28575060005b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03161415610f68575060015b81610f8157610f7c6000600b819055600c55565b610fa7565b8015610f9757610f7c600d54600b556000600c55565b610fa76000600b55600e54600c55565b610fb28585856112e8565b610fc3600d54600b55600e54600c55565b5050505050565b60008184841115610fee5760405162461bcd60e51b81526004016106f891906115b1565b505050900390565b6000610901828461180c565b60008060008060008060006110168861145f565b9250925092506000611026610dbc565b905060006110348a836114c9565b9050600061104286846114c9565b9050600061105086856114c9565b9050600061105e86866114c9565b939d929c50909a509198509650505050505050565b6010805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106110bb576110bb611824565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611139573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115d919061183a565b8160018151811061117057611170611824565b60200260200101906001600160a01b031690816001600160a01b0316815250506111bb307f000000000000000000000000000000000000000000000000000000000000000084610caf565b600a5460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611217928792600092889291909116904290600401611857565b600060405180830381600087803b15801561123157600080fd5b505af1158015611245573d6000803e3d6000fd5b50506010805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156112e4573d6000803e3d6000fd5b5050565b600a546001600160a01b03848116911614801561130d57506001600160a01b03821630145b156113205761131b816114d5565b505050565b60008060008061132f85611002565b935093509350935061134081611545565b61134982611582565b600061135430610a05565b60115460105491925082101590600160a01b900460ff161580156113755750805b801561138057508215155b1561138e5761138e82611073565b47801561139e5761139e476112aa565b6001600160a01b038a166000908152600860205260409020546113c190886115a5565b6001600160a01b03808c1660009081526008602052604080822093909355908b16815220546113f09087610ff6565b6001600160a01b03808b166000818152600860205260409020929092558b167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61144261143b610dbc565b8a90610dd5565b60405190815260200160405180910390a350505050505050505050565b600080600080611485606461147f600b54886114c990919063ffffffff16565b90610dd5565b905060006114a3606461147f600c54896114c990919063ffffffff16565b905060006114bb826114b589866115a5565b906115a5565b979296509094509092505050565b600061090182846118c8565b60006114df610dbc565b905060006114ed83836114c9565b600a546001600160a01b031660009081526008602052604090205490915061151590826115a5565b600a546001600160a01b031660009081526008602052604090205560055461153d90826115a5565b600555505050565b3060009081526008602052604090205461155f9082610ff6565b3060009081526008602052604090205560075461157c9082610ff6565b60075550565b60055461158f90826115a5565b60055560065461159f9082610ff6565b60065550565b600061090182846118e7565b600060208083528351808285015260005b818110156115de578581018301518582016040015282016115c2565b818111156115f0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461089457600080fd5b6000806040838503121561162e57600080fd5b823561163981611606565b946020939093013593505050565b8035801515811461165757600080fd5b919050565b6000806040838503121561166f57600080fd5b823561167a81611606565b915061168860208401611647565b90509250929050565b6000806000606084860312156116a657600080fd5b83356116b181611606565b925060208401356116c181611606565b929592945050506040919091013590565b6000602082840312156116e457600080fd5b813561090181611606565b6000806040838503121561170257600080fd5b8235915061168860208401611647565b60006020828403121561172457600080fd5b5035919050565b6000806040838503121561173e57600080fd5b823561174981611606565b9150602083013561175981611606565b809150509250929050565b600181811c9082168061177857607f821691505b6020821081141561179957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261180757634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561181f5761181f6117d4565b500190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561184c57600080fd5b815161090181611606565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118a75784516001600160a01b031683529383019391830191600101611882565b50506001600160a01b03969096166060850152505050608001529392505050565b60008160001904831182151516156118e2576118e26117d4565b500290565b6000828210156118f9576118f96117d4565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207385bc34657ea11970a064cda55446e73a9290ae92e2467a8f78d3e83c3ca4ba64736f6c634300080a0033000000000000000000000000f455fc3643b0a6025b971efba786508967e46ac00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c80636e94729811610102578063a457c2d711610095578063dc34cabe11610064578063dc34cabe14610574578063dd62ed3e14610589578063f2fde38b146105cf578063f4293890146105ef57600080fd5b8063a457c2d7146104fe578063a9059cbb1461051e578063cd6840d51461053e578063d6010f451461055e57600080fd5b806388915725116100d157806388915725146104965780638da5cb5b146104b657806395d89b41146104d45780639946f6b1146104e957600080fd5b80636e9472981461042e57806370a0823114610441578063715018a6146104615780638743da6d1461047657600080fd5b806327b07d751161017a57806349bd5a5e1161014957806349bd5a5e146103a557806351bc3c85146103d957806356d91e16146103ee5780636605bfda1461040e57600080fd5b806327b07d751461030a578063313ce5671461034357806339509351146103655780634549b0391461038557600080fd5b806318160ddd116101b657806318160ddd1461028f578063222c2576146102b257806322603661146102c857806323b872dd146102ea57600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd610604565b60405161020a91906115b1565b60405180910390f35b34801561021f57600080fd5b5061023361022e36600461161b565b610696565b604051901515815260200161020a565b34801561024f57600080fd5b506102777f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161020a565b34801561029b57600080fd5b506102a46106ad565b60405190815260200161020a565b3480156102be57600080fd5b506102a4600d5481565b3480156102d457600080fd5b506102e86102e336600461165c565b6106ce565b005b3480156102f657600080fd5b50610233610305366004611691565b61072c565b34801561031657600080fd5b506102336103253660046116d2565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561034f57600080fd5b5060035460405160ff909116815260200161020a565b34801561037157600080fd5b5061023361038036600461161b565b610795565b34801561039157600080fd5b506102a46103a03660046116ef565b6107cb565b3480156103b157600080fd5b506102777f000000000000000000000000c7b7dac697b03e11e4af085d927f0c9b24b3f27d81565b3480156103e557600080fd5b506102e8610854565b3480156103fa57600080fd5b506102a4610409366004611712565b610897565b34801561041a57600080fd5b506102e86104293660046116d2565b610908565b34801561043a57600080fd5b50476102a4565b34801561044d57600080fd5b506102a461045c3660046116d2565b610a05565b34801561046d57600080fd5b506102e8610a27565b34801561048257600080fd5b50600a54610277906001600160a01b031681565b3480156104a257600080fd5b506102e86104b1366004611712565b610a5d565b3480156104c257600080fd5b506000546001600160a01b0316610277565b3480156104e057600080fd5b506101fd610adb565b3480156104f557600080fd5b506102a4610aea565b34801561050a57600080fd5b5061023361051936600461161b565b610afc565b34801561052a57600080fd5b5061023361053936600461161b565b610b4b565b34801561054a57600080fd5b506102e8610559366004611712565b610b58565b34801561056a57600080fd5b506102a4600e5481565b34801561058057600080fd5b506102a4610bd6565b34801561059557600080fd5b506102a46105a436600461172b565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b3480156105db57600080fd5b506102e86105ea3660046116d2565b610be3565b3480156105fb57600080fd5b506102e8610c7b565b60606001805461061390611764565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90611764565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a3338484610caf565b5060015b92915050565b6000806106b8610dbc565b6005549091506106c89082610dd5565b91505090565b6000546001600160a01b031633146107015760405162461bcd60e51b81526004016106f89061179f565b60405180910390fd5b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6000610739848484610de1565b61078b8433610786856040518060600160405280602881526020016118ff602891396001600160a01b038a1660009081526009602090815260408083203384529091529020549190610fca565b610caf565b5060019392505050565b3360008181526009602090815260408083206001600160a01b038716845290915281205490916106a39185906107869086610ff6565b600060045483111561081f5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016106f8565b8161083c57600061082f84611002565b509193506106a792505050565b600061084784611002565b509093506106a792505050565b6000546001600160a01b0316331461087e5760405162461bcd60e51b81526004016106f89061179f565b600061088930610a05565b905061089481611073565b50565b60006005548211156108eb5760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c6172676500000000000000000060448201526064016106f8565b60006108f5610dbc565b90506109018382610dd5565b9392505050565b600a546001600160a01b0316336001600160a01b0316146109625760405162461bcd60e51b8152602060048201526014602482015273596f752063616e6e6f742063616c6c207468697360601b60448201526064016106f8565b6001600160a01b0381166109b85760405162461bcd60e51b815260206004820152601c60248201527f47697665206d652074686520747265617375727920616464726573730000000060448201526064016106f8565b600a80546001600160a01b039283166001600160a01b0319821681179092556000918252600f6020526040808320805460ff19908116600117909155939091168252902080549091169055565b6001600160a01b0381166000908152600860205260408120546106a790610897565b6000546001600160a01b03163314610a515760405162461bcd60e51b81526004016106f89061179f565b610a5b600061125a565b565b6000546001600160a01b03163314610a875760405162461bcd60e51b81526004016106f89061179f565b600a811115610ad15760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106f8565b600b819055600d55565b60606002805461061390611764565b6000610af7600654610897565b905090565b60006106a3338461078685604051806060016040528060258152602001611927602591393360009081526009602090815260408083206001600160a01b038d1684529091529020549190610fca565b60006106a3338484610de1565b6000546001600160a01b03163314610b825760405162461bcd60e51b81526004016106f89061179f565b600a811115610bcc5760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106f8565b600c819055600e55565b6000610af7600754610897565b6000546001600160a01b03163314610c0d5760405162461bcd60e51b81526004016106f89061179f565b6001600160a01b038116610c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f8565b6108948161125a565b6000546001600160a01b03163314610ca55760405162461bcd60e51b81526004016106f89061179f565b47610894816112aa565b6001600160a01b038316610d055760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d2030206164647265737300000060448201526064016106f8565b6001600160a01b038216610d5b5760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f20302061646472657373000000000060448201526064016106f8565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610af7600454600554610dd590919063ffffffff16565b600061090182846117ea565b6001600160a01b038316610e375760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d20302061646472657373000060448201526064016106f8565b6001600160a01b038216610e8d5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f203020616464726573730000000060448201526064016106f8565b60008111610edd5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f000060448201526064016106f8565b6001600160a01b0383166000908152600f602052604090205460019060ff1680610f1f57506001600160a01b0383166000908152600f602052604090205460ff165b15610f28575060005b60007f000000000000000000000000c7b7dac697b03e11e4af085d927f0c9b24b3f27d6001600160a01b0316856001600160a01b03161415610f68575060015b81610f8157610f7c6000600b819055600c55565b610fa7565b8015610f9757610f7c600d54600b556000600c55565b610fa76000600b55600e54600c55565b610fb28585856112e8565b610fc3600d54600b55600e54600c55565b5050505050565b60008184841115610fee5760405162461bcd60e51b81526004016106f891906115b1565b505050900390565b6000610901828461180c565b60008060008060008060006110168861145f565b9250925092506000611026610dbc565b905060006110348a836114c9565b9050600061104286846114c9565b9050600061105086856114c9565b9050600061105e86866114c9565b939d929c50909a509198509650505050505050565b6010805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106110bb576110bb611824565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611139573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115d919061183a565b8160018151811061117057611170611824565b60200260200101906001600160a01b031690816001600160a01b0316815250506111bb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610caf565b600a5460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611217928792600092889291909116904290600401611857565b600060405180830381600087803b15801561123157600080fd5b505af1158015611245573d6000803e3d6000fd5b50506010805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156112e4573d6000803e3d6000fd5b5050565b600a546001600160a01b03848116911614801561130d57506001600160a01b03821630145b156113205761131b816114d5565b505050565b60008060008061132f85611002565b935093509350935061134081611545565b61134982611582565b600061135430610a05565b60115460105491925082101590600160a01b900460ff161580156113755750805b801561138057508215155b1561138e5761138e82611073565b47801561139e5761139e476112aa565b6001600160a01b038a166000908152600860205260409020546113c190886115a5565b6001600160a01b03808c1660009081526008602052604080822093909355908b16815220546113f09087610ff6565b6001600160a01b03808b166000818152600860205260409020929092558b167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61144261143b610dbc565b8a90610dd5565b60405190815260200160405180910390a350505050505050505050565b600080600080611485606461147f600b54886114c990919063ffffffff16565b90610dd5565b905060006114a3606461147f600c54896114c990919063ffffffff16565b905060006114bb826114b589866115a5565b906115a5565b979296509094509092505050565b600061090182846118c8565b60006114df610dbc565b905060006114ed83836114c9565b600a546001600160a01b031660009081526008602052604090205490915061151590826115a5565b600a546001600160a01b031660009081526008602052604090205560055461153d90826115a5565b600555505050565b3060009081526008602052604090205461155f9082610ff6565b3060009081526008602052604090205560075461157c9082610ff6565b60075550565b60055461158f90826115a5565b60055560065461159f9082610ff6565b60065550565b600061090182846118e7565b600060208083528351808285015260005b818110156115de578581018301518582016040015282016115c2565b818111156115f0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461089457600080fd5b6000806040838503121561162e57600080fd5b823561163981611606565b946020939093013593505050565b8035801515811461165757600080fd5b919050565b6000806040838503121561166f57600080fd5b823561167a81611606565b915061168860208401611647565b90509250929050565b6000806000606084860312156116a657600080fd5b83356116b181611606565b925060208401356116c181611606565b929592945050506040919091013590565b6000602082840312156116e457600080fd5b813561090181611606565b6000806040838503121561170257600080fd5b8235915061168860208401611647565b60006020828403121561172457600080fd5b5035919050565b6000806040838503121561173e57600080fd5b823561174981611606565b9150602083013561175981611606565b809150509250929050565b600181811c9082168061177857607f821691505b6020821081141561179957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008261180757634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561181f5761181f6117d4565b500190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561184c57600080fd5b815161090181611606565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118a75784516001600160a01b031683529383019391830191600101611882565b50506001600160a01b03969096166060850152505050608001529392505050565b60008160001904831182151516156118e2576118e26117d4565b500290565b6000828210156118f9576118f96117d4565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207385bc34657ea11970a064cda55446e73a9290ae92e2467a8f78d3e83c3ca4ba64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f455fc3643b0a6025b971efba786508967e46ac00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : treasuryAddress (address): 0xf455fc3643b0A6025B971EfBA786508967E46AC0
Arg [1] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f455fc3643b0a6025b971efba786508967e46ac0
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.