ERC-20
Overview
Max Total Supply
420,700,000,000,000 PHAT
Holders
31
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,543,975,507,800.447560022151158353 PHATValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | 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 Name:
PorkWifHat
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; // Website: www.porkwifhat.com // Telegram: https://t.me/porkwifhat // Twitter: https://twitter.com/porkwifhat // Pork Wif Hat. The Fork of a Fork. A tribute to Emperor Pauly0x, grandmaster of Crypto 2.0. To Valhalla! // Rewards for PORK holders: 40T // Rewards for PHAT holders: 80T 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 PorkWifHat is IERC20, Ownable { using Address for address; using SafeMath for uint256; string private _name = "Pork Wif Hat"; string private _symbol = "PHAT"; uint8 private _decimals = 18; uint256 private _totalSupply = 420700000000000000000000000000000; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; address private _taxWallet; IUniswapV2Router private _uniswapRouter; IUniswapV2Pair private _uniswapPair; uint256 private _fee = 3; bool private _swapping = false; mapping(address => bool) private _isWhitelisted; uint _removeTaxTimeStamp; constructor() { _removeTaxTimeStamp = block.timestamp + (10 * 1 days); _taxWallet = owner(); _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[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 fee() external view returns (uint256) { return _fee; } function taxWallet() external view returns (address) { return _taxWallet; } function dexRouter() external view returns (address) { return address(_uniswapRouter); } function dexPair() external view returns (address) { return address(_uniswapPair); } function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } function isWhitelisted(address account) external view returns (bool) { return _isWhitelisted[account]; } function isExcludedFromFee(address account) external view returns (bool) { return _isExcludedFromFee[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 increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "Token: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } 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; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } if (!_swapping && takeFee) { if (to == address(_uniswapPair)) { bool canSwap = _balances[address(this)] > _balances[address(_uniswapPair)].div(200); if (canSwap) { _swapping = true; _swapTokensForETH(_balances[address(_uniswapPair)].div(200)); _swapping = false; } } if (_fee > 0) { if (block.timestamp > _removeTaxTimeStamp) { _fee = 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); } } if (from == address(_uniswapPair) && !_isWhitelisted[to]) { _isWhitelisted[to] = true; } } _balances[from] = _balances[from].sub(amount, "ERC20: Transfer amount exceeds balance"); _balances[to] = _balances[to].add(amount); emit Transfer(from, to, amount); } function addLiquidityETH() external payable returns (bool) { require(address(_uniswapPair) == address(0), "ERC20: LP created"); require(msg.value > 0, "ERC20: No ETH"); _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; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "./IERC20.sol"; interface IUniswapV2Pair is IERC20 { function sync() external; }
// 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; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
// 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); }
// 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; } } }
// 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(); } } }
// 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; } }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "evmVersion": "istanbul", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"addLiquidityETH","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","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":"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":[{"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"}]
Contract Creation Code
60c0604052600c60809081526b141bdc9ac815da598812185d60a21b60a0526001906200002d908262000230565b506040805180820190915260048152631412105560e21b602082015260029062000058908262000230565b506003805460ff1990811660121782556d14bdfb03b37895f4fadb60000000600455600b91909155600c805490911690553480156200009657600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000e742620d2f00620002fc565b600e5560008054600880546001600160a01b0319166001600160a01b03928316179055308252600760209081526040808420805460ff199081166001908117909255855485168652828620805490911690911790556004548454841685526005835281852081905584549151908152921692917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000324565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001b657607f821691505b602082108103620001d757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022b57600081815260208120601f850160051c81016020861015620002065750805b601f850160051c820191505b81811015620002275782815560010162000212565b5050505b505050565b81516001600160401b038111156200024c576200024c6200018b565b62000264816200025d8454620001a1565b84620001dd565b602080601f8311600181146200029c5760008415620002835750858301515b600019600386901b1c1916600185901b17855562000227565b600085815260208120601f198616915b82811015620002cd57888601518255948401946001909101908401620002ac565b5085821015620002ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200031e57634e487b7160e01b600052601160045260246000fd5b92915050565b61184480620003346000396000f3fe6080604052600436106101445760003560e01c8063715018a6116100b6578063dd62ed3e1161006f578063dd62ed3e146103ce578063ddca3f4314610414578063e086e5ec14610429578063ed9953071461043e578063f242ab4114610446578063f2fde38b1461046457600080fd5b8063715018a61461032457806374c9f6031461033b5780638da5cb5b1461035b57806395d89b4114610379578063a457c2d71461038e578063a9059cbb146103ae57600080fd5b80632dc0562d116101085780632dc0562d1461021c578063313ce5671461023a578063395093511461025c5780633af32abf1461027c5780635342acb4146102b557806370a08231146102ee57600080fd5b806306fdde03146101505780630758d9241461017b578063095ea7b3146101ad57806318160ddd146101dd57806323b872dd146101fc57600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610484565b6040516101729190611516565b60405180910390f35b34801561018757600080fd5b506009546001600160a01b03165b6040516001600160a01b039091168152602001610172565b3480156101b957600080fd5b506101cd6101c836600461157c565b610516565b6040519015158152602001610172565b3480156101e957600080fd5b506004545b604051908152602001610172565b34801561020857600080fd5b506101cd6102173660046115a8565b61052d565b34801561022857600080fd5b506008546001600160a01b0316610195565b34801561024657600080fd5b5060035460405160ff9091168152602001610172565b34801561026857600080fd5b506101cd61027736600461157c565b6105db565b34801561028857600080fd5b506101cd6102973660046115e9565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156102c157600080fd5b506101cd6102d03660046115e9565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156102fa57600080fd5b506101ee6103093660046115e9565b6001600160a01b031660009081526005602052604090205490565b34801561033057600080fd5b50610339610617565b005b34801561034757600080fd5b506101cd6103563660046115e9565b6106c0565b34801561036757600080fd5b506000546001600160a01b0316610195565b34801561038557600080fd5b5061016561074c565b34801561039a57600080fd5b506101cd6103a936600461157c565b61075b565b3480156103ba57600080fd5b506101cd6103c936600461157c565b6107ea565b3480156103da57600080fd5b506101ee6103e9366004611606565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561042057600080fd5b50600b546101ee565b34801561043557600080fd5b506101cd6107f7565b6101cd61087b565b34801561045257600080fd5b50600a546001600160a01b0316610195565b34801561047057600080fd5b5061033961047f3660046115e9565b610bd9565b6060600180546104939061163f565b80601f01602080910402602001604051908101604052809291908181526020018280546104bf9061163f565b801561050c5780601f106104e15761010080835404028352916020019161050c565b820191906000526020600020905b8154815290600101906020018083116104ef57829003601f168201915b5050505050905090565b6000610523338484610cf3565b5060015b92915050565b6001600160a01b0383166000908152600660209081526040808320338452909152812054600019146105c6576105a1826040518060600160405280602881526020016117e7602891396001600160a01b03871660009081526006602090815260408083203384529091529020549190610e17565b6001600160a01b03851660009081526006602090815260408083203384529091529020555b6105d1848484610e43565b5060019392505050565b3360008181526006602090815260408083206001600160a01b0387168452909152812054909161052391859061061290869061168f565b610cf3565b6000546001600160a01b031633146106765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6008546000906001600160a01b0316336001600160a01b0316146107265760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161066d565b50600880546001600160a01b0319166001600160a01b0392909216919091179055600190565b6060600280546104939061163f565b3360009081526006602090815260408083206001600160a01b0386168452909152812054828110156107dd5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161066d565b6105d13385858403610cf3565b6000610523338484610e43565b6008546000906001600160a01b0316336001600160a01b03161461085d5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161066d565b600854610873906001600160a01b0316476112ae565b506001905090565b600a546000906001600160a01b0316156108cb5760405162461bcd60e51b8152602060048201526011602482015270115490cc8c0e8813140818dc99585d1959607a1b604482015260640161066d565b6000341161090b5760405162461bcd60e51b815260206004820152600d60248201526c08aa486646074409cde408aa89609b1b604482015260640161066d565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782553060009081526006602090815260408083209383529281529082902060001990559154815163c45a015560e01b815291516001600160a01b03919091169263c45a015592600480820193918290030181865afa158015610997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bb91906116a2565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4191906116a2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab291906116a2565b600a80546001600160a01b0319166001600160a01b039283161790556009543060008181526005602052604080822054815163f305d71960e01b8152600481019490945260248401526044830182905260648301919091523360848301524260a483015251919092169163f305d71991349160c480820192606092909190829003018185885af1158015610b4a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b6f91906116bf565b5050600a546040805160016209351760e01b0319815290516001600160a01b03909216925063fff6cae991600480830192600092919082900301818387803b158015610bba57600080fd5b505af1158015610bce573d6000803e3d6000fd5b505050506001905090565b6000546001600160a01b03163314610c335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066d565b6001600160a01b038116610c985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610d555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161066d565b6001600160a01b038216610db65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161066d565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008184841115610e3b5760405162461bcd60e51b815260040161066d9190611516565b505050900390565b6001600160a01b038316610ea75760405162461bcd60e51b815260206004820152602560248201527f45524332303a205472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161066d565b6001600160a01b038216610f095760405162461bcd60e51b815260206004820152602360248201527f45524332303a205472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161066d565b60008111610f725760405162461bcd60e51b815260206004820152603060248201527f45524332303a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b606482015260840161066d565b6001600160a01b03831660009081526007602052604090205460019060ff1680610fb457506001600160a01b03831660009081526007602052604090205460ff165b15610fbd575060005b600c5460ff16158015610fcd5750805b156111e057600a546001600160a01b039081169084160361107157600a546001600160a01b031660009081526005602052604081205461100e9060c8611395565b30600090815260056020526040902054119050801561106f57600c805460ff19166001179055600a546001600160a01b03166000908152600560205260409020546110639061105e9060c8611395565b6113a8565b50600c805460ff191690555b505b600b541561118157600e5442111561108d576000600b55611181565b60006110af60646110a9600b54866114f290919063ffffffff16565b90611395565b90506110bb83826114fe565b92506110fa816040518060600160405280602681526020016117c1602691396001600160a01b0388166000908152600560205260409020549190610e17565b6001600160a01b038616600090815260056020526040808220929092553081522054611126908261150a565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111779085815260200190565b60405180910390a3505b600a546001600160a01b0385811691161480156111b757506001600160a01b0383166000908152600d602052604090205460ff16155b156111e0576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b61121d826040518060600160405280602681526020016117c1602691396001600160a01b0387166000908152600560205260409020549190610e17565b6001600160a01b03808616600090815260056020526040808220939093559085168152205461124c908361150a565b6001600160a01b0380851660008181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112a09086815260200190565b60405180910390a350505050565b600082478311156112d45760405163cd78605960e01b815230600482015260240161066d565b600080841161133b57604051600160fd1b81526001600160a01b03831690600101600060405180830381855af49150503d8060008114611330576040519150601f19603f3d011682016040523d82523d6000602084013e611335565b606091505b5061138b565b6040516001600160a01b038316908590600081818185875af1925050503d8060008114611384576040519150601f19603f3d011682016040523d82523d6000602084013e611389565b606091505b505b5095945050505050565b60006113a182846116ed565b9392505050565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106113e1576113e161170f565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561143a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145e91906116a2565b816001815181106114715761147161170f565b6001600160a01b03928316602091820292909201015260095460405163791ac94760e01b815291169063791ac947906114b7908690600090869030904290600401611725565b600060405180830381600087803b1580156114d157600080fd5b505af11580156114e5573d6000803e3d6000fd5b5060019695505050505050565b60006113a18284611796565b60006113a182846117ad565b60006113a1828461168f565b600060208083528351808285015260005b8181101561154357858101830151858201604001528201611527565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461157957600080fd5b50565b6000806040838503121561158f57600080fd5b823561159a81611564565b946020939093013593505050565b6000806000606084860312156115bd57600080fd5b83356115c881611564565b925060208401356115d881611564565b929592945050506040919091013590565b6000602082840312156115fb57600080fd5b81356113a181611564565b6000806040838503121561161957600080fd5b823561162481611564565b9150602083013561163481611564565b809150509250929050565b600181811c9082168061165357607f821691505b60208210810361167357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052757610527611679565b6000602082840312156116b457600080fd5b81516113a181611564565b6000806000606084860312156116d457600080fd5b8351925060208401519150604084015190509250925092565b60008261170a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117755784516001600160a01b031683529383019391830191600101611750565b50506001600160a01b03969096166060850152505050608001529392505050565b808202811582820484141761052757610527611679565b818103818111156105275761052761167956fe45524332303a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122097f44a979da513a1620856866f76607e7d4ea9d97d20ac76639fb76fd672299364736f6c63430008140033
Deployed Bytecode
0x6080604052600436106101445760003560e01c8063715018a6116100b6578063dd62ed3e1161006f578063dd62ed3e146103ce578063ddca3f4314610414578063e086e5ec14610429578063ed9953071461043e578063f242ab4114610446578063f2fde38b1461046457600080fd5b8063715018a61461032457806374c9f6031461033b5780638da5cb5b1461035b57806395d89b4114610379578063a457c2d71461038e578063a9059cbb146103ae57600080fd5b80632dc0562d116101085780632dc0562d1461021c578063313ce5671461023a578063395093511461025c5780633af32abf1461027c5780635342acb4146102b557806370a08231146102ee57600080fd5b806306fdde03146101505780630758d9241461017b578063095ea7b3146101ad57806318160ddd146101dd57806323b872dd146101fc57600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b50610165610484565b6040516101729190611516565b60405180910390f35b34801561018757600080fd5b506009546001600160a01b03165b6040516001600160a01b039091168152602001610172565b3480156101b957600080fd5b506101cd6101c836600461157c565b610516565b6040519015158152602001610172565b3480156101e957600080fd5b506004545b604051908152602001610172565b34801561020857600080fd5b506101cd6102173660046115a8565b61052d565b34801561022857600080fd5b506008546001600160a01b0316610195565b34801561024657600080fd5b5060035460405160ff9091168152602001610172565b34801561026857600080fd5b506101cd61027736600461157c565b6105db565b34801561028857600080fd5b506101cd6102973660046115e9565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156102c157600080fd5b506101cd6102d03660046115e9565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156102fa57600080fd5b506101ee6103093660046115e9565b6001600160a01b031660009081526005602052604090205490565b34801561033057600080fd5b50610339610617565b005b34801561034757600080fd5b506101cd6103563660046115e9565b6106c0565b34801561036757600080fd5b506000546001600160a01b0316610195565b34801561038557600080fd5b5061016561074c565b34801561039a57600080fd5b506101cd6103a936600461157c565b61075b565b3480156103ba57600080fd5b506101cd6103c936600461157c565b6107ea565b3480156103da57600080fd5b506101ee6103e9366004611606565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561042057600080fd5b50600b546101ee565b34801561043557600080fd5b506101cd6107f7565b6101cd61087b565b34801561045257600080fd5b50600a546001600160a01b0316610195565b34801561047057600080fd5b5061033961047f3660046115e9565b610bd9565b6060600180546104939061163f565b80601f01602080910402602001604051908101604052809291908181526020018280546104bf9061163f565b801561050c5780601f106104e15761010080835404028352916020019161050c565b820191906000526020600020905b8154815290600101906020018083116104ef57829003601f168201915b5050505050905090565b6000610523338484610cf3565b5060015b92915050565b6001600160a01b0383166000908152600660209081526040808320338452909152812054600019146105c6576105a1826040518060600160405280602881526020016117e7602891396001600160a01b03871660009081526006602090815260408083203384529091529020549190610e17565b6001600160a01b03851660009081526006602090815260408083203384529091529020555b6105d1848484610e43565b5060019392505050565b3360008181526006602090815260408083206001600160a01b0387168452909152812054909161052391859061061290869061168f565b610cf3565b6000546001600160a01b031633146106765760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6008546000906001600160a01b0316336001600160a01b0316146107265760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161066d565b50600880546001600160a01b0319166001600160a01b0392909216919091179055600190565b6060600280546104939061163f565b3360009081526006602090815260408083206001600160a01b0386168452909152812054828110156107dd5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161066d565b6105d13385858403610cf3565b6000610523338484610e43565b6008546000906001600160a01b0316336001600160a01b03161461085d5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c657400000000604482015260640161066d565b600854610873906001600160a01b0316476112ae565b506001905090565b600a546000906001600160a01b0316156108cb5760405162461bcd60e51b8152602060048201526011602482015270115490cc8c0e8813140818dc99585d1959607a1b604482015260640161066d565b6000341161090b5760405162461bcd60e51b815260206004820152600d60248201526c08aa486646074409cde408aa89609b1b604482015260640161066d565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782553060009081526006602090815260408083209383529281529082902060001990559154815163c45a015560e01b815291516001600160a01b03919091169263c45a015592600480820193918290030181865afa158015610997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bb91906116a2565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4191906116a2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab291906116a2565b600a80546001600160a01b0319166001600160a01b039283161790556009543060008181526005602052604080822054815163f305d71960e01b8152600481019490945260248401526044830182905260648301919091523360848301524260a483015251919092169163f305d71991349160c480820192606092909190829003018185885af1158015610b4a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610b6f91906116bf565b5050600a546040805160016209351760e01b0319815290516001600160a01b03909216925063fff6cae991600480830192600092919082900301818387803b158015610bba57600080fd5b505af1158015610bce573d6000803e3d6000fd5b505050506001905090565b6000546001600160a01b03163314610c335760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161066d565b6001600160a01b038116610c985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161066d565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610d555760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161066d565b6001600160a01b038216610db65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161066d565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008184841115610e3b5760405162461bcd60e51b815260040161066d9190611516565b505050900390565b6001600160a01b038316610ea75760405162461bcd60e51b815260206004820152602560248201527f45524332303a205472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161066d565b6001600160a01b038216610f095760405162461bcd60e51b815260206004820152602360248201527f45524332303a205472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161066d565b60008111610f725760405162461bcd60e51b815260206004820152603060248201527f45524332303a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b606482015260840161066d565b6001600160a01b03831660009081526007602052604090205460019060ff1680610fb457506001600160a01b03831660009081526007602052604090205460ff165b15610fbd575060005b600c5460ff16158015610fcd5750805b156111e057600a546001600160a01b039081169084160361107157600a546001600160a01b031660009081526005602052604081205461100e9060c8611395565b30600090815260056020526040902054119050801561106f57600c805460ff19166001179055600a546001600160a01b03166000908152600560205260409020546110639061105e9060c8611395565b6113a8565b50600c805460ff191690555b505b600b541561118157600e5442111561108d576000600b55611181565b60006110af60646110a9600b54866114f290919063ffffffff16565b90611395565b90506110bb83826114fe565b92506110fa816040518060600160405280602681526020016117c1602691396001600160a01b0388166000908152600560205260409020549190610e17565b6001600160a01b038616600090815260056020526040808220929092553081522054611126908261150a565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111779085815260200190565b60405180910390a3505b600a546001600160a01b0385811691161480156111b757506001600160a01b0383166000908152600d602052604090205460ff16155b156111e0576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b61121d826040518060600160405280602681526020016117c1602691396001600160a01b0387166000908152600560205260409020549190610e17565b6001600160a01b03808616600090815260056020526040808220939093559085168152205461124c908361150a565b6001600160a01b0380851660008181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906112a09086815260200190565b60405180910390a350505050565b600082478311156112d45760405163cd78605960e01b815230600482015260240161066d565b600080841161133b57604051600160fd1b81526001600160a01b03831690600101600060405180830381855af49150503d8060008114611330576040519150601f19603f3d011682016040523d82523d6000602084013e611335565b606091505b5061138b565b6040516001600160a01b038316908590600081818185875af1925050503d8060008114611384576040519150601f19603f3d011682016040523d82523d6000602084013e611389565b606091505b505b5095945050505050565b60006113a182846116ed565b9392505050565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106113e1576113e161170f565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561143a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145e91906116a2565b816001815181106114715761147161170f565b6001600160a01b03928316602091820292909201015260095460405163791ac94760e01b815291169063791ac947906114b7908690600090869030904290600401611725565b600060405180830381600087803b1580156114d157600080fd5b505af11580156114e5573d6000803e3d6000fd5b5060019695505050505050565b60006113a18284611796565b60006113a182846117ad565b60006113a1828461168f565b600060208083528351808285015260005b8181101561154357858101830151858201604001528201611527565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461157957600080fd5b50565b6000806040838503121561158f57600080fd5b823561159a81611564565b946020939093013593505050565b6000806000606084860312156115bd57600080fd5b83356115c881611564565b925060208401356115d881611564565b929592945050506040919091013590565b6000602082840312156115fb57600080fd5b81356113a181611564565b6000806040838503121561161957600080fd5b823561162481611564565b9150602083013561163481611564565b809150509250929050565b600181811c9082168061165357607f821691505b60208210810361167357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561052757610527611679565b6000602082840312156116b457600080fd5b81516113a181611564565b6000806000606084860312156116d457600080fd5b8351925060208401519150604084015190509250925092565b60008261170a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117755784516001600160a01b031683529383019391830191600101611750565b50506001600160a01b03969096166060850152505050608001529392505050565b808202811582820484141761052757610527611679565b818103818111156105275761052761167956fe45524332303a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122097f44a979da513a1620856866f76607e7d4ea9d97d20ac76639fb76fd672299364736f6c63430008140033
Deployed Bytecode Sourcemap
628:7641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2352:102;;;;;;;;;;-1:-1:-1;2431:14:0;;-1:-1:-1;;;;;2431:14:0;2352:102;;;-1:-1:-1;;;;;731:32:9;;;713:51;;701:2;686:18;2352:102:0;567:203:9;3932:163:0;;;;;;;;;;-1:-1:-1;3932:163:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:9;;1389:22;1371:41;;1359:2;1344:18;3932:163:0;1231:187:9;2060:102:0;;;;;;;;;;-1:-1:-1;2142:12:0;;2060:102;;;1569:25:9;;;1557:2;1542:18;2060:102:0;1423:177:9;4103:403:0;;;;;;;;;;-1:-1:-1;4103:403:0;;;;;:::i;:::-;;:::i;2255:89::-;;;;;;;;;;-1:-1:-1;2326:10:0;;-1:-1:-1;;;;;2326:10:0;2255:89;;1958:94;;;;;;;;;;-1:-1:-1;2035:9:0;;1958:94;;2035:9;;;;2208:36:9;;2196:2;2181:18;1958:94:0;2066:184:9;3287:217:0;;;;;;;;;;-1:-1:-1;3287:217:0;;;;;:::i;:::-;;:::i;2697:118::-;;;;;;;;;;-1:-1:-1;2697:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;2784:23:0;2760:4;2784:23;;;:14;:23;;;;;;;;;2697:118;2823:126;;;;;;;;;;-1:-1:-1;2823:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;2914:27:0;2890:4;2914:27;;;:18;:27;;;;;;;;;2823:126;2568:121;;;;;;;;;;-1:-1:-1;2568:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;2663:18:0;2636:7;2663:18;;;:9;:18;;;;;;;2568:121;1125:133:2;;;;;;;;;;;;;:::i;:::-;;8063:203:0;;;;;;;;;;-1:-1:-1;8063:203:0;;;;;:::i;:::-;;:::i;543:70:2:-;;;;;;;;;;-1:-1:-1;581:7:2;602:6;-1:-1:-1;;;;;602:6:2;543:70;;1852:98:0;;;;;;;;;;;;;:::i;3512:412::-;;;;;;;;;;-1:-1:-1;3512:412:0;;;;;:::i;:::-;;:::i;2957:169::-;;;;;;;;;;-1:-1:-1;2957:169:0;;;;;:::i;:::-;;:::i;3134:145::-;;;;;;;;;;-1:-1:-1;3134:145:0;;;;;:::i;:::-;-1:-1:-1;;;;;3244:18:0;;;3217:7;3244:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3134:145;2170:77;;;;;;;;;;-1:-1:-1;2235:4:0;;2170:77;;7847:208;;;;;;;;;;;;;:::i;7064:775::-;;;:::i;2462:98::-;;;;;;;;;;-1:-1:-1;2539:12:0;;-1:-1:-1;;;;;2539:12:0;2462:98;;1398:223:2;;;;;;;;;;-1:-1:-1;1398:223:2;;;;;:::i;:::-;;:::i;1750:94:0:-;1798:13;1831:5;1824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750:94;:::o;3932:163::-;4009:4;4026:39;668:10:1;4049:7:0;4058:6;4026:8;:39::i;:::-;-1:-1:-1;4083:4:0;3932:163;;;;;:::o;4103:403::-;-1:-1:-1;;;;;4224:19:0;;4203:4;4224:19;;;:11;:19;;;;;;;;668:10:1;4224:33:0;;;;;;;;-1:-1:-1;;4224:54:0;4220:210;;4331:87;4367:6;4331:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4331:19:0;;;;;;:11;:19;;;;;;;;4351:10;4331:31;;;;;;;;;:87;:35;:87::i;:::-;-1:-1:-1;;;;;4295:19:0;;;;;;:11;:19;;;;;;;;668:10:1;4295:33:0;;;;;;;:123;4220:210;4440:36;4450:6;4458:9;4469:6;4440:9;:36::i;:::-;-1:-1:-1;4494:4:0;4103:403;;;;;:::o;3287:217::-;668:10:1;3376:4:0;3426:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;3426:34:0;;;;;;;;;;3376:4;;3393:81;;3417:7;;3426:47;;3463:10;;3426:47;:::i;:::-;3393:8;:81::i;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;;3749:2:9;720:67:2;;;3731:21:9;;;3768:18;;;3761:30;3827:34;3807:18;;;3800:62;3879: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;8063:203:0:-;8163:10;;8122:4;;-1:-1:-1;;;;;8163:10:0;668::1;-1:-1:-1;;;;;8147:26:0;;8139:67;;;;-1:-1:-1;;;8139:67:0;;4110:2:9;8139:67:0;;;4092:21:9;4149:2;4129:18;;;4122:30;4188;4168:18;;;4161:58;4236:18;;8139:67:0;3908:352:9;8139:67:0;-1:-1:-1;8217:10:0;:19;;-1:-1:-1;;;;;;8217:19:0;-1:-1:-1;;;;;8217:19:0;;;;;;;;;;-1:-1:-1;;8063:203:0:o;1852:98::-;1902:13;1935:7;1928:14;;;;;:::i;3512:412::-;668:10:1;3605:4:0;3649:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;3649:34:0;;;;;;;;;;3702:35;;;;3694:86;;;;-1:-1:-1;;;3694:86:0;;4467:2:9;3694:86:0;;;4449:21:9;4506:2;4486:18;;;4479:30;4545:34;4525:18;;;4518:62;-1:-1:-1;;;4596:18:9;;;4589:35;4641:19;;3694:86:0;4265:401:9;3694:86:0;3816:67;668:10:1;3839:7:0;3867:15;3848:16;:34;3816:8;:67::i;2957:169::-;3037:4;3054:42;668:10:1;3078:9:0;3089:6;3054:9;:42::i;7847:208::-;7929:10;;7888:4;;-1:-1:-1;;;;;7929:10:0;668::1;-1:-1:-1;;;;;7913:26:0;;7905:67;;;;-1:-1:-1;;;7905:67:0;;4110:2:9;7905:67:0;;;4092:21:9;4149:2;4129:18;;;4122:30;4188;4168:18;;;4161:58;4236:18;;7905:67:0;3908:352:9;7905:67:0;7983:10;;:42;;-1:-1:-1;;;;;7983:10:0;8003:21;7983:19;:42::i;:::-;;8043:4;8036:11;;7847:208;:::o;7064:775::-;7150:12;;7117:4;;-1:-1:-1;;;;;7150:12:0;7142:35;7134:65;;;;-1:-1:-1;;;7134:65:0;;4873:2:9;7134:65:0;;;4855:21:9;4912:2;4892:18;;;4885:30;-1:-1:-1;;;4931:18:9;;;4924:47;4988:18;;7134:65:0;4671:341:9;7134:65:0;7230:1;7218:9;:13;7210:39;;;;-1:-1:-1;;;7210:39:0;;5219:2:9;7210:39:0;;;5201:21:9;5258:2;5238:18;;;5231:30;-1:-1:-1;;;5277:18:9;;;5270:43;5330:18;;7210:39:0;5017:337:9;7210:39:0;7260:14;:77;;-1:-1:-1;;;;;;7260:77:0;7294:42;7260:77;;;;;7368:4;7260:14;7348:26;;;:11;:26;;;;;;;;:51;;;;;;;;;;-1:-1:-1;;7348:71:0;;7478:14;;:24;;-1:-1:-1;;;7478:24:0;;;;-1:-1:-1;;;;;7478:14:0;;;;;:22;;:24;;;;;;;;;;;:14;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;7460:54:0;;7523:4;7530:14;;;;;;;;;-1:-1:-1;;;;;7530:14:0;-1:-1:-1;;;;;7530:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7460:92;;-1:-1:-1;;;;;;7460:92:0;;;;;;;-1:-1:-1;;;;;5845:15:9;;;7460:92:0;;;5827:34:9;5897:15;;5877:18;;;5870:43;5762:18;;7460:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7430:12;:123;;-1:-1:-1;;;;;;7430:123:0;-1:-1:-1;;;;;7430:123:0;;;;;;7564:14;;7635:4;-1:-1:-1;7655:24:0;;;:9;:24;;;;;;;7564:215;;-1:-1:-1;;;7564:215:0;;;;;6265:34:9;;;;6315:18;;;6308:34;6358:18;;;6351:34;;;6401:18;;;6394:34;;;;668:10:1;6444:19:9;;;6437:44;7753:15:0;6497:19:9;;;6490:35;7564:215:0;:14;;;;;:30;;7602:9;;6199:19:9;;;;;7564:215:0;;;;;;;;;;7602:9;7564:14;:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;7790:12:0;;:19;;;-1:-1:-1;;;;;;7790:19:0;;;;-1:-1:-1;;;;;7790:12:0;;;;-1:-1:-1;7790:17:0;;:19;;;;;:12;;:19;;;;;;;:12;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7827:4;7820:11;;7064:775;:::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;;3749:2:9;720:67:2;;;3731:21:9;;;3768:18;;;3761:30;3827:34;3807:18;;;3800:62;3879:18;;720:67:2;3547:356:9;720:67:2;-1:-1:-1;;;;;1481:22:2;::::1;1473:73;;;::::0;-1:-1:-1;;;1473:73:2;;7049:2:9;1473:73:2::1;::::0;::::1;7031:21:9::0;7088:2;7068:18;;;7061:30;7127:34;7107:18;;;7100:62;-1:-1:-1;;;7178:18:9;;;7171:36;7224:19;;1473:73:2::1;6847: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;4514:335:0:-;-1:-1:-1;;;;;4607:19:0;;4599:68;;;;-1:-1:-1;;;4599:68:0;;7456:2:9;4599:68:0;;;7438:21:9;7495:2;7475:18;;;7468:30;7534:34;7514:18;;;7507:62;-1:-1:-1;;;7585:18:9;;;7578:34;7629:19;;4599:68:0;7254:400:9;4599:68:0;-1:-1:-1;;;;;4686:21:0;;4678:68;;;;-1:-1:-1;;;4678:68:0;;7861:2:9;4678:68:0;;;7843:21:9;7900:2;7880:18;;;7873:30;7939:34;7919:18;;;7912:62;-1:-1:-1;;;7990:18:9;;;7983:32;8032:19;;4678:68:0;7659:398:9;4678:68:0;-1:-1:-1;;;;;4757:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;4809:32;;1569:25:9;;;4809:32:0;;1542:18:9;4809:32:0;;;;;;;4514: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;5301:1755:0:-;-1:-1:-1;;;;;5389:18:0;;5381:68;;;;-1:-1:-1;;;5381:68:0;;8264:2:9;5381:68:0;;;8246:21:9;8303:2;8283:18;;;8276:30;8342:34;8322:18;;;8315:62;-1:-1:-1;;;8393:18:9;;;8386:35;8438:19;;5381:68:0;8062:401:9;5381:68:0;-1:-1:-1;;;;;5468:16:0;;5460:64;;;;-1:-1:-1;;;5460:64:0;;8670:2:9;5460:64:0;;;8652:21:9;8709:2;8689:18;;;8682:30;8748:34;8728:18;;;8721:62;-1:-1:-1;;;8799:18:9;;;8792:33;8842:19;;5460:64:0;8468:399:9;5460:64:0;5552:1;5543:6;:10;5535:71;;;;-1:-1:-1;;;5535:71:0;;9074:2:9;5535:71:0;;;9056:21:9;9113:2;9093:18;;;9086:30;9152:34;9132:18;;;9125:62;-1:-1:-1;;;9203:18:9;;;9196:46;9259:19;;5535:71:0;8872:412:9;5535:71:0;-1:-1:-1;;;;;5651:24:0;;5617:12;5651:24;;;:18;:24;;;;;;5632:4;;5651:24;;;:50;;-1:-1:-1;;;;;;5679:22:0;;;;;;:18;:22;;;;;;;;5651:50;5647:98;;;-1:-1:-1;5728:5:0;5647:98;5760:9;;;;5759:10;:21;;;;;5773:7;5759:21;5755:1102;;;5815:12;;-1:-1:-1;;;;;5815:12:0;;;5801:27;;;;5797:364;;5909:12;;-1:-1:-1;;;;;5909:12:0;5849;5891:32;;;:9;:32;;;;;;:41;;5928:3;5891:36;:41::i;:::-;5882:4;5864:24;;;;:9;:24;;;;;;:68;;-1:-1:-1;5951:195:0;;;;5987:9;:16;;-1:-1:-1;;5987:16:0;5999:4;5987:16;;;6062:12;;-1:-1:-1;;;;;6062:12:0;5987:9;6044:32;;;:9;:32;;;;;;6026:60;;6044:41;;6081:3;6044:36;:41::i;:::-;6026:17;:60::i;:::-;-1:-1:-1;6109:9:0;:17;;-1:-1:-1;;6109:17:0;;;5951:195;5830:331;5797:364;6179:4;;:8;6175:539;;6230:19;;6212:15;:37;6208:491;;;6281:1;6274:4;:8;6208:491;;;6331:13;6347:25;6368:3;6347:16;6358:4;;6347:6;:10;;:16;;;;:::i;:::-;:20;;:25::i;:::-;6331:41;-1:-1:-1;6404:17:0;:6;6331:41;6404:10;:17::i;:::-;6395:26;;6462:68;6482:5;6462:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6462:15:0;;;;;;:9;:15;;;;;;;:68;:19;:68::i;:::-;-1:-1:-1;;;;;6444:15:0;;;;;;:9;:15;;;;;;:86;;;;6598:4;6580:24;;;;:35;;6609:5;6580:28;:35::i;:::-;6571:4;6553:24;;;;:9;:24;;;;;;;:62;;;;6643:36;;-1:-1:-1;;;;;6643:36:0;;;;;;;6673:5;1569:25:9;;1557:2;1542:18;;1423:177;6643:36:0;;;;;;;;6308:391;6208:491;6748:12;;-1:-1:-1;;;;;6732:29:0;;;6748:12;;6732:29;:52;;;;-1:-1:-1;;;;;;6766:18:0;;;;;;:14;:18;;;;;;;;6765:19;6732:52;6728:118;;;-1:-1:-1;;;;;6805:18:0;;;;;;:14;:18;;;;;:25;;-1:-1:-1;;6805:25:0;6826:4;6805:25;;;6728:118;6885:69;6905:6;6885:69;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6885:15:0;;;;;;:9;:15;;;;;;;:69;:19;:69::i;:::-;-1:-1:-1;;;;;6867:15:0;;;;;;;:9;:15;;;;;;:87;;;;6981:13;;;;;;;:25;;6999:6;6981:17;:25::i;:::-;-1:-1:-1;;;;;6965:13:0;;;;;;;:9;:13;;;;;;;:41;;;;7022:26;;;;;;;;;;7041:6;1569:25:9;;1557:2;1542:18;;1423:177;7022:26:0;;;;;;;;5370:1686;5301:1755;;;:::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;;;713:51:9;686:18;;1767:41:7;567:203:9;1709:111:7;1831:12;1859:1;1850:6;:10;1849:80;;1901:28;;-1:-1:-1;;;9490:16:9;;-1:-1:-1;;;;;1901:23:7;;;9531:1:9;9522: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;4857:436:0:-;4964:16;;;4978:1;4964:16;;;;;;;;4923:4;;;;4964:16;4978:1;4964:16;;;;;;;;;;-1:-1:-1;4964:16:0;4940:40;;5009:4;4991;4996:1;4991:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4991:23:0;;;:7;;;;;;;;;;:23;;;;5035:14;;:21;;;-1:-1:-1;;;5035:21:0;;;;:14;;;;;:19;;:21;;;;;4991:7;;5035:21;;;;;:14;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5025:4;5030:1;5025:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;5025:31:0;;;:7;;;;;;;;;:31;5067:14;;:196;;-1:-1:-1;;;5067:196:0;;:14;;;:65;;:196;;5147:12;;5067:14;;5190:4;;5217;;5237:15;;5067:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5281:4:0;;4857:436;-1:-1:-1;;;;;;4857: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;775:131::-;-1:-1:-1;;;;;850:31:9;;840:42;;830:70;;896:1;893;886:12;830:70;775:131;:::o;911:315::-;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:9:o;1605:456::-;1682:6;1690;1698;1751:2;1739:9;1730:7;1726:23;1722:32;1719:52;;;1767:1;1764;1757:12;1719:52;1806:9;1793:23;1825:31;1850:5;1825:31;:::i;:::-;1875:5;-1:-1:-1;1932:2:9;1917:18;;1904:32;1945:33;1904:32;1945:33;:::i;:::-;1605:456;;1997:7;;-1:-1:-1;;;2051:2:9;2036:18;;;;2023:32;;1605: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;3285:127::-;3346:10;3341:3;3337:20;3334:1;3327:31;3377:4;3374:1;3367:15;3401:4;3398:1;3391:15;3417:125;3482:9;;;3503:10;;;3500:36;;;3516:18;;:::i;5359:251::-;5429:6;5482:2;5470:9;5461:7;5457:23;5453:32;5450:52;;;5498:1;5495;5488:12;5450:52;5530:9;5524:16;5549:31;5574:5;5549:31;:::i;6536:306::-;6624:6;6632;6640;6693:2;6681:9;6672:7;6668:23;6664:32;6661:52;;;6709:1;6706;6699:12;6661:52;6738:9;6732:16;6722:26;;6788:2;6777:9;6773:18;6767:25;6757:35;;6832:2;6821:9;6817:18;6811:25;6801:35;;6536:306;;;;;:::o;9754:217::-;9794:1;9820;9810:132;;9864:10;9859:3;9855:20;9852:1;9845:31;9899:4;9896:1;9889:15;9927:4;9924:1;9917:15;9810:132;-1:-1:-1;9956:9:9;;9754:217::o;10108:127::-;10169:10;10164:3;10160:20;10157:1;10150:31;10200:4;10197:1;10190:15;10224:4;10221:1;10214:15;10240:980;10502:4;10550:3;10539:9;10535:19;10581:6;10570:9;10563:25;10607:2;10645:6;10640:2;10629:9;10625:18;10618:34;10688:3;10683:2;10672:9;10668:18;10661:31;10712:6;10747;10741:13;10778:6;10770;10763:22;10816:3;10805:9;10801:19;10794:26;;10855:2;10847:6;10843:15;10829:29;;10876:1;10886:195;10900:6;10897:1;10894:13;10886:195;;;10965:13;;-1:-1:-1;;;;;10961:39:9;10949:52;;11056:15;;;;11021:12;;;;10997:1;10915:9;10886:195;;;-1:-1:-1;;;;;;;11137:32:9;;;;11132:2;11117:18;;11110:60;-1:-1:-1;;;11201:3:9;11186:19;11179:35;11098:3;10240:980;-1:-1:-1;;;10240:980:9:o;11225:168::-;11298:9;;;11329;;11346:15;;;11340:22;;11326:37;11316:71;;11367:18;;:::i;11398:128::-;11465:9;;;11486:11;;;11483:37;;;11500:18;;:::i
Swarm Source
ipfs://97f44a979da513a1620856866f76607e7d4ea9d97d20ac76639fb76fd6722993
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.