Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MemeHuntToken
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-02-11 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) 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) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: contracts/MemeHunt.sol pragma solidity ^0.8.20; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure 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); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract MemeHuntToken is ERC20, Ownable { mapping (address => bool) public exemptFromFees; uint256 public sellTax; uint256 public maxSellTax; address public lpPair; address public rewardManager; address public taxWallet; event SetExemptFromFees(address _address, bool _isExempt); event UpdatedSellTax(uint256 newAmt); event UpdatedTaxWallet(address newTaxWallet); event Burned(uint256 amount); constructor() ERC20("MemeHunt", "MHNT") Ownable(msg.sender) { _mint(owner(), 1_000_000_000_000 * 1e18); sellTax = 5; maxSellTax = 5; taxWallet = address(0xF82f4c9b4537bF9A777DaB3c40Be1d98859717EB); address router = address(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff); address pinkLock = address(0x6C9A0D8B1c7a95a323d744dE30cf027694710633); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); lpPair = _uniswapV2Pair; _approve(address(this), router, type(uint256).max); exemptFromFees[owner()] = true; exemptFromFees[pinkLock] = true; exemptFromFees[address(this)] = true; exemptFromFees[address(0xdead)] = true; rewardManager=taxWallet; } receive() external payable {} function claimStuckTokens(address token) external onlyOwner { if (token == address(0x0)) { payable(msg.sender).transfer(address(this).balance); return; } IERC20(token).transfer(msg.sender, IERC20(token).balanceOf(address(this))); } function burn(uint256 weiAmount) external onlyOwner { require(balanceOf(rewardManager) > weiAmount, "Insufficient balance to burn"); _burn(rewardManager, weiAmount); emit Burned(weiAmount); } function _update( address from, address to, uint256 amount ) internal virtual override { if(exemptFromFees[from] || exemptFromFees[to]){ super._update(from,to,amount); return; } amount -= handleTax(from, amount); super._update(from,to,amount); } function handleTax(address from, uint256 amount) internal returns (uint256){ uint256 tax = 0; if (sellTax > 0){ tax = amount * sellTax / 100; } if(tax > 0){ super._update(from, rewardManager, tax); } return tax; } function setExemptFromFees(address _address, bool _isExempt) external onlyOwner { require(_address != address(0), "Zero Address"); exemptFromFees[_address] = _isExempt; emit SetExemptFromFees(_address, _isExempt); } function updateSellTax(uint256 _sellTax) external onlyOwner { require(_sellTax <= maxSellTax, "Cannot set tax higher than maxSellTax!"); require(_sellTax >= 0, "Cannot set tax lower than 0!"); sellTax = _sellTax; emit UpdatedSellTax(sellTax); } function updateRewardManager(address newRewardManager) external onlyOwner { require(newRewardManager != address(0), "Fee Address cannot be zero address"); require(rewardManager == taxWallet, "Reward Manager can be set only once"); rewardManager = newRewardManager; exemptFromFees[rewardManager] = true; super._update(taxWallet,rewardManager,balanceOf(taxWallet)); emit UpdatedTaxWallet(rewardManager); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","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":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"SetExemptFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmt","type":"uint256"}],"name":"UpdatedSellTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"UpdatedTaxWallet","type":"event"},{"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":"value","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":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"rewardManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"setExemptFromFees","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"newRewardManager","type":"address"}],"name":"updateRewardManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801562000010575f80fd5b50336040518060400160405280600881526020017f4d656d6548756e740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d484e540000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000ef0565b508060049081620000a1919062000ef0565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e919062001017565b60405180910390fd5b62000128816200059360201b60201c565b50620001576200013d6200065660201b60201c565b6c0c9f2c9cd04674edea400000006200067e60201b60201c565b6005600781905550600560088190555073f82f4c9b4537bf9a777dab3c40be1d98859717eb600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73a5e0829caced8ffdd4de3c43696c57f7d7a678ff90505f736c9a0d8b1c7a95a323d744de30cf02769471063390505f8290505f8173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000260919062001065565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ec919062001065565b6040518363ffffffff1660e01b81526004016200030b92919062001095565b6020604051808303815f875af115801562000328573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200034e919062001065565b90508060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003c330857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200070860201b60201c565b600160065f620003d86200065660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f61dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062001276565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006f1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620006e8919062001017565b60405180910390fd5b620007045f83836200072260201b60201c565b5050565b6200071d83838360016200081760201b60201c565b505050565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680620007be575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15620007dd57620007d7838383620009ef60201b60201c565b62000812565b620007ef838262000c1360201b60201c565b81620007fc9190620010ed565b905062000811838383620009ef60201b60201c565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200088a575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000881919062001017565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008fd575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401620008f4919062001017565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015620009e9578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620009e0919062001138565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000a43578060025f82825462000a36919062001153565b9250508190555062000b14565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000acf578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000ac6939291906200118d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b5d578060025f828254039250508190555062000ba7565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c06919062001138565b60405180910390a3505050565b5f805f90505f600754111562000c445760646007548462000c359190620011c8565b62000c4191906200123f565b90505b5f81111562000c825762000c8184600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683620009ef60201b60201c565b5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000d0857607f821691505b60208210810362000d1e5762000d1d62000cc3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d45565b62000d8e868362000d45565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000dd862000dd262000dcc8462000da6565b62000daf565b62000da6565b9050919050565b5f819050919050565b62000df38362000db8565b62000e0b62000e028262000ddf565b84845462000d51565b825550505050565b5f90565b62000e2162000e13565b62000e2e81848462000de8565b505050565b5b8181101562000e555762000e495f8262000e17565b60018101905062000e34565b5050565b601f82111562000ea45762000e6e8162000d24565b62000e798462000d36565b8101602085101562000e89578190505b62000ea162000e988562000d36565b83018262000e33565b50505b505050565b5f82821c905092915050565b5f62000ec65f198460080262000ea9565b1980831691505092915050565b5f62000ee0838362000eb5565b9150826002028217905092915050565b62000efb8262000c8c565b67ffffffffffffffff81111562000f175762000f1662000c96565b5b62000f23825462000cf0565b62000f3082828562000e59565b5f60209050601f83116001811462000f66575f841562000f51578287015190505b62000f5d858262000ed3565b86555062000fcc565b601f19841662000f768662000d24565b5f5b8281101562000f9f5784890151825560018201915060208501945060208101905062000f78565b8683101562000fbf578489015162000fbb601f89168262000eb5565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000fff8262000fd4565b9050919050565b620010118162000ff3565b82525050565b5f6020820190506200102c5f83018462001006565b92915050565b5f80fd5b620010418162000ff3565b81146200104c575f80fd5b50565b5f815190506200105f8162001036565b92915050565b5f602082840312156200107d576200107c62001032565b5b5f6200108c848285016200104f565b91505092915050565b5f604082019050620010aa5f83018562001006565b620010b9602083018462001006565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620010f98262000da6565b9150620011068362000da6565b9250828203905081811115620011215762001120620010c0565b5b92915050565b620011328162000da6565b82525050565b5f6020820190506200114d5f83018462001127565b92915050565b5f6200115f8262000da6565b91506200116c8362000da6565b9250828201905080821115620011875762001186620010c0565b5b92915050565b5f606082019050620011a25f83018662001006565b620011b1602083018562001127565b620011c0604083018462001127565b949350505050565b5f620011d48262000da6565b9150620011e18362000da6565b9250828202620011f18162000da6565b915082820484148315176200120b576200120a620010c0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200124b8262000da6565b9150620012588362000da6565b9250826200126b576200126a62001212565b5b828204905092915050565b6121ad80620012845f395ff3fe608060405260043610610143575f3560e01c80635a90a49e116100b5578063a411209a1161006e578063a411209a14610444578063a9059cbb1461046e578063cc1776d3146104aa578063dd62ed3e146104d4578063f2fde38b14610510578063f9d0831a146105385761014a565b80635a90a49e1461033a57806370a0823114610376578063715018a6146103b257806377b27d1f146103c85780638da5cb5b146103f057806395d89b411461041a5761014a565b806318160ddd1161010757806318160ddd1461022e57806323b872dd146102585780632dc0562d14610294578063313ce567146102be57806342966c68146102e8578063452ed4f1146103105761014a565b8063050eb2eb1461014e57806306fdde0314610176578063095ea7b3146101a05780630f4ef8a6146101dc57806312185a39146102065761014a565b3661014a57005b5f80fd5b348015610159575f80fd5b50610174600480360381019061016f91906118e8565b610560565b005b348015610181575f80fd5b5061018a61080d565b604051610197919061199d565b60405180910390f35b3480156101ab575f80fd5b506101c660048036038101906101c191906119f0565b61089d565b6040516101d39190611a48565b60405180910390f35b3480156101e7575f80fd5b506101f06108bf565b6040516101fd9190611a70565b60405180910390f35b348015610211575f80fd5b5061022c60048036038101906102279190611a89565b6108e4565b005b348015610239575f80fd5b506102426109b7565b60405161024f9190611ac3565b60405180910390f35b348015610263575f80fd5b5061027e60048036038101906102799190611adc565b6109c0565b60405161028b9190611a48565b60405180910390f35b34801561029f575f80fd5b506102a86109ee565b6040516102b59190611a70565b60405180910390f35b3480156102c9575f80fd5b506102d2610a13565b6040516102df9190611b47565b60405180910390f35b3480156102f3575f80fd5b5061030e60048036038101906103099190611a89565b610a1b565b005b34801561031b575f80fd5b50610324610af3565b6040516103319190611a70565b60405180910390f35b348015610345575f80fd5b50610360600480360381019061035b91906118e8565b610b18565b60405161036d9190611a48565b60405180910390f35b348015610381575f80fd5b5061039c600480360381019061039791906118e8565b610b35565b6040516103a99190611ac3565b60405180910390f35b3480156103bd575f80fd5b506103c6610b7a565b005b3480156103d3575f80fd5b506103ee60048036038101906103e99190611b8a565b610b8d565b005b3480156103fb575f80fd5b50610404610c94565b6040516104119190611a70565b60405180910390f35b348015610425575f80fd5b5061042e610cbc565b60405161043b919061199d565b60405180910390f35b34801561044f575f80fd5b50610458610d4c565b6040516104659190611ac3565b60405180910390f35b348015610479575f80fd5b50610494600480360381019061048f91906119f0565b610d52565b6040516104a19190611a48565b60405180910390f35b3480156104b5575f80fd5b506104be610d74565b6040516104cb9190611ac3565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f59190611bc8565b610d7a565b6040516105079190611ac3565b60405180910390f35b34801561051b575f80fd5b50610536600480360381019061053191906118e8565b610dfc565b005b348015610543575f80fd5b5061055e600480360381019061055991906118e8565b610e80565b005b610568610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611c76565b60405180910390fd5b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067d90611d04565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506107b2600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107ad600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610b35565b611082565b7ff687226726f06f225612db0cafada16a8d19d81b7e3a544448c9943d8f6f8682600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516108029190611a70565b60405180910390a150565b60606003805461081c90611d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461084890611d4f565b80156108935780601f1061086a57610100808354040283529160200191610893565b820191905f5260205f20905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b5f806108a761129b565b90506108b48185856112a2565b600191505092915050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108ec610ffb565b600854811115610931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092890611def565b60405180910390fd5b5f811015610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90611e57565b60405180910390fd5b806007819055507fa02824f65350567bc405e202b741e7ca6274004a9feeb44149df72b8bd599c976007546040516109ac9190611ac3565b60405180910390a150565b5f600254905090565b5f806109ca61129b565b90506109d78582856112b4565b6109e2858585611346565b60019150509392505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610a23610ffb565b80610a4e600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610b35565b11610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590611ebf565b60405180910390fd5b610ab9600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611436565b7fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e81604051610ae89190611ac3565b60405180910390a150565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b82610ffb565b610b8b5f6114b5565b565b610b95610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611f27565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f998cce27cbf44405c67eb636a634d5e2f2e6ff248b3d71fbbbb022f3c4c6dd2d8282604051610c88929190611f45565b60405180910390a15050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ccb90611d4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf790611d4f565b8015610d425780601f10610d1957610100808354040283529160200191610d42565b820191905f5260205f20905b815481529060010190602001808311610d2557829003601f168201915b5050505050905090565b60085481565b5f80610d5c61129b565b9050610d69818585611346565b600191505092915050565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e04610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e74575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e6b9190611a70565b60405180910390fd5b610e7d816114b5565b50565b610e88610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f04573373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610efe573d5f803e3d5ffd5b50610ff8565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f5a9190611a70565b602060405180830381865afa158015610f75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f999190611f80565b6040518363ffffffff1660e01b8152600401610fb6929190611fab565b6020604051808303815f875af1158015610fd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ff69190611fe6565b505b50565b61100361129b565b73ffffffffffffffffffffffffffffffffffffffff16611021610c94565b73ffffffffffffffffffffffffffffffffffffffff16146110805761104461129b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110779190611a70565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d2578060025f8282546110c6919061203e565b925050819055506111a0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561115b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161115293929190612071565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e7578060025f8282540392505081905550611231565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161128e9190611ac3565b60405180910390a3505050565b5f33905090565b6112af8383836001611578565b505050565b5f6112bf8484610d7a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113405781811015611331578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161132893929190612071565b60405180910390fd5b61133f84848484035f611578565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113ad9190611a70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611426575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161141d9190611a70565b60405180910390fd5b611431838383611747565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114a6575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161149d9190611a70565b60405180910390fd5b6114b1825f83611747565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115e8575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115df9190611a70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611658575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161164f9190611a70565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611741578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117389190611ac3565b60405180910390a35b50505050565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806117e2575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156117f7576117f2838383611082565b61181a565b611801838261181f565b8161180c91906120a6565b9050611819838383611082565b5b505050565b5f805f90505f600754111561184b5760646007548461183e91906120d9565b6118489190612147565b90505b5f8111156118805761187f84600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611082565b5b8091505092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118b78261188e565b9050919050565b6118c7816118ad565b81146118d1575f80fd5b50565b5f813590506118e2816118be565b92915050565b5f602082840312156118fd576118fc61188a565b5b5f61190a848285016118d4565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561194a57808201518184015260208101905061192f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61196f82611913565b611979818561191d565b935061198981856020860161192d565b61199281611955565b840191505092915050565b5f6020820190508181035f8301526119b58184611965565b905092915050565b5f819050919050565b6119cf816119bd565b81146119d9575f80fd5b50565b5f813590506119ea816119c6565b92915050565b5f8060408385031215611a0657611a0561188a565b5b5f611a13858286016118d4565b9250506020611a24858286016119dc565b9150509250929050565b5f8115159050919050565b611a4281611a2e565b82525050565b5f602082019050611a5b5f830184611a39565b92915050565b611a6a816118ad565b82525050565b5f602082019050611a835f830184611a61565b92915050565b5f60208284031215611a9e57611a9d61188a565b5b5f611aab848285016119dc565b91505092915050565b611abd816119bd565b82525050565b5f602082019050611ad65f830184611ab4565b92915050565b5f805f60608486031215611af357611af261188a565b5b5f611b00868287016118d4565b9350506020611b11868287016118d4565b9250506040611b22868287016119dc565b9150509250925092565b5f60ff82169050919050565b611b4181611b2c565b82525050565b5f602082019050611b5a5f830184611b38565b92915050565b611b6981611a2e565b8114611b73575f80fd5b50565b5f81359050611b8481611b60565b92915050565b5f8060408385031215611ba057611b9f61188a565b5b5f611bad858286016118d4565b9250506020611bbe85828601611b76565b9150509250929050565b5f8060408385031215611bde57611bdd61188a565b5b5f611beb858286016118d4565b9250506020611bfc858286016118d4565b9150509250929050565b7f46656520416464726573732063616e6e6f74206265207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c6060228361191d565b9150611c6b82611c06565b604082019050919050565b5f6020820190508181035f830152611c8d81611c54565b9050919050565b7f526577617264204d616e616765722063616e20626520736574206f6e6c79206f5f8201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b5f611cee60238361191d565b9150611cf982611c94565b604082019050919050565b5f6020820190508181035f830152611d1b81611ce2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611d6657607f821691505b602082108103611d7957611d78611d22565b5b50919050565b7f43616e6e6f74207365742074617820686967686572207468616e206d617853655f8201527f6c6c546178210000000000000000000000000000000000000000000000000000602082015250565b5f611dd960268361191d565b9150611de482611d7f565b604082019050919050565b5f6020820190508181035f830152611e0681611dcd565b9050919050565b7f43616e6e6f742073657420746178206c6f776572207468616e203021000000005f82015250565b5f611e41601c8361191d565b9150611e4c82611e0d565b602082019050919050565b5f6020820190508181035f830152611e6e81611e35565b9050919050565b7f496e73756666696369656e742062616c616e636520746f206275726e000000005f82015250565b5f611ea9601c8361191d565b9150611eb482611e75565b602082019050919050565b5f6020820190508181035f830152611ed681611e9d565b9050919050565b7f5a65726f204164647265737300000000000000000000000000000000000000005f82015250565b5f611f11600c8361191d565b9150611f1c82611edd565b602082019050919050565b5f6020820190508181035f830152611f3e81611f05565b9050919050565b5f604082019050611f585f830185611a61565b611f656020830184611a39565b9392505050565b5f81519050611f7a816119c6565b92915050565b5f60208284031215611f9557611f9461188a565b5b5f611fa284828501611f6c565b91505092915050565b5f604082019050611fbe5f830185611a61565b611fcb6020830184611ab4565b9392505050565b5f81519050611fe081611b60565b92915050565b5f60208284031215611ffb57611ffa61188a565b5b5f61200884828501611fd2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612048826119bd565b9150612053836119bd565b925082820190508082111561206b5761206a612011565b5b92915050565b5f6060820190506120845f830186611a61565b6120916020830185611ab4565b61209e6040830184611ab4565b949350505050565b5f6120b0826119bd565b91506120bb836119bd565b92508282039050818111156120d3576120d2612011565b5b92915050565b5f6120e3826119bd565b91506120ee836119bd565b92508282026120fc816119bd565b9150828204841483151761211357612112612011565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612151826119bd565b915061215c836119bd565b92508261216c5761216b61211a565b5b82820490509291505056fea26469706673582212204d4c2c55517fd8718fbb9bf181c9599bf75a399374a70e4c7c7b26519fbfbad164736f6c63430008180033
Deployed Bytecode
0x608060405260043610610143575f3560e01c80635a90a49e116100b5578063a411209a1161006e578063a411209a14610444578063a9059cbb1461046e578063cc1776d3146104aa578063dd62ed3e146104d4578063f2fde38b14610510578063f9d0831a146105385761014a565b80635a90a49e1461033a57806370a0823114610376578063715018a6146103b257806377b27d1f146103c85780638da5cb5b146103f057806395d89b411461041a5761014a565b806318160ddd1161010757806318160ddd1461022e57806323b872dd146102585780632dc0562d14610294578063313ce567146102be57806342966c68146102e8578063452ed4f1146103105761014a565b8063050eb2eb1461014e57806306fdde0314610176578063095ea7b3146101a05780630f4ef8a6146101dc57806312185a39146102065761014a565b3661014a57005b5f80fd5b348015610159575f80fd5b50610174600480360381019061016f91906118e8565b610560565b005b348015610181575f80fd5b5061018a61080d565b604051610197919061199d565b60405180910390f35b3480156101ab575f80fd5b506101c660048036038101906101c191906119f0565b61089d565b6040516101d39190611a48565b60405180910390f35b3480156101e7575f80fd5b506101f06108bf565b6040516101fd9190611a70565b60405180910390f35b348015610211575f80fd5b5061022c60048036038101906102279190611a89565b6108e4565b005b348015610239575f80fd5b506102426109b7565b60405161024f9190611ac3565b60405180910390f35b348015610263575f80fd5b5061027e60048036038101906102799190611adc565b6109c0565b60405161028b9190611a48565b60405180910390f35b34801561029f575f80fd5b506102a86109ee565b6040516102b59190611a70565b60405180910390f35b3480156102c9575f80fd5b506102d2610a13565b6040516102df9190611b47565b60405180910390f35b3480156102f3575f80fd5b5061030e60048036038101906103099190611a89565b610a1b565b005b34801561031b575f80fd5b50610324610af3565b6040516103319190611a70565b60405180910390f35b348015610345575f80fd5b50610360600480360381019061035b91906118e8565b610b18565b60405161036d9190611a48565b60405180910390f35b348015610381575f80fd5b5061039c600480360381019061039791906118e8565b610b35565b6040516103a99190611ac3565b60405180910390f35b3480156103bd575f80fd5b506103c6610b7a565b005b3480156103d3575f80fd5b506103ee60048036038101906103e99190611b8a565b610b8d565b005b3480156103fb575f80fd5b50610404610c94565b6040516104119190611a70565b60405180910390f35b348015610425575f80fd5b5061042e610cbc565b60405161043b919061199d565b60405180910390f35b34801561044f575f80fd5b50610458610d4c565b6040516104659190611ac3565b60405180910390f35b348015610479575f80fd5b50610494600480360381019061048f91906119f0565b610d52565b6040516104a19190611a48565b60405180910390f35b3480156104b5575f80fd5b506104be610d74565b6040516104cb9190611ac3565b60405180910390f35b3480156104df575f80fd5b506104fa60048036038101906104f59190611bc8565b610d7a565b6040516105079190611ac3565b60405180910390f35b34801561051b575f80fd5b50610536600480360381019061053191906118e8565b610dfc565b005b348015610543575f80fd5b5061055e600480360381019061055991906118e8565b610e80565b005b610568610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105cd90611c76565b60405180910390fd5b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067d90611d04565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506107b2600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107ad600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610b35565b611082565b7ff687226726f06f225612db0cafada16a8d19d81b7e3a544448c9943d8f6f8682600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516108029190611a70565b60405180910390a150565b60606003805461081c90611d4f565b80601f016020809104026020016040519081016040528092919081815260200182805461084890611d4f565b80156108935780601f1061086a57610100808354040283529160200191610893565b820191905f5260205f20905b81548152906001019060200180831161087657829003601f168201915b5050505050905090565b5f806108a761129b565b90506108b48185856112a2565b600191505092915050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108ec610ffb565b600854811115610931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092890611def565b60405180910390fd5b5f811015610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b90611e57565b60405180910390fd5b806007819055507fa02824f65350567bc405e202b741e7ca6274004a9feeb44149df72b8bd599c976007546040516109ac9190611ac3565b60405180910390a150565b5f600254905090565b5f806109ca61129b565b90506109d78582856112b4565b6109e2858585611346565b60019150509392505050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610a23610ffb565b80610a4e600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610b35565b11610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590611ebf565b60405180910390fd5b610ab9600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611436565b7fd83c63197e8e676d80ab0122beba9a9d20f3828839e9a1d6fe81d242e9cd7e6e81604051610ae89190611ac3565b60405180910390a150565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6006602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610b82610ffb565b610b8b5f6114b5565b565b610b95610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90611f27565b60405180910390fd5b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f998cce27cbf44405c67eb636a634d5e2f2e6ff248b3d71fbbbb022f3c4c6dd2d8282604051610c88929190611f45565b60405180910390a15050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ccb90611d4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf790611d4f565b8015610d425780601f10610d1957610100808354040283529160200191610d42565b820191905f5260205f20905b815481529060010190602001808311610d2557829003601f168201915b5050505050905090565b60085481565b5f80610d5c61129b565b9050610d69818585611346565b600191505092915050565b60075481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e04610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e74575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e6b9190611a70565b60405180910390fd5b610e7d816114b5565b50565b610e88610ffb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f04573373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610efe573d5f803e3d5ffd5b50610ff8565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f5a9190611a70565b602060405180830381865afa158015610f75573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f999190611f80565b6040518363ffffffff1660e01b8152600401610fb6929190611fab565b6020604051808303815f875af1158015610fd2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ff69190611fe6565b505b50565b61100361129b565b73ffffffffffffffffffffffffffffffffffffffff16611021610c94565b73ffffffffffffffffffffffffffffffffffffffff16146110805761104461129b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110779190611a70565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110d2578060025f8282546110c6919061203e565b925050819055506111a0565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561115b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161115293929190612071565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e7578060025f8282540392505081905550611231565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161128e9190611ac3565b60405180910390a3505050565b5f33905090565b6112af8383836001611578565b505050565b5f6112bf8484610d7a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113405781811015611331578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161132893929190612071565b60405180910390fd5b61133f84848484035f611578565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113b6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016113ad9190611a70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611426575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161141d9190611a70565b60405180910390fd5b611431838383611747565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114a6575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161149d9190611a70565b60405180910390fd5b6114b1825f83611747565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115e8575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016115df9190611a70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611658575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161164f9190611a70565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611741578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516117389190611ac3565b60405180910390a35b50505050565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806117e2575060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156117f7576117f2838383611082565b61181a565b611801838261181f565b8161180c91906120a6565b9050611819838383611082565b5b505050565b5f805f90505f600754111561184b5760646007548461183e91906120d9565b6118489190612147565b90505b5f8111156118805761187f84600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611082565b5b8091505092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118b78261188e565b9050919050565b6118c7816118ad565b81146118d1575f80fd5b50565b5f813590506118e2816118be565b92915050565b5f602082840312156118fd576118fc61188a565b5b5f61190a848285016118d4565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561194a57808201518184015260208101905061192f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61196f82611913565b611979818561191d565b935061198981856020860161192d565b61199281611955565b840191505092915050565b5f6020820190508181035f8301526119b58184611965565b905092915050565b5f819050919050565b6119cf816119bd565b81146119d9575f80fd5b50565b5f813590506119ea816119c6565b92915050565b5f8060408385031215611a0657611a0561188a565b5b5f611a13858286016118d4565b9250506020611a24858286016119dc565b9150509250929050565b5f8115159050919050565b611a4281611a2e565b82525050565b5f602082019050611a5b5f830184611a39565b92915050565b611a6a816118ad565b82525050565b5f602082019050611a835f830184611a61565b92915050565b5f60208284031215611a9e57611a9d61188a565b5b5f611aab848285016119dc565b91505092915050565b611abd816119bd565b82525050565b5f602082019050611ad65f830184611ab4565b92915050565b5f805f60608486031215611af357611af261188a565b5b5f611b00868287016118d4565b9350506020611b11868287016118d4565b9250506040611b22868287016119dc565b9150509250925092565b5f60ff82169050919050565b611b4181611b2c565b82525050565b5f602082019050611b5a5f830184611b38565b92915050565b611b6981611a2e565b8114611b73575f80fd5b50565b5f81359050611b8481611b60565b92915050565b5f8060408385031215611ba057611b9f61188a565b5b5f611bad858286016118d4565b9250506020611bbe85828601611b76565b9150509250929050565b5f8060408385031215611bde57611bdd61188a565b5b5f611beb858286016118d4565b9250506020611bfc858286016118d4565b9150509250929050565b7f46656520416464726573732063616e6e6f74206265207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c6060228361191d565b9150611c6b82611c06565b604082019050919050565b5f6020820190508181035f830152611c8d81611c54565b9050919050565b7f526577617264204d616e616765722063616e20626520736574206f6e6c79206f5f8201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b5f611cee60238361191d565b9150611cf982611c94565b604082019050919050565b5f6020820190508181035f830152611d1b81611ce2565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611d6657607f821691505b602082108103611d7957611d78611d22565b5b50919050565b7f43616e6e6f74207365742074617820686967686572207468616e206d617853655f8201527f6c6c546178210000000000000000000000000000000000000000000000000000602082015250565b5f611dd960268361191d565b9150611de482611d7f565b604082019050919050565b5f6020820190508181035f830152611e0681611dcd565b9050919050565b7f43616e6e6f742073657420746178206c6f776572207468616e203021000000005f82015250565b5f611e41601c8361191d565b9150611e4c82611e0d565b602082019050919050565b5f6020820190508181035f830152611e6e81611e35565b9050919050565b7f496e73756666696369656e742062616c616e636520746f206275726e000000005f82015250565b5f611ea9601c8361191d565b9150611eb482611e75565b602082019050919050565b5f6020820190508181035f830152611ed681611e9d565b9050919050565b7f5a65726f204164647265737300000000000000000000000000000000000000005f82015250565b5f611f11600c8361191d565b9150611f1c82611edd565b602082019050919050565b5f6020820190508181035f830152611f3e81611f05565b9050919050565b5f604082019050611f585f830185611a61565b611f656020830184611a39565b9392505050565b5f81519050611f7a816119c6565b92915050565b5f60208284031215611f9557611f9461188a565b5b5f611fa284828501611f6c565b91505092915050565b5f604082019050611fbe5f830185611a61565b611fcb6020830184611ab4565b9392505050565b5f81519050611fe081611b60565b92915050565b5f60208284031215611ffb57611ffa61188a565b5b5f61200884828501611fd2565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612048826119bd565b9150612053836119bd565b925082820190508082111561206b5761206a612011565b5b92915050565b5f6060820190506120845f830186611a61565b6120916020830185611ab4565b61209e6040830184611ab4565b949350505050565b5f6120b0826119bd565b91506120bb836119bd565b92508282039050818111156120d3576120d2612011565b5b92915050565b5f6120e3826119bd565b91506120ee836119bd565b92508282026120fc816119bd565b9150828204841483151761211357612112612011565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612151826119bd565b915061215c836119bd565b92508261216c5761216b61211a565b5b82820490509291505056fea26469706673582212204d4c2c55517fd8718fbb9bf181c9599bf75a399374a70e4c7c7b26519fbfbad164736f6c63430008180033
Deployed Bytecode Sourcemap
26703:3678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29910:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16478:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26894:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29615:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17580:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19539:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26929:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17431:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28463:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26866:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26751:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17742:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;;;;;;;;;;;:::i;:::-;;29360:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9416:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16688:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26834:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18065:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26805:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10349:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28166:289;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29910:468;9302:13;:11;:13::i;:::-;30031:1:::1;30003:30;;:16;:30;;::::0;29995:77:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30108:9;;;;;;;;;;;30091:26;;:13;;;;;;;;;;;:26;;;30083:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30186:16;30170:13;;:32;;;;;;;;;;;;;;;;;;30245:4;30213:14;:29;30228:13;;;;;;;;;;;30213:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;30262:59;30276:9;;;;;;;;;;;30286:13;;;;;;;;;;;30300:20;30310:9;;;;;;;;;;;30300;:20::i;:::-;30262:13;:59::i;:::-;30339:31;30356:13;;;;;;;;;;;30339:31;;;;;;:::i;:::-;;;;;;;;29910:468:::0;:::o;16478:91::-;16523:13;16556:5;16549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;:::o;18771:190::-;18844:4;18861:13;18877:12;:10;:12::i;:::-;18861:28;;18900:31;18909:5;18916:7;18925:5;18900:8;:31::i;:::-;18949:4;18942:11;;;18771:190;;;;:::o;26894:28::-;;;;;;;;;;;;;:::o;29615:287::-;9302:13;:11;:13::i;:::-;29706:10:::1;;29694:8;:22;;29686:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29790:1;29778:8;:13;;29770:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;29847:8;29837:7;:18;;;;29871:23;29886:7;;29871:23;;;;;;:::i;:::-;;;;;;;;29615:287:::0;:::o;17580:99::-;17632:7;17659:12;;17652:19;;17580:99;:::o;19539:249::-;19626:4;19643:15;19661:12;:10;:12::i;:::-;19643:30;;19684:37;19700:4;19706:7;19715:5;19684:15;:37::i;:::-;19732:26;19742:4;19748:2;19752:5;19732:9;:26::i;:::-;19776:4;19769:11;;;19539:249;;;;;:::o;26929:24::-;;;;;;;;;;;;;:::o;17431:84::-;17480:5;17505:2;17498:9;;17431:84;:::o;28463:225::-;9302:13;:11;:13::i;:::-;28561:9:::1;28534:24;28544:13;;;;;;;;;;;28534:9;:24::i;:::-;:36;28526:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;28614:31;28620:13;;;;;;;;;;;28635:9;28614:5;:31::i;:::-;28663:17;28670:9;28663:17;;;;;;:::i;:::-;;;;;;;;28463:225:::0;:::o;26866:21::-;;;;;;;;;;;;;:::o;26751:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;17742:118::-;17807:7;17834:9;:18;17844:7;17834:18;;;;;;;;;;;;;;;;17827:25;;17742:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;29360:247::-;9302:13;:11;:13::i;:::-;29479:1:::1;29459:22;;:8;:22;;::::0;29451:47:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29536:9;29509:14;:24;29524:8;29509:24;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;29561:38;29579:8;29589:9;29561:38;;;;;;;:::i;:::-;;;;;;;;29360:247:::0;;:::o;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;16688:95::-;16735:13;16768:7;16761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16688:95;:::o;26834:25::-;;;;:::o;18065:182::-;18134:4;18151:13;18167:12;:10;:12::i;:::-;18151:28;;18190:27;18200:5;18207:2;18211:5;18190:9;:27::i;:::-;18235:4;18228:11;;;18065:182;;;;:::o;26805:22::-;;;;:::o;18310:142::-;18390:7;18417:11;:18;18429:5;18417:18;;;;;;;;;;;;;;;:27;18436:7;18417:27;;;;;;;;;;;;;;;;18410:34;;18310:142;;;;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;28166:289::-;9302:13;:11;:13::i;:::-;28258:3:::1;28241:21;;:5;:21;;::::0;28237:126:::1;;28287:10;28279:28;;:51;28308:21;28279:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;28345:7;;28237:126;28380:5;28373:22;;;28396:10;28415:5;28408:23;;;28440:4;28408:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28373:74;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;9326:1;28166:289:::0;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;20805:1135::-;20911:1;20895:18;;:4;:18;;;20891:552;;21049:5;21033:12;;:21;;;;;;;:::i;:::-;;;;;;;;20891:552;;;21087:19;21109:9;:15;21119:4;21109:15;;;;;;;;;;;;;;;;21087:37;;21157:5;21143:11;:19;21139:117;;;21215:4;21221:11;21234:5;21190:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21139:117;21411:5;21397:11;:19;21379:9;:15;21389:4;21379:15;;;;;;;;;;;;;;;:37;;;;21072:371;20891:552;21473:1;21459:16;;:2;:16;;;21455:435;;21641:5;21625:12;;:21;;;;;;;;;;;21455:435;;;21858:5;21841:9;:13;21851:2;21841:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21455:435;21922:2;21907:25;;21916:4;21907:25;;;21926:5;21907:25;;;;;;:::i;:::-;;;;;;;;20805:1135;;;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;23598:130::-;23683:37;23692:5;23699:7;23708:5;23715:4;23683:8;:37::i;:::-;23598:130;;;:::o;25314:487::-;25414:24;25441:25;25451:5;25458:7;25441:9;:25::i;:::-;25414:52;;25501:17;25481:16;:37;25477:317;;25558:5;25539:16;:24;25535:132;;;25618:7;25627:16;25645:5;25591:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25535:132;25710:57;25719:5;25726:7;25754:5;25735:16;:24;25761:5;25710:8;:57::i;:::-;25477:317;25403:398;25314:487;;;:::o;20173:308::-;20273:1;20257:18;;:4;:18;;;20253:88;;20326:1;20299:30;;;;;;;;;;;:::i;:::-;;;;;;;;20253:88;20369:1;20355:16;;:2;:16;;;20351:88;;20424:1;20395:32;;;;;;;;;;;:::i;:::-;;;;;;;;20351:88;20449:24;20457:4;20463:2;20467:5;20449:7;:24::i;:::-;20173:308;;;:::o;22834:211::-;22924:1;22905:21;;:7;:21;;;22901:91;;22977:1;22950:30;;;;;;;;;;;:::i;:::-;;;;;;;;22901:91;23002:35;23010:7;23027:1;23031:5;23002:7;:35::i;:::-;22834:211;;:::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;24579:443::-;24709:1;24692:19;;:5;:19;;;24688:91;;24764:1;24735:32;;;;;;;;;;;:::i;:::-;;;;;;;;24688:91;24812:1;24793:21;;:7;:21;;;24789:92;;24866:1;24838:31;;;;;;;;;;;:::i;:::-;;;;;;;;24789:92;24921:5;24891:11;:18;24903:5;24891:18;;;;;;;;;;;;;;;:27;24910:7;24891:27;;;;;;;;;;;;;;;:35;;;;24941:9;24937:78;;;24988:7;24972:31;;24981:5;24972:31;;;24997:5;24972:31;;;;;;:::i;:::-;;;;;;;;24937:78;24579:443;;;;:::o;28696:348::-;28831:14;:20;28846:4;28831:20;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;28855:14;:18;28870:2;28855:18;;;;;;;;;;;;;;;;;;;;;;;;;28831:42;28828:123;;;28889:29;28903:4;28908:2;28911:6;28889:13;:29::i;:::-;28933:7;;28828:123;28971:23;28981:4;28987:6;28971:9;:23::i;:::-;28961:33;;;;;:::i;:::-;;;29007:29;29021:4;29026:2;29029:6;29007:13;:29::i;:::-;28696:348;;;;:::o;29052:300::-;29119:7;29138:11;29152:1;29138:15;;29180:1;29170:7;;:11;29166:71;;;29222:3;29212:7;;29203:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;29197:28;;29166:71;29256:1;29250:3;:7;29247:77;;;29273:39;29287:4;29293:13;;;;;;;;;;;29308:3;29273:13;:39::i;:::-;29247:77;29341:3;29334:10;;;29052:300;;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:329::-;4192:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:119;;;4247:79;;:::i;:::-;4209:119;4367:1;4392:53;4437:7;4428:6;4417:9;4413:22;4392:53;:::i;:::-;4382:63;;4338:117;4133:329;;;;:::o;4468:118::-;4555:24;4573:5;4555:24;:::i;:::-;4550:3;4543:37;4468:118;;:::o;4592:222::-;4685:4;4723:2;4712:9;4708:18;4700:26;;4736:71;4804:1;4793:9;4789:17;4780:6;4736:71;:::i;:::-;4592:222;;;;:::o;4820:619::-;4897:6;4905;4913;4962:2;4950:9;4941:7;4937:23;4933:32;4930:119;;;4968:79;;:::i;:::-;4930:119;5088:1;5113:53;5158:7;5149:6;5138:9;5134:22;5113:53;:::i;:::-;5103:63;;5059:117;5215:2;5241:53;5286:7;5277:6;5266:9;5262:22;5241:53;:::i;:::-;5231:63;;5186:118;5343:2;5369:53;5414:7;5405:6;5394:9;5390:22;5369:53;:::i;:::-;5359:63;;5314:118;4820:619;;;;;:::o;5445:86::-;5480:7;5520:4;5513:5;5509:16;5498:27;;5445:86;;;:::o;5537:112::-;5620:22;5636:5;5620:22;:::i;:::-;5615:3;5608:35;5537:112;;:::o;5655:214::-;5744:4;5782:2;5771:9;5767:18;5759:26;;5795:67;5859:1;5848:9;5844:17;5835:6;5795:67;:::i;:::-;5655:214;;;;:::o;5875:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:468::-;6201:6;6209;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6511:2;6537:50;6579:7;6570:6;6559:9;6555:22;6537:50;:::i;:::-;6527:60;;6482:115;6136:468;;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:221::-;7230:34;7226:1;7218:6;7214:14;7207:58;7299:4;7294:2;7286:6;7282:15;7275:29;7090:221;:::o;7317:366::-;7459:3;7480:67;7544:2;7539:3;7480:67;:::i;:::-;7473:74;;7556:93;7645:3;7556:93;:::i;:::-;7674:2;7669:3;7665:12;7658:19;;7317:366;;;:::o;7689:419::-;7855:4;7893:2;7882:9;7878:18;7870:26;;7942:9;7936:4;7932:20;7928:1;7917:9;7913:17;7906:47;7970:131;8096:4;7970:131;:::i;:::-;7962:139;;7689:419;;;:::o;8114:222::-;8254:34;8250:1;8242:6;8238:14;8231:58;8323:5;8318:2;8310:6;8306:15;8299:30;8114:222;:::o;8342:366::-;8484:3;8505:67;8569:2;8564:3;8505:67;:::i;:::-;8498:74;;8581:93;8670:3;8581:93;:::i;:::-;8699:2;8694:3;8690:12;8683:19;;8342:366;;;:::o;8714:419::-;8880:4;8918:2;8907:9;8903:18;8895:26;;8967:9;8961:4;8957:20;8953:1;8942:9;8938:17;8931:47;8995:131;9121:4;8995:131;:::i;:::-;8987:139;;8714:419;;;:::o;9139:180::-;9187:77;9184:1;9177:88;9284:4;9281:1;9274:15;9308:4;9305:1;9298:15;9325:320;9369:6;9406:1;9400:4;9396:12;9386:22;;9453:1;9447:4;9443:12;9474:18;9464:81;;9530:4;9522:6;9518:17;9508:27;;9464:81;9592:2;9584:6;9581:14;9561:18;9558:38;9555:84;;9611:18;;:::i;:::-;9555:84;9376:269;9325:320;;;:::o;9651:225::-;9791:34;9787:1;9779:6;9775:14;9768:58;9860:8;9855:2;9847:6;9843:15;9836:33;9651:225;:::o;9882:366::-;10024:3;10045:67;10109:2;10104:3;10045:67;:::i;:::-;10038:74;;10121:93;10210:3;10121:93;:::i;:::-;10239:2;10234:3;10230:12;10223:19;;9882:366;;;:::o;10254:419::-;10420:4;10458:2;10447:9;10443:18;10435:26;;10507:9;10501:4;10497:20;10493:1;10482:9;10478:17;10471:47;10535:131;10661:4;10535:131;:::i;:::-;10527:139;;10254:419;;;:::o;10679:178::-;10819:30;10815:1;10807:6;10803:14;10796:54;10679:178;:::o;10863:366::-;11005:3;11026:67;11090:2;11085:3;11026:67;:::i;:::-;11019:74;;11102:93;11191:3;11102:93;:::i;:::-;11220:2;11215:3;11211:12;11204:19;;10863:366;;;:::o;11235:419::-;11401:4;11439:2;11428:9;11424:18;11416:26;;11488:9;11482:4;11478:20;11474:1;11463:9;11459:17;11452:47;11516:131;11642:4;11516:131;:::i;:::-;11508:139;;11235:419;;;:::o;11660:178::-;11800:30;11796:1;11788:6;11784:14;11777:54;11660:178;:::o;11844:366::-;11986:3;12007:67;12071:2;12066:3;12007:67;:::i;:::-;12000:74;;12083:93;12172:3;12083:93;:::i;:::-;12201:2;12196:3;12192:12;12185:19;;11844:366;;;:::o;12216:419::-;12382:4;12420:2;12409:9;12405:18;12397:26;;12469:9;12463:4;12459:20;12455:1;12444:9;12440:17;12433:47;12497:131;12623:4;12497:131;:::i;:::-;12489:139;;12216:419;;;:::o;12641:162::-;12781:14;12777:1;12769:6;12765:14;12758:38;12641:162;:::o;12809:366::-;12951:3;12972:67;13036:2;13031:3;12972:67;:::i;:::-;12965:74;;13048:93;13137:3;13048:93;:::i;:::-;13166:2;13161:3;13157:12;13150:19;;12809:366;;;:::o;13181:419::-;13347:4;13385:2;13374:9;13370:18;13362:26;;13434:9;13428:4;13424:20;13420:1;13409:9;13405:17;13398:47;13462:131;13588:4;13462:131;:::i;:::-;13454:139;;13181:419;;;:::o;13606:320::-;13721:4;13759:2;13748:9;13744:18;13736:26;;13772:71;13840:1;13829:9;13825:17;13816:6;13772:71;:::i;:::-;13853:66;13915:2;13904:9;13900:18;13891:6;13853:66;:::i;:::-;13606:320;;;;;:::o;13932:143::-;13989:5;14020:6;14014:13;14005:22;;14036:33;14063:5;14036:33;:::i;:::-;13932:143;;;;:::o;14081:351::-;14151:6;14200:2;14188:9;14179:7;14175:23;14171:32;14168:119;;;14206:79;;:::i;:::-;14168:119;14326:1;14351:64;14407:7;14398:6;14387:9;14383:22;14351:64;:::i;:::-;14341:74;;14297:128;14081:351;;;;:::o;14438:332::-;14559:4;14597:2;14586:9;14582:18;14574:26;;14610:71;14678:1;14667:9;14663:17;14654:6;14610:71;:::i;:::-;14691:72;14759:2;14748:9;14744:18;14735:6;14691:72;:::i;:::-;14438:332;;;;;:::o;14776:137::-;14830:5;14861:6;14855:13;14846:22;;14877:30;14901:5;14877:30;:::i;:::-;14776:137;;;;:::o;14919:345::-;14986:6;15035:2;15023:9;15014:7;15010:23;15006:32;15003:119;;;15041:79;;:::i;:::-;15003:119;15161:1;15186:61;15239:7;15230:6;15219:9;15215:22;15186:61;:::i;:::-;15176:71;;15132:125;14919:345;;;;:::o;15270:180::-;15318:77;15315:1;15308:88;15415:4;15412:1;15405:15;15439:4;15436:1;15429:15;15456:191;15496:3;15515:20;15533:1;15515:20;:::i;:::-;15510:25;;15549:20;15567:1;15549:20;:::i;:::-;15544:25;;15592:1;15589;15585:9;15578:16;;15613:3;15610:1;15607:10;15604:36;;;15620:18;;:::i;:::-;15604:36;15456:191;;;;:::o;15653:442::-;15802:4;15840:2;15829:9;15825:18;15817:26;;15853:71;15921:1;15910:9;15906:17;15897:6;15853:71;:::i;:::-;15934:72;16002:2;15991:9;15987:18;15978:6;15934:72;:::i;:::-;16016;16084:2;16073:9;16069:18;16060:6;16016:72;:::i;:::-;15653:442;;;;;;:::o;16101:194::-;16141:4;16161:20;16179:1;16161:20;:::i;:::-;16156:25;;16195:20;16213:1;16195:20;:::i;:::-;16190:25;;16239:1;16236;16232:9;16224:17;;16263:1;16257:4;16254:11;16251:37;;;16268:18;;:::i;:::-;16251:37;16101:194;;;;:::o;16301:410::-;16341:7;16364:20;16382:1;16364:20;:::i;:::-;16359:25;;16398:20;16416:1;16398:20;:::i;:::-;16393:25;;16453:1;16450;16446:9;16475:30;16493:11;16475:30;:::i;:::-;16464:41;;16654:1;16645:7;16641:15;16638:1;16635:22;16615:1;16608:9;16588:83;16565:139;;16684:18;;:::i;:::-;16565:139;16349:362;16301:410;;;;:::o;16717:180::-;16765:77;16762:1;16755:88;16862:4;16859:1;16852:15;16886:4;16883:1;16876:15;16903:185;16943:1;16960:20;16978:1;16960:20;:::i;:::-;16955:25;;16994:20;17012:1;16994:20;:::i;:::-;16989:25;;17033:1;17023:35;;17038:18;;:::i;:::-;17023:35;17080:1;17077;17073:9;17068:14;;16903:185;;;;:::o
Swarm Source
ipfs://4d4c2c55517fd8718fbb9bf181c9599bf75a399374a70e4c7c7b26519fbfbad1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.