Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
AddLiquidityHelper
Compiler Version
v0.8.3+commit.8d00100c
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC20.sol"; import "./SafeERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; // AddLiquidityHelper, allows anyone to add or remove Arcadium liquidity tax free // Also allows the Arcadium Token to do buy backs tax free via an external contract. contract AddLiquidityHelper is ReentrancyGuard, Ownable { using SafeERC20 for ERC20; address public arcadiumAddress; IUniswapV2Router02 public immutable arcadiumSwapRouter; // The trading pair address public arcadiumSwapPair; // To receive ETH when swapping receive() external payable {} event SetArcadiumAddresses(address arcadiumAddress, address arcadiumSwapPair); /** * @notice Constructs the AddLiquidityHelper contract. */ constructor(address _router) public { require(_router != address(0), "_router is the zero address"); arcadiumSwapRouter = IUniswapV2Router02(_router); } function arcadiumETHLiquidityWithBuyBack(address lpHolder) external payable nonReentrant { require(msg.sender == arcadiumAddress, "can only be used by the arcadium token!"); (uint256 res0, uint256 res1, ) = IUniswapV2Pair(arcadiumSwapPair).getReserves(); if (res0 != 0 && res1 != 0) { // making weth res0 if (IUniswapV2Pair(arcadiumSwapPair).token0() == arcadiumAddress) (res1, res0) = (res0, res1); uint256 contractTokenBalance = ERC20(arcadiumAddress).balanceOf(address(this)); // calculate how much eth is needed to use all of contractTokenBalance // also boost precision a tad. uint256 totalETHNeeded = (res0 * contractTokenBalance) / res1; uint256 existingETH = address(this).balance; uint256 unmatchedArcadium = 0; if (existingETH < totalETHNeeded) { // calculate how much arcadium will match up with our existing eth. uint256 matchedArcadium = (res1 * existingETH) / res0; if (contractTokenBalance >= matchedArcadium) unmatchedArcadium = contractTokenBalance - matchedArcadium; } else if (existingETH > totalETHNeeded) { // use excess eth for arcadium buy back uint256 excessETH = existingETH - totalETHNeeded; if (excessETH / 2 > 0) { // swap half of the excess eth for lp to be balanced swapETHForTokens(excessETH / 2, arcadiumAddress); } } uint256 unmatchedArcadiumToSwap = unmatchedArcadium / 2; // swap tokens for ETH if (unmatchedArcadiumToSwap > 0) swapTokensForEth(arcadiumAddress, unmatchedArcadiumToSwap); uint256 arcadiumBalance = ERC20(arcadiumAddress).balanceOf(address(this)); // approve token transfer to cover all possible scenarios ERC20(arcadiumAddress).approve(address(arcadiumSwapRouter), arcadiumBalance); // add the liquidity arcadiumSwapRouter.addLiquidityETH{value: address(this).balance}( arcadiumAddress, arcadiumBalance, 0, // slippage is unavoidable 0, // slippage is unavoidable lpHolder, block.timestamp ); } if (address(this).balance > 0) { // not going to require/check return value of this transfer as reverting behaviour is undesirable. payable(address(msg.sender)).call{value: address(this).balance}(""); } if (ERC20(arcadiumAddress).balanceOf(address(this)) > 0) ERC20(arcadiumAddress).transfer(msg.sender, ERC20(arcadiumAddress).balanceOf(address(this))); } function addArcadiumETHLiquidity(uint256 nativeAmount) external payable nonReentrant { require(msg.value > 0, "!sufficient funds"); ERC20(arcadiumAddress).safeTransferFrom(msg.sender, address(this), nativeAmount); // approve token transfer to cover all possible scenarios ERC20(arcadiumAddress).approve(address(arcadiumSwapRouter), nativeAmount); // add the liquidity arcadiumSwapRouter.addLiquidityETH{value: msg.value}( arcadiumAddress, nativeAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); if (address(this).balance > 0) { // not going to require/check return value of this transfer as reverting behaviour is undesirable. payable(address(msg.sender)).call{value: address(this).balance}(""); } if (ERC20(arcadiumAddress).balanceOf(address(this)) > 0) ERC20(arcadiumAddress).transfer(msg.sender, ERC20(arcadiumAddress).balanceOf(address(this))); } function addArcadiumLiquidity(address baseTokenAddress, uint256 baseAmount, uint256 nativeAmount) external nonReentrant { ERC20(baseTokenAddress).safeTransferFrom(msg.sender, address(this), baseAmount); ERC20(arcadiumAddress).safeTransferFrom(msg.sender, address(this), nativeAmount); // approve token transfer to cover all possible scenarios ERC20(baseTokenAddress).approve(address(arcadiumSwapRouter), baseAmount); ERC20(arcadiumAddress).approve(address(arcadiumSwapRouter), nativeAmount); // add the liquidity arcadiumSwapRouter.addLiquidity( baseTokenAddress, arcadiumAddress, baseAmount, nativeAmount , 0, // slippage is unavoidable 0, // slippage is unavoidable msg.sender, block.timestamp ); if (ERC20(baseTokenAddress).balanceOf(address(this)) > 0) ERC20(baseTokenAddress).safeTransfer(msg.sender, ERC20(baseTokenAddress).balanceOf(address(this))); if (ERC20(arcadiumAddress).balanceOf(address(this)) > 0) ERC20(arcadiumAddress).transfer(msg.sender, ERC20(arcadiumAddress).balanceOf(address(this))); } function removeArcadiumLiquidity(address baseTokenAddress, uint256 liquidity) external nonReentrant { address lpTokenAddress = IUniswapV2Factory(arcadiumSwapRouter.factory()).getPair(baseTokenAddress, arcadiumAddress); require(lpTokenAddress != address(0), "pair hasn't been created yet, so can't remove liquidity!"); ERC20(lpTokenAddress).safeTransferFrom(msg.sender, address(this), liquidity); // approve token transfer to cover all possible scenarios ERC20(lpTokenAddress).approve(address(arcadiumSwapRouter), liquidity); // add the liquidity arcadiumSwapRouter.removeLiquidity( baseTokenAddress, arcadiumAddress, liquidity, 0, // slippage is unavoidable 0, // slippage is unavoidable msg.sender, block.timestamp ); } /// @dev Swap tokens for eth function swapTokensForEth(address saleTokenAddress, uint256 tokenAmount) internal { // generate the arcadiumSwap pair path of token -> weth address[] memory path = new address[](2); path[0] = saleTokenAddress; path[1] = arcadiumSwapRouter.WETH(); ERC20(saleTokenAddress).approve(address(arcadiumSwapRouter), tokenAmount); // make the swap arcadiumSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapETHForTokens(uint256 ethAmount, address wantedTokenAddress) internal { require(address(this).balance >= ethAmount, "insufficient matic provided!"); require(wantedTokenAddress != address(0), "wanted token address can't be the zero address!"); // generate the arcadiumSwap pair path of token -> weth address[] memory path = new address[](2); path[0] = arcadiumSwapRouter.WETH(); path[1] = wantedTokenAddress; // make the swap arcadiumSwapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}( 0, path, // cannot send tokens to the token contract of the same type as the output token address(this), block.timestamp ); } /** * @dev set the arcadium address. * Can only be called by the current owner. */ function setArcadiumAddress(address _arcadiumAddress) external onlyOwner { require(_arcadiumAddress != address(0), "_arcadiumAddress is the zero address"); require(arcadiumAddress == address(0), "arcadiumAddress already set!"); arcadiumAddress = _arcadiumAddress; arcadiumSwapPair = IUniswapV2Factory(arcadiumSwapRouter.factory()).getPair(arcadiumAddress, arcadiumSwapRouter.WETH()); require(address(arcadiumSwapPair) != address(0), "matic pair !exist"); emit SetArcadiumAddresses(arcadiumAddress, arcadiumSwapPair); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
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; }
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.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; }
// SPDX-License-Identifier: MIT 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 make 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 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 pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT 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 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } }
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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"arcadiumAddress","type":"address"},{"indexed":false,"internalType":"address","name":"arcadiumSwapPair","type":"address"}],"name":"SetArcadiumAddresses","type":"event"},{"inputs":[{"internalType":"uint256","name":"nativeAmount","type":"uint256"}],"name":"addArcadiumETHLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"baseTokenAddress","type":"address"},{"internalType":"uint256","name":"baseAmount","type":"uint256"},{"internalType":"uint256","name":"nativeAmount","type":"uint256"}],"name":"addArcadiumLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arcadiumAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lpHolder","type":"address"}],"name":"arcadiumETHLiquidityWithBuyBack","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"arcadiumSwapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"arcadiumSwapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"baseTokenAddress","type":"address"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"name":"removeArcadiumLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_arcadiumAddress","type":"address"}],"name":"setArcadiumAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620041b7380380620041b78339818101604052810190620000379190620001f5565b60016000819055506200005f620000536200011060201b60201c565b6200011860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620000d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000c99062000248565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050620002f2565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620001ef81620002d8565b92915050565b6000602082840312156200020857600080fd5b60006200021884828501620001de565b91505092915050565b600062000230601b836200026a565b91506200023d82620002af565b602082019050919050565b60006020820190508181036000830152620002638162000221565b9050919050565b600082825260208201905092915050565b600062000288826200028f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b7f5f726f7574657220697320746865207a65726f20616464726573730000000000600082015250565b620002e3816200027b565b8114620002ef57600080fd5b50565b60805160601c613e2f6200038860003960008181610273015281816103b5015281816104470152818161091d015281816109ed01528181610a7f01528181610f0e01528181611113015281816111a50152818161144b0152818161152701528181611d1801528181611daa0152818161253d015281816126c401528181612845015281816129730152612a050152613e2f6000f3fe6080604052600436106100a05760003560e01c80637983ab94116100645780637983ab941461015e578063844e778e146101875780638da5cb5b146101b0578063d21887d8146101db578063e1e99d8d146101f7578063f2fde38b14610222576100a7565b80630c2009d9146100ac5780631234b31c146100d757806315fc6e0414610102578063715018a61461011e5780637212e18014610135576100a7565b366100a757005b600080fd5b3480156100b857600080fd5b506100c161024b565b6040516100ce9190613332565b60405180910390f35b3480156100e357600080fd5b506100ec610271565b6040516100f99190613524565b60405180910390f35b61011c60048036038101906101179190612ef1565b610295565b005b34801561012a57600080fd5b506101336107ad565b005b34801561014157600080fd5b5061015c60048036038101906101579190612e2a565b610835565b005b34801561016a57600080fd5b5061018560048036038101906101809190612dee565b610ebc565b005b34801561019357600080fd5b506101ae60048036038101906101a99190612d9c565b61128b565b005b3480156101bc57600080fd5b506101c5611782565b6040516101d29190613332565b60405180910390f35b6101f560048036038101906101f09190612d9c565b6117ac565b005b34801561020357600080fd5b5061020c612119565b6040516102199190613332565b60405180910390f35b34801561022e57600080fd5b5061024960048036038101906102449190612d9c565b61213f565b005b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600260005414156102db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d29061374d565b60405180910390fd5b600260008190555060003411610326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031d9061362d565b60405180910390fd5b610375333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612237909392919063ffffffff16565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b81526004016103f292919061349a565b602060405180830381600087803b15801561040c57600080fd5b505af1158015610420573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104449190612e79565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71934600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168460008030426040518863ffffffff1660e01b81526004016104cc969594939291906134c3565b6060604051808303818588803b1580156104e557600080fd5b505af11580156104f9573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061051e9190612f7f565b5050506000471115610594573373ffffffffffffffffffffffffffffffffffffffff164760405161054e9061331d565b60006040518083038185875af1925050503d806000811461058b576040519150601f19603f3d011682016040523d82523d6000602084013e610590565b606091505b5050505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105f19190613332565b60206040518083038186803b15801561060957600080fd5b505afa15801561061d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106419190612f1a565b11156107a257600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106e19190613332565b60206040518083038186803b1580156106f957600080fd5b505afa15801561070d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107319190612f1a565b6040518363ffffffff1660e01b815260040161074e92919061349a565b602060405180830381600087803b15801561076857600080fd5b505af115801561077c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a09190612e79565b505b600160008190555050565b6107b56122c0565b73ffffffffffffffffffffffffffffffffffffffff166107d3611782565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108209061368d565b60405180910390fd5b61083360006122c8565b565b6002600054141561087b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108729061374d565b60405180910390fd5b60026000819055506108b03330848673ffffffffffffffffffffffffffffffffffffffff16612237909392919063ffffffff16565b6108ff333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612237909392919063ffffffff16565b8273ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000846040518363ffffffff1660e01b815260040161095a92919061349a565b602060405180830381600087803b15801561097457600080fd5b505af1158015610988573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ac9190612e79565b50600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401610a2a92919061349a565b602060405180830381600087803b158015610a4457600080fd5b505af1158015610a58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7c9190612e79565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e8e3370084600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16858560008033426040518963ffffffff1660e01b8152600401610b0798979695949392919061341c565b606060405180830381600087803b158015610b2157600080fd5b505af1158015610b35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b599190612f7f565b50505060008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610b979190613332565b60206040518083038186803b158015610baf57600080fd5b505afa158015610bc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be79190612f1a565b1115610ca157610ca0338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c2a9190613332565b60206040518083038186803b158015610c4257600080fd5b505afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a9190612f1a565b8573ffffffffffffffffffffffffffffffffffffffff1661238e9092919063ffffffff16565b5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610cfe9190613332565b60206040518083038186803b158015610d1657600080fd5b505afa158015610d2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4e9190612f1a565b1115610eaf57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610dee9190613332565b60206040518083038186803b158015610e0657600080fd5b505afa158015610e1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3e9190612f1a565b6040518363ffffffff1660e01b8152600401610e5b92919061349a565b602060405180830381600087803b158015610e7557600080fd5b505af1158015610e89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ead9190612e79565b505b6001600081905550505050565b60026000541415610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef99061374d565b60405180910390fd5b600260008190555060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610f7257600080fd5b505afa158015610f86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610faa9190612dc5565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b815260040161100692919061334d565b60206040518083038186803b15801561101e57600080fd5b505afa158015611032573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110569190612dc5565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf906136ad565b60405180910390fd5b6110f53330848473ffffffffffffffffffffffffffffffffffffffff16612237909392919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000846040518363ffffffff1660e01b815260040161115092919061349a565b602060405180830381600087803b15801561116a57600080fd5b505af115801561117e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111a29190612e79565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663baa2abde84600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168560008033426040518863ffffffff1660e01b815260040161122b97969594939291906133ad565b6040805180830381600087803b15801561124457600080fd5b505af1158015611258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127c9190612f43565b50505060016000819055505050565b6112936122c0565b73ffffffffffffffffffffffffffffffffffffffff166112b1611782565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe9061368d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906135ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff9061364d565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156114af57600080fd5b505afa1580156114c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114e79190612dc5565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561158b57600080fd5b505afa15801561159f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115c39190612dc5565b6040518363ffffffff1660e01b81526004016115e092919061334d565b60206040518083038186803b1580156115f857600080fd5b505afa15801561160c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116309190612dc5565b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906135ed565b60405180910390fd5b7f503ff979a58e0cbdb1c967bf938b1c345306487b0eef1dd504227fd41477d03e600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161177792919061334d565b60405180910390a150565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600260005414156117f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e99061374d565b60405180910390fd5b6002600081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461188a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611881906136cd565b60405180910390fd5b600080600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156118f557600080fd5b505afa158015611909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192d9190612ea2565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff16915060008214158015611964575060008114155b15611e8b57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015611a0a57600080fd5b505afa158015611a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a429190612dc5565b73ffffffffffffffffffffffffffffffffffffffff161415611a6957818180935081925050505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611ac69190613332565b60206040518083038186803b158015611ade57600080fd5b505afa158015611af2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b169190612f1a565b90506000828285611b279190613863565b611b319190613832565b90506000479050600082821015611b79576000868387611b519190613863565b611b5b9190613832565b9050808510611b73578085611b7091906138bd565b91505b50611be2565b82821115611be15760008383611b8f91906138bd565b90506000600282611ba09190613832565b1115611bdf57611bde600282611bb69190613832565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612414565b5b505b5b6000600282611bf19190613832565b90506000811115611c2957611c28600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261275a565b5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611c869190613332565b60206040518083038186803b158015611c9e57600080fd5b505afa158015611cb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd69190612f1a565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401611d5592919061349a565b602060405180830381600087803b158015611d6f57600080fd5b505af1158015611d83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611da79190612e79565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71947600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846000808f426040518863ffffffff1660e01b8152600401611e2f969594939291906134c3565b6060604051808303818588803b158015611e4857600080fd5b505af1158015611e5c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e819190612f7f565b5050505050505050505b6000471115611efe573373ffffffffffffffffffffffffffffffffffffffff1647604051611eb89061331d565b60006040518083038185875af1925050503d8060008114611ef5576040519150601f19603f3d011682016040523d82523d6000602084013e611efa565b606091505b5050505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f5b9190613332565b60206040518083038186803b158015611f7357600080fd5b505afa158015611f87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fab9190612f1a565b111561210c57600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161204b9190613332565b60206040518083038186803b15801561206357600080fd5b505afa158015612077573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209b9190612f1a565b6040518363ffffffff1660e01b81526004016120b892919061349a565b602060405180830381600087803b1580156120d257600080fd5b505af11580156120e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061210a9190612e79565b505b5050600160008190555050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6121476122c0565b73ffffffffffffffffffffffffffffffffffffffff16612165611782565b73ffffffffffffffffffffffffffffffffffffffff16146121bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b29061368d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561222b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612222906135cd565b60405180910390fd5b612234816122c8565b50565b6122ba846323b872dd60e01b85858560405160240161225893929190613376565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a9c565b50505050565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61240f8363a9059cbb60e01b84846040516024016123ad92919061349a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a9c565b505050565b81471015612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e906136ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be9061366d565b60405180910390fd5b6000600267ffffffffffffffff81111561250a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156125385781602001602082028036833780820191505090505b5090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156125a157600080fd5b505afa1580156125b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d99190612dc5565b81600081518110612613577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508181600181518110612688577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b6f9de958460008430426040518663ffffffff1660e01b8152600401612723949392919061353f565b6000604051808303818588803b15801561273c57600080fd5b505af1158015612750573d6000803e3d6000fd5b5050505050505050565b6000600267ffffffffffffffff81111561279d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156127cb5781602001602082028036833780820191505090505b5090508281600081518110612809577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156128a957600080fd5b505afa1580156128bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128e19190612dc5565b8160018151811061291b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508273ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000846040518363ffffffff1660e01b81526004016129b092919061349a565b602060405180830381600087803b1580156129ca57600080fd5b505af11580156129de573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a029190612e79565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a6595949392919061376d565b600060405180830381600087803b158015612a7f57600080fd5b505af1158015612a93573d6000803e3d6000fd5b50505050505050565b6000612afe826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612b639092919063ffffffff16565b9050600081511115612b5e5780806020019051810190612b1e9190612e79565b612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b549061372d565b60405180910390fd5b5b505050565b6060612b728484600085612b7b565b90509392505050565b606082471015612bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb79061360d565b60405180910390fd5b612bc985612c8f565b612c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bff9061370d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612c319190613306565b60006040518083038185875af1925050503d8060008114612c6e576040519150601f19603f3d011682016040523d82523d6000602084013e612c73565b606091505b5091509150612c83828286612ca2565b92505050949350505050565b600080823b905060008111915050919050565b60608315612cb257829050612d02565b600083511115612cc55782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf9919061358b565b60405180910390fd5b9392505050565b600081359050612d1881613d86565b92915050565b600081519050612d2d81613d86565b92915050565b600081519050612d4281613d9d565b92915050565b600081519050612d5781613db4565b92915050565b600081359050612d6c81613dcb565b92915050565b600081519050612d8181613dcb565b92915050565b600081519050612d9681613de2565b92915050565b600060208284031215612dae57600080fd5b6000612dbc84828501612d09565b91505092915050565b600060208284031215612dd757600080fd5b6000612de584828501612d1e565b91505092915050565b60008060408385031215612e0157600080fd5b6000612e0f85828601612d09565b9250506020612e2085828601612d5d565b9150509250929050565b600080600060608486031215612e3f57600080fd5b6000612e4d86828701612d09565b9350506020612e5e86828701612d5d565b9250506040612e6f86828701612d5d565b9150509250925092565b600060208284031215612e8b57600080fd5b6000612e9984828501612d33565b91505092915050565b600080600060608486031215612eb757600080fd5b6000612ec586828701612d48565b9350506020612ed686828701612d48565b9250506040612ee786828701612d87565b9150509250925092565b600060208284031215612f0357600080fd5b6000612f1184828501612d5d565b91505092915050565b600060208284031215612f2c57600080fd5b6000612f3a84828501612d72565b91505092915050565b60008060408385031215612f5657600080fd5b6000612f6485828601612d72565b9250506020612f7585828601612d72565b9150509250929050565b600080600060608486031215612f9457600080fd5b6000612fa286828701612d72565b9350506020612fb386828701612d72565b9250506040612fc486828701612d72565b9150509250925092565b6000612fda8383612fe6565b60208301905092915050565b612fef816138f1565b82525050565b612ffe816138f1565b82525050565b600061300f826137d7565b6130198185613805565b9350613024836137c7565b8060005b8381101561305557815161303c8882612fce565b9750613047836137f8565b925050600181019050613028565b5085935050505092915050565b600061306d826137e2565b6130778185613816565b9350613087818560208601613999565b80840191505092915050565b61309c81613963565b82525050565b6130ab81613987565b82525050565b60006130bc826137ed565b6130c68185613821565b93506130d6818560208601613999565b6130df81613a2a565b840191505092915050565b60006130f7602483613821565b915061310282613a3b565b604082019050919050565b600061311a602683613821565b915061312582613a8a565b604082019050919050565b600061313d601183613821565b915061314882613ad9565b602082019050919050565b6000613160602683613821565b915061316b82613b02565b604082019050919050565b6000613183601183613821565b915061318e82613b51565b602082019050919050565b60006131a6601c83613821565b91506131b182613b7a565b602082019050919050565b60006131c9602f83613821565b91506131d482613ba3565b604082019050919050565b60006131ec602083613821565b91506131f782613bf2565b602082019050919050565b600061320f603883613821565b915061321a82613c1b565b604082019050919050565b6000613232602783613821565b915061323d82613c6a565b604082019050919050565b6000613255601c83613821565b915061326082613cb9565b602082019050919050565b6000613278600083613816565b915061328382613ce2565b600082019050919050565b600061329b601d83613821565b91506132a682613ce5565b602082019050919050565b60006132be602a83613821565b91506132c982613d0e565b604082019050919050565b60006132e1601f83613821565b91506132ec82613d5d565b602082019050919050565b61330081613949565b82525050565b60006133128284613062565b915081905092915050565b60006133288261326b565b9150819050919050565b60006020820190506133476000830184612ff5565b92915050565b60006040820190506133626000830185612ff5565b61336f6020830184612ff5565b9392505050565b600060608201905061338b6000830186612ff5565b6133986020830185612ff5565b6133a560408301846132f7565b949350505050565b600060e0820190506133c2600083018a612ff5565b6133cf6020830189612ff5565b6133dc60408301886132f7565b6133e960608301876130a2565b6133f660808301866130a2565b61340360a0830185612ff5565b61341060c08301846132f7565b98975050505050505050565b600061010082019050613432600083018b612ff5565b61343f602083018a612ff5565b61344c60408301896132f7565b61345960608301886132f7565b61346660808301876130a2565b61347360a08301866130a2565b61348060c0830185612ff5565b61348d60e08301846132f7565b9998505050505050505050565b60006040820190506134af6000830185612ff5565b6134bc60208301846132f7565b9392505050565b600060c0820190506134d86000830189612ff5565b6134e560208301886132f7565b6134f260408301876130a2565b6134ff60608301866130a2565b61350c6080830185612ff5565b61351960a08301846132f7565b979650505050505050565b60006020820190506135396000830184613093565b92915050565b600060808201905061355460008301876130a2565b81810360208301526135668186613004565b90506135756040830185612ff5565b61358260608301846132f7565b95945050505050565b600060208201905081810360008301526135a581846130b1565b905092915050565b600060208201905081810360008301526135c6816130ea565b9050919050565b600060208201905081810360008301526135e68161310d565b9050919050565b6000602082019050818103600083015261360681613130565b9050919050565b6000602082019050818103600083015261362681613153565b9050919050565b6000602082019050818103600083015261364681613176565b9050919050565b6000602082019050818103600083015261366681613199565b9050919050565b60006020820190508181036000830152613686816131bc565b9050919050565b600060208201905081810360008301526136a6816131df565b9050919050565b600060208201905081810360008301526136c681613202565b9050919050565b600060208201905081810360008301526136e681613225565b9050919050565b6000602082019050818103600083015261370681613248565b9050919050565b600060208201905081810360008301526137268161328e565b9050919050565b60006020820190508181036000830152613746816132b1565b9050919050565b60006020820190508181036000830152613766816132d4565b9050919050565b600060a08201905061378260008301886132f7565b61378f60208301876130a2565b81810360408301526137a18186613004565b90506137b06060830185612ff5565b6137bd60808301846132f7565b9695505050505050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061383d82613949565b915061384883613949565b925082613858576138576139fb565b5b828204905092915050565b600061386e82613949565b915061387983613949565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138b2576138b16139cc565b5b828202905092915050565b60006138c882613949565b91506138d383613949565b9250828210156138e6576138e56139cc565b5b828203905092915050565b60006138fc82613929565b9050919050565b60008115159050919050565b60006dffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600061396e82613975565b9050919050565b600061398082613929565b9050919050565b600061399282613949565b9050919050565b60005b838110156139b757808201518184015260208101905061399c565b838111156139c6576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000601f19601f8301169050919050565b7f5f617263616469756d4164647265737320697320746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d61746963207061697220216578697374000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f2173756666696369656e742066756e6473000000000000000000000000000000600082015250565b7f617263616469756d4164647265737320616c7265616479207365742100000000600082015250565b7f77616e74656420746f6b656e20616464726573732063616e277420626520746860008201527f65207a65726f2061646472657373210000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f70616972206861736e2774206265656e2063726561746564207965742c20736f60008201527f2063616e27742072656d6f7665206c6971756964697479210000000000000000602082015250565b7f63616e206f6e6c7920626520757365642062792074686520617263616469756d60008201527f20746f6b656e2100000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e74206d617469632070726f76696465642100000000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613d8f816138f1565b8114613d9a57600080fd5b50565b613da681613903565b8114613db157600080fd5b50565b613dbd8161390f565b8114613dc857600080fd5b50565b613dd481613949565b8114613ddf57600080fd5b50565b613deb81613953565b8114613df657600080fd5b5056fea2646970667358221220169166b89723aa36fb1c66809543e6edc5c11bf904492c1412633c2a9f92f4bb64736f6c63430008030033000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff
-----Decoded View---------------
Arg [0] : _router (address): 0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.