More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,036 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 22600658 | 10 hrs ago | IN | 0 ETH | 0.00013555 | ||||
Approve | 22598458 | 17 hrs ago | IN | 0 ETH | 0.00014914 | ||||
Approve | 22598293 | 18 hrs ago | IN | 0 ETH | 0.00008851 | ||||
Approve | 22597638 | 20 hrs ago | IN | 0 ETH | 0.00012892 | ||||
Approve | 22596775 | 23 hrs ago | IN | 0 ETH | 0.00075096 | ||||
Approve | 22596184 | 25 hrs ago | IN | 0 ETH | 0.00051077 | ||||
Approve | 22594979 | 29 hrs ago | IN | 0 ETH | 0.00017216 | ||||
Approve | 22591955 | 39 hrs ago | IN | 0 ETH | 0.00008535 | ||||
Approve | 22591227 | 42 hrs ago | IN | 0 ETH | 0.00010689 | ||||
Approve | 22591221 | 42 hrs ago | IN | 0 ETH | 0.00017741 | ||||
Approve | 22590963 | 43 hrs ago | IN | 0 ETH | 0.00029151 | ||||
Approve | 22590952 | 43 hrs ago | IN | 0 ETH | 0.00024143 | ||||
Approve | 22590939 | 43 hrs ago | IN | 0 ETH | 0.00031077 | ||||
Approve | 22590496 | 44 hrs ago | IN | 0 ETH | 0.00013493 | ||||
Approve | 22589573 | 47 hrs ago | IN | 0 ETH | 0.00024003 | ||||
Approve | 22589310 | 2 days ago | IN | 0 ETH | 0.00021927 | ||||
Approve | 22589279 | 2 days ago | IN | 0 ETH | 0.00025715 | ||||
Approve | 22589246 | 2 days ago | IN | 0 ETH | 0.00027261 | ||||
Approve | 22588951 | 2 days ago | IN | 0 ETH | 0.00036399 | ||||
Approve | 22588272 | 2 days ago | IN | 0 ETH | 0.00011645 | ||||
Approve | 22585714 | 2 days ago | IN | 0 ETH | 0.00020548 | ||||
Approve | 22582308 | 3 days ago | IN | 0 ETH | 0.00067934 | ||||
Approve | 22582300 | 3 days ago | IN | 0 ETH | 0.00058971 | ||||
Approve | 22580613 | 3 days ago | IN | 0 ETH | 0.00020947 | ||||
Approve | 22580281 | 3 days ago | IN | 0 ETH | 0.00011091 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22496924 | 14 days ago | 0.34323416 ETH | ||||
Transfer | 22496924 | 14 days ago | 0.34323416 ETH | ||||
Transfer | 22496924 | 14 days ago | 0.68646832 ETH | ||||
Transfer | 22496513 | 15 days ago | 0.3972059 ETH | ||||
Transfer | 22496513 | 15 days ago | 0.3972059 ETH | ||||
Transfer | 22496513 | 15 days ago | 0.7944118 ETH | ||||
Transfer | 22495642 | 15 days ago | 0.34842939 ETH | ||||
Transfer | 22495642 | 15 days ago | 0.34842939 ETH | ||||
Transfer | 22495642 | 15 days ago | 0.69685879 ETH | ||||
Transfer | 22493465 | 15 days ago | 0.35263568 ETH | ||||
Transfer | 22493465 | 15 days ago | 0.35263568 ETH | ||||
Transfer | 22493465 | 15 days ago | 0.70527137 ETH | ||||
Transfer | 22492765 | 15 days ago | 0.50778594 ETH | ||||
Transfer | 22492765 | 15 days ago | 0.50778594 ETH | ||||
Transfer | 22492765 | 15 days ago | 1.01557188 ETH | ||||
Transfer | 22492264 | 15 days ago | 0.44016909 ETH | ||||
Transfer | 22492264 | 15 days ago | 0.44016909 ETH | ||||
Transfer | 22492264 | 15 days ago | 0.88033819 ETH | ||||
Transfer | 22491802 | 15 days ago | 0.32913174 ETH | ||||
Transfer | 22491802 | 15 days ago | 0.32913174 ETH | ||||
Transfer | 22491802 | 15 days ago | 0.65826348 ETH | ||||
Transfer | 22491498 | 15 days ago | 0.45868918 ETH | ||||
Transfer | 22491498 | 15 days ago | 0.45868918 ETH | ||||
Transfer | 22491498 | 15 days ago | 0.91737837 ETH | ||||
Transfer | 22491316 | 15 days ago | 0.40410661 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MorphIS
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2025-05-15 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.26; // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) /** * @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); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) /** * @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); } // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) /** * @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); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * 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 => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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); } } } } // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract MorphIS is Ownable, ERC20 { IUniswapV2Router public immutable uniswapV2Router; address public constant ZERO_ADDRESS = address(0); address public constant DEAD_ADDRESS = address(0xdEaD); address public immutable uniswapV2Pair; address public operationsWallet; address public developmentWallet; bool public isLimitsEnabled; bool public isCooldownEnabled; bool public isTaxEnabled; bool private inSwapBack; bool public isLive; uint256 public launchBlock; uint256 public launchTime; uint256 private lastSwapBackExecutionBlock; uint256 public constant MAX_FEE = 25; uint256 public maxBuy; uint256 public maxSell; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public buyFee; uint256 public sellFee; uint256 public transferFee; mapping(address => bool) public isBot; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public isExcludedFromLimits; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event Launch(); event SetOperationsWallet(address newWallet, address oldWallet); event SetDevelopmentWallet(address newWallet, address oldWallet); event SetLimitsEnabled(bool status); event SetCooldownEnabled(bool status); event SetTaxesEnabled(bool status); event SetMaxBuy(uint256 amount); event SetMaxSell(uint256 amount); event SetMaxWallet(uint256 amount); event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue); event SetBuyFees(uint256 newValue, uint256 oldValue); event SetSellFees(uint256 newValue, uint256 oldValue); event SetTransferFees(uint256 newValue, uint256 oldValue); event ExcludeFromFees(address account, bool isExcluded); event ExcludeFromLimits(address account, bool isExcluded); event SetBots(address account, bool isExcluded); event SetAutomatedMarketMakerPair(address pair, bool value); event WithdrawStuckTokens(address token, uint256 amount); modifier lockSwapBack() { inSwapBack = true; _; inSwapBack = false; } constructor() Ownable(msg.sender) ERC20("MorphIS", "MorphIS") { address sender = msg.sender; _mint(sender, 100_000_000 ether); uint256 totalSupply = totalSupply(); operationsWallet = 0xA0420480023e6aA1b3dF1472a7B937BBa161Af4c; developmentWallet = 0xD77E0761B12c61e5eAF789BB56Ef41d7d5F0E38f; maxBuy = (totalSupply * 13) / 1000; maxSell = (totalSupply * 13) / 1000; maxWallet = (totalSupply * 13) / 1000; swapTokensAtAmount = (totalSupply * 5) / 10000; isLimitsEnabled = true; isCooldownEnabled = true; isTaxEnabled = true; buyFee = 10; sellFee = 35; transferFee = 0; uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setAutomatedMarketMakerPair(uniswapV2Pair, true); _approve(address(this), address(uniswapV2Router), type(uint256).max); _excludeFromFees(address(this), true); _excludeFromFees(address(0xdead), true); _excludeFromFees(sender, true); _excludeFromFees(operationsWallet, true); _excludeFromFees(developmentWallet, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0xdead), true); _excludeFromLimits(sender, true); _excludeFromLimits(operationsWallet, true); _excludeFromLimits(developmentWallet, true); } receive() external payable {} fallback() external payable {} function _transferOwnership(address newOwner) internal override { address oldOwner = owner(); if (oldOwner != address(0)) { _excludeFromFees(oldOwner, false); _excludeFromLimits(oldOwner, false); } _excludeFromFees(newOwner, true); _excludeFromLimits(newOwner, true); super._transferOwnership(newOwner); } function GoLive() external onlyOwner { require(!isLive, "error"); isLive = true; launchBlock = block.number; launchTime = block.timestamp; emit Launch(); } function setOperationsWallet(address _operationsWallet) external onlyOwner { require(_operationsWallet != address(0), "error"); address oldWallet = operationsWallet; operationsWallet = _operationsWallet; emit SetOperationsWallet(operationsWallet, oldWallet); } function setDevelopmentWallet(address _developmentWallet) external onlyOwner { require(_developmentWallet != address(0), "error"); address oldWallet = developmentWallet; developmentWallet = _developmentWallet; emit SetDevelopmentWallet(developmentWallet, oldWallet); } function setLimitsEnabled(bool value) external onlyOwner { isLimitsEnabled = value; emit SetLimitsEnabled(value); } function setCooldownEnabled(bool value) external onlyOwner { isCooldownEnabled = value; emit SetCooldownEnabled(value); } function setTaxesEnabled(bool value) external onlyOwner { isTaxEnabled = value; emit SetTaxesEnabled(value); } function setMaxBuy(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), "error"); maxBuy = amount; emit SetMaxBuy(maxBuy); } function setMaxSell(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), "error"); maxSell = amount; emit SetMaxSell(maxSell); } function setMaxWallet(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 3) / 1000), "error"); maxWallet = amount; emit SetMaxWallet(maxWallet); } function setSwapTokensAtAmount(uint256 amount) external onlyOwner { uint256 _totalSupply = totalSupply(); require(amount >= (_totalSupply * 1) / 1000000, "error"); require(amount <= (_totalSupply * 5) / 1000, "error"); uint256 oldValue = swapTokensAtAmount; swapTokensAtAmount = amount; emit SetSwapTokensAtAmount(amount, oldValue); } function setBuyFees(uint256 _buyFee) external onlyOwner { require(_buyFee <= MAX_FEE, "error"); uint256 oldValue = buyFee; buyFee = _buyFee; emit SetBuyFees(_buyFee, oldValue); } function setSellFees(uint256 _sellFee) external onlyOwner { require(_sellFee <= MAX_FEE, "error"); uint256 oldValue = sellFee; sellFee = _sellFee; emit SetSellFees(_sellFee, oldValue); } function setTransferFees(uint256 _transferFee) external onlyOwner { require(_transferFee <= MAX_FEE, "error"); uint256 oldValue = transferFee; transferFee = _transferFee; emit SetTransferFees(_transferFee, oldValue); } function excludeFromFees(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromFees(accounts[i], value); } } function excludeFromLimits(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromLimits(accounts[i], value); } } function setBots(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (!automatedMarketMakerPairs[accounts[i]]) && (accounts[i] != address(uniswapV2Router)) && (accounts[i] != address(this)) && (accounts[i] != ZERO_ADDRESS) && (!isExcludedFromFees[accounts[i]] && !isExcludedFromLimits[accounts[i]]) ) _setBots(accounts[i], value); } } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(!automatedMarketMakerPairs[pair], "error"); _setAutomatedMarketMakerPair(pair, value); } function withdrawStuckTokens(address _token) external onlyOwner { address sender = msg.sender; uint256 amount; if (_token == ZERO_ADDRESS) { bool success; amount = address(this).balance; require(amount > 0, "error"); (success, ) = address(sender).call{value: amount}(""); require(success, "error"); } else { amount = IERC20(_token).balanceOf(address(this)); require(amount > 0, "error"); IERC20(_token).transfer(msg.sender, amount); } emit WithdrawStuckTokens(_token, amount); } function _update( address from, address to, uint256 amount ) internal virtual override { address sender = msg.sender; address origin = tx.origin; require(!isBot[from], "error"); require(sender == from || !isBot[sender], "error"); require( origin == from || origin == sender || !isBot[origin], "error" ); require( isLive || isExcludedFromLimits[from] || isExcludedFromLimits[to], "error" ); bool limits = isLimitsEnabled && !inSwapBack && !(isExcludedFromLimits[from] || isExcludedFromLimits[to]); if (limits) { if ( from != owner() && to != owner() && to != ZERO_ADDRESS && to != DEAD_ADDRESS ) { if (isCooldownEnabled) { if (to != address(uniswapV2Router) && to != uniswapV2Pair) { require( _holderLastTransferTimestamp[origin] < block.number - 3 && _holderLastTransferTimestamp[to] < block.number - 3, "error" ); _holderLastTransferTimestamp[origin] = block.number; _holderLastTransferTimestamp[to] = block.number; } } if ( automatedMarketMakerPairs[from] && !isExcludedFromLimits[to] ) { require(amount <= maxBuy, "error"); require( amount + balanceOf(to) <= maxWallet, "error" ); } else if ( automatedMarketMakerPairs[to] && !isExcludedFromLimits[from] ) { require(amount <= maxSell, "error"); } else if (!isExcludedFromLimits[to]) { require( amount + balanceOf(to) <= maxWallet, "error" ); } } } bool takeFee = isTaxEnabled && !inSwapBack && !(isExcludedFromFees[from] || isExcludedFromFees[to]); if (takeFee) { uint256 fees = 0; if (automatedMarketMakerPairs[to] && sellFee > 0) { fees = (amount * sellFee) / 100; } else if (automatedMarketMakerPairs[from] && buyFee > 0) { fees = (amount * buyFee) / 100; } else if ( !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from] && transferFee > 0 ) { fees = (amount * transferFee) / 100; } if (fees > 0) { amount -= fees; super._update(from, address(this), fees); } } uint256 balance = balanceOf(address(this)); bool shouldSwap = balance >= swapTokensAtAmount; if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) { if (block.number > lastSwapBackExecutionBlock) { _swapBack(balance); lastSwapBackExecutionBlock = block.number; } } super._update(from, to, amount); } function _swapBack(uint256 balance) internal virtual lockSwapBack { bool success; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 maxSwapAmount = swapTokensAtAmount * 4; if (balance > maxSwapAmount) { balance = maxSwapAmount; } uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balance, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; uint256 ethForOperations = ethBalance / 2; uint256 ethForDevelopment = ethBalance - ethForOperations; (success, ) = address(operationsWallet).call{value: ethForOperations}( "" ); (success, ) = address(developmentWallet).call{value: ethForDevelopment}( "" ); } function _excludeFromFees(address account, bool value) internal virtual { isExcludedFromFees[account] = value; emit ExcludeFromFees(account, value); } function _excludeFromLimits(address account, bool value) internal virtual { isExcludedFromLimits[account] = value; emit ExcludeFromLimits(account, value); } function _setBots(address account, bool value) internal virtual { isBot[account] = value; emit SetBots(account, value); } function _setAutomatedMarketMakerPair(address pair, bool value) internal virtual { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","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":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","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":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GoLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405234801561000f575f80fd5b506040805180820182526007808252664d6f727068495360c81b602080840182905284518086019095529184529083015290338061006757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610070816103b6565b50600461007d8382611200565b50600561008a8282611200565b503391506100a59050816a52b7d2dcc80cd2e40000006103fe565b5f6100af60035490565b600680546001600160a01b031990811673a0420480023e6aa1b3df1472a7b937bba161af4c179091556007805490911673d77e0761b12c61e5eaf789bb56ef41d7d5f0e38f17905590506103e861010782600d6112ce565b61011191906112eb565b600b556103e861012282600d6112ce565b61012c91906112eb565b600c556103e861013d82600d6112ce565b61014791906112eb565b600d556127106101588260056112ce565b61016291906112eb565b600e556007805462ffffff60a01b19166201010160a01b179055600a600f5560236010555f601155737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610201919061130a565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561024e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610272919061130a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102bc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102e0919061130a565b6001600160a01b031660a08190526102f9906001610432565b61030d306080515f1961049560201b60201c565b6103183060016104a7565b61032561dead60016104a7565b6103308260016104a7565b600654610347906001600160a01b031660016104a7565b60075461035e906001600160a01b031660016104a7565b610369306001610502565b61037661dead6001610502565b610381826001610502565b600654610398906001600160a01b03166001610502565b6007546103af906001600160a01b03166001610502565b50506113e1565b5f546001600160a01b031680156103db576103d1815f6104a7565b6103db815f610502565b6103e68260016104a7565b6103f1826001610502565b6103fa8261055d565b5050565b6001600160a01b0382166104275760405163ec442f0560e01b81525f600482015260240161005e565b6103fa5f83836105ac565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104a28383836001610d18565b505050565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610489565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610489565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156106005760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b846001600160a01b0316826001600160a01b0316148061063857506001600160a01b0382165f9081526012602052604090205460ff16155b61066c5760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b846001600160a01b0316816001600160a01b0316148061069d5750816001600160a01b0316816001600160a01b0316145b806106c057506001600160a01b0381165f9081526012602052604090205460ff16155b6106f45760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b600754600160c01b900460ff168061072357506001600160a01b0385165f9081526014602052604090205460ff165b8061074557506001600160a01b0384165f9081526014602052604090205460ff165b6107795760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b6007545f90600160a01b900460ff16801561079e5750600754600160b81b900460ff16155b80156107e457506001600160a01b0386165f9081526014602052604090205460ff16806107e257506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015610b16575f546001600160a01b0387811691161480159061081657505f546001600160a01b03868116911614155b801561082a57506001600160a01b03851615155b801561084157506001600160a01b03851661dead14155b15610b1657600754600160a81b900460ff1615610940576080516001600160a01b0316856001600160a01b031614158015610890575060a0516001600160a01b0316856001600160a01b031614155b15610940576108a0600343611337565b6001600160a01b0383165f908152601660205260409020541080156108e557506108cb600343611337565b6001600160a01b0386165f90815260166020526040902054105b6109195760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff16801561097f57506001600160a01b0385165f9081526014602052604090205460ff16155b15610a1e57600b548411156109be5760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b600d546001600160a01b0386165f908152600160205260409020546109e3908661134a565b1115610a195760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b610b16565b6001600160a01b0385165f9081526015602052604090205460ff168015610a5d57506001600160a01b0386165f9081526014602052604090205460ff16155b15610a9c57600c54841115610a195760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b6001600160a01b0385165f9081526014602052604090205460ff16610b1657600d546001600160a01b0386165f90815260016020526040902054610ae0908661134a565b1115610b165760405162461bcd60e51b815260206004820152600560248201526432b93937b960d91b604482015260640161005e565b6007545f90600160b01b900460ff168015610b3b5750600754600160b81b900460ff16155b8015610b8157506001600160a01b0387165f9081526013602052604090205460ff1680610b7f57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015610ca2576001600160a01b0386165f9081526015602052604081205460ff168015610bb157505f601054115b15610bd757606460105487610bc691906112ce565b610bd091906112eb565b9050610c83565b6001600160a01b0388165f9081526015602052604090205460ff168015610bff57505f600f54115b15610c14576064600f5487610bc691906112ce565b6001600160a01b0387165f9081526015602052604090205460ff16158015610c5457506001600160a01b0388165f9081526015602052604090205460ff16155b8015610c6157505f601154115b15610c8357606460115487610c7691906112ce565b610c8091906112eb565b90505b8015610ca057610c938187611337565b9550610ca0883083610deb565b505b305f90815260016020526040902054600e54811015828015610cdc57506001600160a01b0389165f9081526015602052604090205460ff16155b8015610ce55750805b15610d0257600a54431115610d0257610cfd82610f11565b43600a555b610d0d898989610deb565b505050505050505050565b6001600160a01b038416610d415760405163e602df0560e01b81525f600482015260240161005e565b6001600160a01b038316610d6a57604051634a1406b160e11b81525f600482015260240161005e565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610de557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ddc91815260200190565b60405180910390a35b50505050565b6001600160a01b038316610e15578060035f828254610e0a919061134a565b90915550610e859050565b6001600160a01b0383165f9081526001602052604090205481811015610e675760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161005e565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610ea157600380548290039055610ebf565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f0491815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610f5b57610f5b61135d565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fb9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fdd919061130a565b81600181518110610ff057610ff061135d565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e54600461102091906112ce565b90508084111561102e578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b8152600401611064959493929190611371565b5f604051808303815f87803b15801561107b575f80fd5b505af115801561108d573d5f803e3d5ffd5b504792505f91506110a190506002836112eb565b90505f6110ae8284611337565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f81146110f9576040519150601f19603f3d011682016040523d82523d5f602084013e6110fe565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f811461114b576040519150601f19603f3d011682016040523d82523d5f602084013e611150565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061119157607f821691505b6020821081036111af57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104a257805f5260205f20601f840160051c810160208510156111da5750805b601f840160051c820191505b818110156111f9575f81556001016111e6565b5050505050565b81516001600160401b0381111561121957611219611169565b61122d81611227845461117d565b846111b5565b6020601f82116001811461125f575f83156112485750848201515b5f19600385901b1c1916600184901b1784556111f9565b5f84815260208120601f198516915b8281101561128e578785015182556020948501946001909201910161126e565b50848210156112ab57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176112e5576112e56112ba565b92915050565b5f8261130557634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561131a575f80fd5b81516001600160a01b0381168114611330575f80fd5b9392505050565b818103818111156112e5576112e56112ba565b808201808211156112e5576112e56112ba565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156113c15783516001600160a01b031683526020938401939092019160010161139a565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a0516128256114255f395f81816104ce0152611c1201525f81816103a001528181610ebc01528181611bd501528181612238015261231e01526128255ff3fe60806040526004361061030e575f3560e01c806395927c2511610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610960578063f53bc8351461097f578063f8b45b051461099e578063fd72e22a146109b357005b8063e6c1909b14610902578063ee5ecc8914610922578063ef998cf01461094157005b8063d5759ba3116100c7578063d5759ba31461086a578063dcf7aef31461088a578063dd62ed3e146108a9578063e2f45605146108ed57005b8063cb96372814610817578063d00efb2f14610836578063d26ed3e31461084b57005b8063ad29ffde11610151578063b8eb35461161012e578063b8eb3546146107af578063b8f7a665146107c4578063bc063e1a146107e4578063c04a5414146107f857005b8063ad29ffde14610743578063afa4f3b214610762578063b62496f51461078157005b806395927c251461069e57806395d89b41146106bd5780639a7a23d6146106d15780639c0db5f3146106f0578063a9059cbb1461070f578063acb2ad6f1461072e57005b80634e6fd6c4116102635780636ca541e511610207578063715018a6116101e4578063715018a61461063a57806372ac24861461064e578063790ca4131461066d5780638da5cb5b1461068257005b80636ca541e5146105d157806370a08231146105f157806370db69d61461062557005b80635932ead1116102405780635932ead11461054657806359512ab0146105655780635cce86cd146105845780635d0044ca146105b257005b80634e6fd6c4146104f05780634fbee19314610505578063538ba4f91461053357005b80632b14ca56116102ca5780633bbac579116102a75780633bbac5791461045b57806341aea9de1461048957806347062402146104a857806349bd5a5e146104bd57005b80632b14ca5614610417578063313ce5671461042c5780633b4e935a1461044757005b806306fdde0314610317578063095ea7b314610341578063106a5a8f146103705780631694505e1461038f57806318160ddd146103da57806323b872dd146103f857005b3661031557005b005b348015610322575f80fd5b5061032b6109d2565b6040516103389190612460565b60405180910390f35b34801561034c575f80fd5b5061036061035b3660046124a9565b610a62565b6040519015158152602001610338565b34801561037b575f80fd5b5061031561038a3660046124e0565b610a7b565b34801561039a575f80fd5b506103c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610338565b3480156103e5575f80fd5b506003545b604051908152602001610338565b348015610403575f80fd5b50610360610412366004612562565b610acb565b348015610422575f80fd5b506103ea60105481565b348015610437575f80fd5b5060405160128152602001610338565b348015610452575f80fd5b50610315610aee565b348015610466575f80fd5b506103606104753660046125a0565b60126020525f908152604090205460ff1681565b348015610494575f80fd5b506103156104a33660046125c2565b610b6e565b3480156104b3575f80fd5b506103ea600f5481565b3480156104c8575f80fd5b506103c27f000000000000000000000000000000000000000000000000000000000000000081565b3480156104fb575f80fd5b506103c261dead81565b348015610510575f80fd5b5061036061051f3660046125a0565b60136020525f908152604090205460ff1681565b34801561053e575f80fd5b506103c25f81565b348015610551575f80fd5b506103156105603660046125c2565b610bce565b348015610570575f80fd5b5061031561057f3660046125c2565b610c23565b34801561058f575f80fd5b5061036061059e3660046125a0565b60146020525f908152604090205460ff1681565b3480156105bd575f80fd5b506103156105cc3660046125dd565b610c78565b3480156105dc575f80fd5b5060075461036090600160a81b900460ff1681565b3480156105fc575f80fd5b506103ea61060b3660046125a0565b6001600160a01b03165f9081526001602052604090205490565b348015610630575f80fd5b506103ea600b5481565b348015610645575f80fd5b50610315610cf5565b348015610659575f80fd5b506103156106683660046125a0565b610d08565b348015610678575f80fd5b506103ea60095481565b34801561068d575f80fd5b505f546001600160a01b03166103c2565b3480156106a9575f80fd5b506103156106b83660046125dd565b610d96565b3480156106c8575f80fd5b5061032b610dfd565b3480156106dc575f80fd5b506103156106eb3660046125f4565b610e0c565b3480156106fb575f80fd5b5061031561070a3660046124e0565b610e5a565b34801561071a575f80fd5b506103606107293660046124a9565b611067565b348015610739575f80fd5b506103ea60115481565b34801561074e575f80fd5b5061031561075d3660046124e0565b611074565b34801561076d575f80fd5b5061031561077c3660046125dd565b6110be565b34801561078c575f80fd5b5061036061079b3660046125a0565b60156020525f908152604090205460ff1681565b3480156107ba575f80fd5b506103ea600c5481565b3480156107cf575f80fd5b5060075461036090600160c01b900460ff1681565b3480156107ef575f80fd5b506103ea601981565b348015610803575f80fd5b506007546103c2906001600160a01b031681565b348015610822575f80fd5b506103156108313660046125a0565b611188565b348015610841575f80fd5b506103ea60085481565b348015610856575f80fd5b506103156108653660046125dd565b61136a565b348015610875575f80fd5b5060075461036090600160a01b900460ff1681565b348015610895575f80fd5b506103156108a43660046125dd565b6113d1565b3480156108b4575f80fd5b506103ea6108c336600461262b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f8575f80fd5b506103ea600e5481565b34801561090d575f80fd5b5060075461036090600160b01b900460ff1681565b34801561092d575f80fd5b5061031561093c3660046125a0565b611438565b34801561094c575f80fd5b5061031561095b3660046125dd565b6114be565b34801561096b575f80fd5b5061031561097a3660046125a0565b61153b565b34801561098a575f80fd5b506103156109993660046125dd565b611578565b3480156109a9575f80fd5b506103ea600d5481565b3480156109be575f80fd5b506006546103c2906001600160a01b031681565b6060600480546109e190612657565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0d90612657565b8015610a585780601f10610a2f57610100808354040283529160200191610a58565b820191905f5260205f20905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b5f33610a6f8185856115f5565b60019150505b92915050565b610a83611607565b5f5b82811015610ac557610abd848483818110610aa257610aa261268f565b9050602002016020810190610ab791906125a0565b83611633565b600101610a85565b50505050565b5f33610ad885828561168e565b610ae3858585611703565b506001949350505050565b610af6611607565b600754600160c01b900460ff1615610b295760405162461bcd60e51b8152600401610b20906126a3565b60405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b610b76611607565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bc390831515815260200190565b60405180910390a150565b610bd6611607565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bc390831515815260200190565b610c2b611607565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bc390831515815260200190565b610c80611607565b6103e8610c8c60035490565b610c979060036126d6565b610ca191906126ed565b811015610cc05760405162461bcd60e51b8152600401610b20906126a3565b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bc3565b610cfd611607565b610d065f611760565b565b610d10611607565b6001600160a01b038116610d365760405162461bcd60e51b8152600401610b20906126a3565b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d9e611607565b6019811115610dbf5760405162461bcd60e51b8152600401610b20906126a3565b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d8a565b6060600580546109e190612657565b610e14611607565b6001600160a01b0382165f9081526015602052604090205460ff1615610e4c5760405162461bcd60e51b8152600401610b20906126a3565b610e5682826117a4565b5050565b610e62611607565b5f5b82811015610ac55760155f858584818110610e8157610e8161268f565b9050602002016020810190610e9691906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f1757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610ef657610ef661268f565b9050602002016020810190610f0b91906125a0565b6001600160a01b031614155b8015610f52575030848483818110610f3157610f3161268f565b9050602002016020810190610f4691906125a0565b6001600160a01b031614155b8015610f8d57505f848483818110610f6c57610f6c61268f565b9050602002016020810190610f8191906125a0565b6001600160a01b031614155b801561102a575060135f858584818110610fa957610fa961268f565b9050602002016020810190610fbe91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff1615801561102a575060145f858584818110610ff757610ff761268f565b905060200201602081019061100c91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561105f5761105f8484838181106110445761104461268f565b905060200201602081019061105991906125a0565b836117ff565b600101610e64565b5f33610a6f818585611703565b61107c611607565b5f5b82811015610ac5576110b684848381811061109b5761109b61268f565b90506020020160208101906110b091906125a0565b8361185a565b60010161107e565b6110c6611607565b5f6110d060035490565b9050620f42406110e18260016126d6565b6110eb91906126ed565b82101561110a5760405162461bcd60e51b8152600401610b20906126a3565b6103e86111188260056126d6565b61112291906126ed565b8211156111415760405162461bcd60e51b8152600401610b20906126a3565b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b611190611607565b335f6001600160a01b0383166112345750475f816111c05760405162461bcd60e51b8152600401610b20906126a3565b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611206576040519150601f19603f3d011682016040523d82523d5f602084013e61120b565b606091505b5050809150508061122e5760405162461bcd60e51b8152600401610b20906126a3565b5061132b565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611276573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129a919061270c565b90505f81116112bb5760405162461bcd60e51b8152600401610b20906126a3565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113299190612723565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910161117b565b611372611607565b60198111156113935760405162461bcd60e51b8152600401610b20906126a3565b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d8a565b6113d9611607565b60198111156113fa5760405162461bcd60e51b8152600401610b20906126a3565b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d8a565b611440611607565b6001600160a01b0381166114665760405162461bcd60e51b8152600401610b20906126a3565b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d8a565b6114c6611607565b6103e86114d260035490565b6114dd9060026126d6565b6114e791906126ed565b8110156115065760405162461bcd60e51b8152600401610b20906126a3565b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bc3565b611543611607565b6001600160a01b03811661156c57604051631e4fbdf760e01b81525f6004820152602401610b20565b61157581611760565b50565b611580611607565b6103e861158c60035490565b6115979060026126d6565b6115a191906126ed565b8110156115c05760405162461bcd60e51b8152600401610b20906126a3565b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bc3565b61160283838360016118b5565b505050565b5f546001600160a01b03163314610d065760405163118cdaa760e01b8152336004820152602401610b20565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d8a565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610ac557818110156116f557604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610b20565b610ac584848484035f6118b5565b6001600160a01b03831661172c57604051634b637e8f60e11b81525f6004820152602401610b20565b6001600160a01b0382166117555760405163ec442f0560e01b81525f6004820152602401610b20565b611602838383611987565b5f546001600160a01b031680156117855761177b815f61185a565b611785815f611633565b61179082600161185a565b61179b826001611633565b610e5682612057565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d8a565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d8a565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d8a565b6001600160a01b0384166118de5760405163e602df0560e01b81525f6004820152602401610b20565b6001600160a01b03831661190757604051634a1406b160e11b81525f6004820152602401610b20565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610ac557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161197991815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156119c35760405162461bcd60e51b8152600401610b20906126a3565b846001600160a01b0316826001600160a01b031614806119fb57506001600160a01b0382165f9081526012602052604090205460ff16155b611a175760405162461bcd60e51b8152600401610b20906126a3565b846001600160a01b0316816001600160a01b03161480611a485750816001600160a01b0316816001600160a01b0316145b80611a6b57506001600160a01b0381165f9081526012602052604090205460ff16155b611a875760405162461bcd60e51b8152600401610b20906126a3565b600754600160c01b900460ff1680611ab657506001600160a01b0385165f9081526014602052604090205460ff165b80611ad857506001600160a01b0384165f9081526014602052604090205460ff165b611af45760405162461bcd60e51b8152600401610b20906126a3565b6007545f90600160a01b900460ff168015611b195750600754600160b81b900460ff16155b8015611b5f57506001600160a01b0386165f9081526014602052604090205460ff1680611b5d57506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015611e55575f546001600160a01b03878116911614801590611b9157505f546001600160a01b03868116911614155b8015611ba557506001600160a01b03851615155b8015611bbc57506001600160a01b03851661dead14155b15611e5557600754600160a81b900460ff1615611cdf577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614158015611c4757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15611cdf57611c5760034361273e565b6001600160a01b0383165f90815260166020526040902054108015611c9c5750611c8260034361273e565b6001600160a01b0386165f90815260166020526040902054105b611cb85760405162461bcd60e51b8152600401610b20906126a3565b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff168015611d1e57506001600160a01b0385165f9081526014602052604090205460ff16155b15611d8d57600b54841115611d455760405162461bcd60e51b8152600401610b20906126a3565b600d546001600160a01b0386165f90815260016020526040902054611d6a9086612751565b1115611d885760405162461bcd60e51b8152600401610b20906126a3565b611e55565b6001600160a01b0385165f9081526015602052604090205460ff168015611dcc57506001600160a01b0386165f9081526014602052604090205460ff16155b15611df357600c54841115611d885760405162461bcd60e51b8152600401610b20906126a3565b6001600160a01b0385165f9081526014602052604090205460ff16611e5557600d546001600160a01b0386165f90815260016020526040902054611e379086612751565b1115611e555760405162461bcd60e51b8152600401610b20906126a3565b6007545f90600160b01b900460ff168015611e7a5750600754600160b81b900460ff16155b8015611ec057506001600160a01b0387165f9081526013602052604090205460ff1680611ebe57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015611fe1576001600160a01b0386165f9081526015602052604081205460ff168015611ef057505f601054115b15611f1657606460105487611f0591906126d6565b611f0f91906126ed565b9050611fc2565b6001600160a01b0388165f9081526015602052604090205460ff168015611f3e57505f600f54115b15611f53576064600f5487611f0591906126d6565b6001600160a01b0387165f9081526015602052604090205460ff16158015611f9357506001600160a01b0388165f9081526015602052604090205460ff16155b8015611fa057505f601154115b15611fc257606460115487611fb591906126d6565b611fbf91906126ed565b90505b8015611fdf57611fd2818761273e565b9550611fdf8830836120a6565b505b305f90815260016020526040902054600e5481101582801561201b57506001600160a01b0389165f9081526015602052604090205460ff16155b80156120245750805b1561204157600a544311156120415761203c826121cc565b43600a555b61204c8989896120a6565b505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120d0578060035f8282546120c59190612751565b909155506121409050565b6001600160a01b0383165f90815260016020526040902054818110156121225760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610b20565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661215c5760038054829003905561217a565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121bf91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106122165761221661268f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b69190612764565b816001815181106122c9576122c961268f565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460046122f991906126d6565b905080841115612307578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061235b9087905f9087903090429060040161277f565b5f604051808303815f87803b158015612372575f80fd5b505af1158015612384573d5f803e3d5ffd5b504792505f915061239890506002836126ed565b90505f6123a5828461273e565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f81146123f0576040519150601f19603f3d011682016040523d82523d5f602084013e6123f5565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f8114612442576040519150601f19603f3d011682016040523d82523d5f602084013e612447565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611575575f80fd5b5f80604083850312156124ba575f80fd5b82356124c581612495565b946020939093013593505050565b8015158114611575575f80fd5b5f805f604084860312156124f2575f80fd5b833567ffffffffffffffff811115612508575f80fd5b8401601f81018613612518575f80fd5b803567ffffffffffffffff81111561252e575f80fd5b8660208260051b8401011115612542575f80fd5b602091820194509250840135612557816124d3565b809150509250925092565b5f805f60608486031215612574575f80fd5b833561257f81612495565b9250602084013561258f81612495565b929592945050506040919091013590565b5f602082840312156125b0575f80fd5b81356125bb81612495565b9392505050565b5f602082840312156125d2575f80fd5b81356125bb816124d3565b5f602082840312156125ed575f80fd5b5035919050565b5f8060408385031215612605575f80fd5b823561261081612495565b91506020830135612620816124d3565b809150509250929050565b5f806040838503121561263c575f80fd5b823561264781612495565b9150602083013561262081612495565b600181811c9082168061266b57607f821691505b60208210810361268957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b60208082526005908201526432b93937b960d91b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a7557610a756126c2565b5f8261270757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561271c575f80fd5b5051919050565b5f60208284031215612733575f80fd5b81516125bb816124d3565b81810381811115610a7557610a756126c2565b80820180821115610a7557610a756126c2565b5f60208284031215612774575f80fd5b81516125bb81612495565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127cf5783516001600160a01b03168352602093840193909201916001016127a8565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220f7764275a10588ae97650e5a3a83570d89aaea14c200675cd1d028837002225f64736f6c634300081a0033
Deployed Bytecode
0x60806040526004361061030e575f3560e01c806395927c2511610195578063cb963728116100ea578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610960578063f53bc8351461097f578063f8b45b051461099e578063fd72e22a146109b357005b8063e6c1909b14610902578063ee5ecc8914610922578063ef998cf01461094157005b8063d5759ba3116100c7578063d5759ba31461086a578063dcf7aef31461088a578063dd62ed3e146108a9578063e2f45605146108ed57005b8063cb96372814610817578063d00efb2f14610836578063d26ed3e31461084b57005b8063ad29ffde11610151578063b8eb35461161012e578063b8eb3546146107af578063b8f7a665146107c4578063bc063e1a146107e4578063c04a5414146107f857005b8063ad29ffde14610743578063afa4f3b214610762578063b62496f51461078157005b806395927c251461069e57806395d89b41146106bd5780639a7a23d6146106d15780639c0db5f3146106f0578063a9059cbb1461070f578063acb2ad6f1461072e57005b80634e6fd6c4116102635780636ca541e511610207578063715018a6116101e4578063715018a61461063a57806372ac24861461064e578063790ca4131461066d5780638da5cb5b1461068257005b80636ca541e5146105d157806370a08231146105f157806370db69d61461062557005b80635932ead1116102405780635932ead11461054657806359512ab0146105655780635cce86cd146105845780635d0044ca146105b257005b80634e6fd6c4146104f05780634fbee19314610505578063538ba4f91461053357005b80632b14ca56116102ca5780633bbac579116102a75780633bbac5791461045b57806341aea9de1461048957806347062402146104a857806349bd5a5e146104bd57005b80632b14ca5614610417578063313ce5671461042c5780633b4e935a1461044757005b806306fdde0314610317578063095ea7b314610341578063106a5a8f146103705780631694505e1461038f57806318160ddd146103da57806323b872dd146103f857005b3661031557005b005b348015610322575f80fd5b5061032b6109d2565b6040516103389190612460565b60405180910390f35b34801561034c575f80fd5b5061036061035b3660046124a9565b610a62565b6040519015158152602001610338565b34801561037b575f80fd5b5061031561038a3660046124e0565b610a7b565b34801561039a575f80fd5b506103c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610338565b3480156103e5575f80fd5b506003545b604051908152602001610338565b348015610403575f80fd5b50610360610412366004612562565b610acb565b348015610422575f80fd5b506103ea60105481565b348015610437575f80fd5b5060405160128152602001610338565b348015610452575f80fd5b50610315610aee565b348015610466575f80fd5b506103606104753660046125a0565b60126020525f908152604090205460ff1681565b348015610494575f80fd5b506103156104a33660046125c2565b610b6e565b3480156104b3575f80fd5b506103ea600f5481565b3480156104c8575f80fd5b506103c27f0000000000000000000000001248335a40f45536d95fb707a6ffd0f199d6814481565b3480156104fb575f80fd5b506103c261dead81565b348015610510575f80fd5b5061036061051f3660046125a0565b60136020525f908152604090205460ff1681565b34801561053e575f80fd5b506103c25f81565b348015610551575f80fd5b506103156105603660046125c2565b610bce565b348015610570575f80fd5b5061031561057f3660046125c2565b610c23565b34801561058f575f80fd5b5061036061059e3660046125a0565b60146020525f908152604090205460ff1681565b3480156105bd575f80fd5b506103156105cc3660046125dd565b610c78565b3480156105dc575f80fd5b5060075461036090600160a81b900460ff1681565b3480156105fc575f80fd5b506103ea61060b3660046125a0565b6001600160a01b03165f9081526001602052604090205490565b348015610630575f80fd5b506103ea600b5481565b348015610645575f80fd5b50610315610cf5565b348015610659575f80fd5b506103156106683660046125a0565b610d08565b348015610678575f80fd5b506103ea60095481565b34801561068d575f80fd5b505f546001600160a01b03166103c2565b3480156106a9575f80fd5b506103156106b83660046125dd565b610d96565b3480156106c8575f80fd5b5061032b610dfd565b3480156106dc575f80fd5b506103156106eb3660046125f4565b610e0c565b3480156106fb575f80fd5b5061031561070a3660046124e0565b610e5a565b34801561071a575f80fd5b506103606107293660046124a9565b611067565b348015610739575f80fd5b506103ea60115481565b34801561074e575f80fd5b5061031561075d3660046124e0565b611074565b34801561076d575f80fd5b5061031561077c3660046125dd565b6110be565b34801561078c575f80fd5b5061036061079b3660046125a0565b60156020525f908152604090205460ff1681565b3480156107ba575f80fd5b506103ea600c5481565b3480156107cf575f80fd5b5060075461036090600160c01b900460ff1681565b3480156107ef575f80fd5b506103ea601981565b348015610803575f80fd5b506007546103c2906001600160a01b031681565b348015610822575f80fd5b506103156108313660046125a0565b611188565b348015610841575f80fd5b506103ea60085481565b348015610856575f80fd5b506103156108653660046125dd565b61136a565b348015610875575f80fd5b5060075461036090600160a01b900460ff1681565b348015610895575f80fd5b506103156108a43660046125dd565b6113d1565b3480156108b4575f80fd5b506103ea6108c336600461262b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156108f8575f80fd5b506103ea600e5481565b34801561090d575f80fd5b5060075461036090600160b01b900460ff1681565b34801561092d575f80fd5b5061031561093c3660046125a0565b611438565b34801561094c575f80fd5b5061031561095b3660046125dd565b6114be565b34801561096b575f80fd5b5061031561097a3660046125a0565b61153b565b34801561098a575f80fd5b506103156109993660046125dd565b611578565b3480156109a9575f80fd5b506103ea600d5481565b3480156109be575f80fd5b506006546103c2906001600160a01b031681565b6060600480546109e190612657565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0d90612657565b8015610a585780601f10610a2f57610100808354040283529160200191610a58565b820191905f5260205f20905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b5f33610a6f8185856115f5565b60019150505b92915050565b610a83611607565b5f5b82811015610ac557610abd848483818110610aa257610aa261268f565b9050602002016020810190610ab791906125a0565b83611633565b600101610a85565b50505050565b5f33610ad885828561168e565b610ae3858585611703565b506001949350505050565b610af6611607565b600754600160c01b900460ff1615610b295760405162461bcd60e51b8152600401610b20906126a3565b60405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b610b76611607565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610bc390831515815260200190565b60405180910390a150565b610bd6611607565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610bc390831515815260200190565b610c2b611607565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610bc390831515815260200190565b610c80611607565b6103e8610c8c60035490565b610c979060036126d6565b610ca191906126ed565b811015610cc05760405162461bcd60e51b8152600401610b20906126a3565b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610bc3565b610cfd611607565b610d065f611760565b565b610d10611607565b6001600160a01b038116610d365760405162461bcd60e51b8152600401610b20906126a3565b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d9e611607565b6019811115610dbf5760405162461bcd60e51b8152600401610b20906126a3565b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d8a565b6060600580546109e190612657565b610e14611607565b6001600160a01b0382165f9081526015602052604090205460ff1615610e4c5760405162461bcd60e51b8152600401610b20906126a3565b610e5682826117a4565b5050565b610e62611607565b5f5b82811015610ac55760155f858584818110610e8157610e8161268f565b9050602002016020810190610e9691906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16158015610f1757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610ef657610ef661268f565b9050602002016020810190610f0b91906125a0565b6001600160a01b031614155b8015610f52575030848483818110610f3157610f3161268f565b9050602002016020810190610f4691906125a0565b6001600160a01b031614155b8015610f8d57505f848483818110610f6c57610f6c61268f565b9050602002016020810190610f8191906125a0565b6001600160a01b031614155b801561102a575060135f858584818110610fa957610fa961268f565b9050602002016020810190610fbe91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff1615801561102a575060145f858584818110610ff757610ff761268f565b905060200201602081019061100c91906125a0565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561105f5761105f8484838181106110445761104461268f565b905060200201602081019061105991906125a0565b836117ff565b600101610e64565b5f33610a6f818585611703565b61107c611607565b5f5b82811015610ac5576110b684848381811061109b5761109b61268f565b90506020020160208101906110b091906125a0565b8361185a565b60010161107e565b6110c6611607565b5f6110d060035490565b9050620f42406110e18260016126d6565b6110eb91906126ed565b82101561110a5760405162461bcd60e51b8152600401610b20906126a3565b6103e86111188260056126d6565b61112291906126ed565b8211156111415760405162461bcd60e51b8152600401610b20906126a3565b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b611190611607565b335f6001600160a01b0383166112345750475f816111c05760405162461bcd60e51b8152600401610b20906126a3565b6040516001600160a01b0384169083905f81818185875af1925050503d805f8114611206576040519150601f19603f3d011682016040523d82523d5f602084013e61120b565b606091505b5050809150508061122e5760405162461bcd60e51b8152600401610b20906126a3565b5061132b565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611276573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061129a919061270c565b90505f81116112bb5760405162461bcd60e51b8152600401610b20906126a3565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af1158015611305573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113299190612723565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910161117b565b611372611607565b60198111156113935760405162461bcd60e51b8152600401610b20906126a3565b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d8a565b6113d9611607565b60198111156113fa5760405162461bcd60e51b8152600401610b20906126a3565b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d8a565b611440611607565b6001600160a01b0381166114665760405162461bcd60e51b8152600401610b20906126a3565b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d8a565b6114c6611607565b6103e86114d260035490565b6114dd9060026126d6565b6114e791906126ed565b8110156115065760405162461bcd60e51b8152600401610b20906126a3565b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610bc3565b611543611607565b6001600160a01b03811661156c57604051631e4fbdf760e01b81525f6004820152602401610b20565b61157581611760565b50565b611580611607565b6103e861158c60035490565b6115979060026126d6565b6115a191906126ed565b8110156115c05760405162461bcd60e51b8152600401610b20906126a3565b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610bc3565b61160283838360016118b5565b505050565b5f546001600160a01b03163314610d065760405163118cdaa760e01b8152336004820152602401610b20565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d8a565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610ac557818110156116f557604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610b20565b610ac584848484035f6118b5565b6001600160a01b03831661172c57604051634b637e8f60e11b81525f6004820152602401610b20565b6001600160a01b0382166117555760405163ec442f0560e01b81525f6004820152602401610b20565b611602838383611987565b5f546001600160a01b031680156117855761177b815f61185a565b611785815f611633565b61179082600161185a565b61179b826001611633565b610e5682612057565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d8a565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d8a565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d8a565b6001600160a01b0384166118de5760405163e602df0560e01b81525f6004820152602401610b20565b6001600160a01b03831661190757604051634a1406b160e11b81525f6004820152602401610b20565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610ac557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161197991815260200190565b60405180910390a350505050565b6001600160a01b0383165f908152601260205260409020543390329060ff16156119c35760405162461bcd60e51b8152600401610b20906126a3565b846001600160a01b0316826001600160a01b031614806119fb57506001600160a01b0382165f9081526012602052604090205460ff16155b611a175760405162461bcd60e51b8152600401610b20906126a3565b846001600160a01b0316816001600160a01b03161480611a485750816001600160a01b0316816001600160a01b0316145b80611a6b57506001600160a01b0381165f9081526012602052604090205460ff16155b611a875760405162461bcd60e51b8152600401610b20906126a3565b600754600160c01b900460ff1680611ab657506001600160a01b0385165f9081526014602052604090205460ff165b80611ad857506001600160a01b0384165f9081526014602052604090205460ff165b611af45760405162461bcd60e51b8152600401610b20906126a3565b6007545f90600160a01b900460ff168015611b195750600754600160b81b900460ff16155b8015611b5f57506001600160a01b0386165f9081526014602052604090205460ff1680611b5d57506001600160a01b0385165f9081526014602052604090205460ff165b155b90508015611e55575f546001600160a01b03878116911614801590611b9157505f546001600160a01b03868116911614155b8015611ba557506001600160a01b03851615155b8015611bbc57506001600160a01b03851661dead14155b15611e5557600754600160a81b900460ff1615611cdf577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316856001600160a01b031614158015611c4757507f0000000000000000000000001248335a40f45536d95fb707a6ffd0f199d681446001600160a01b0316856001600160a01b031614155b15611cdf57611c5760034361273e565b6001600160a01b0383165f90815260166020526040902054108015611c9c5750611c8260034361273e565b6001600160a01b0386165f90815260166020526040902054105b611cb85760405162461bcd60e51b8152600401610b20906126a3565b6001600160a01b038083165f90815260166020526040808220439081905592881682529020555b6001600160a01b0386165f9081526015602052604090205460ff168015611d1e57506001600160a01b0385165f9081526014602052604090205460ff16155b15611d8d57600b54841115611d455760405162461bcd60e51b8152600401610b20906126a3565b600d546001600160a01b0386165f90815260016020526040902054611d6a9086612751565b1115611d885760405162461bcd60e51b8152600401610b20906126a3565b611e55565b6001600160a01b0385165f9081526015602052604090205460ff168015611dcc57506001600160a01b0386165f9081526014602052604090205460ff16155b15611df357600c54841115611d885760405162461bcd60e51b8152600401610b20906126a3565b6001600160a01b0385165f9081526014602052604090205460ff16611e5557600d546001600160a01b0386165f90815260016020526040902054611e379086612751565b1115611e555760405162461bcd60e51b8152600401610b20906126a3565b6007545f90600160b01b900460ff168015611e7a5750600754600160b81b900460ff16155b8015611ec057506001600160a01b0387165f9081526013602052604090205460ff1680611ebe57506001600160a01b0386165f9081526013602052604090205460ff165b155b90508015611fe1576001600160a01b0386165f9081526015602052604081205460ff168015611ef057505f601054115b15611f1657606460105487611f0591906126d6565b611f0f91906126ed565b9050611fc2565b6001600160a01b0388165f9081526015602052604090205460ff168015611f3e57505f600f54115b15611f53576064600f5487611f0591906126d6565b6001600160a01b0387165f9081526015602052604090205460ff16158015611f9357506001600160a01b0388165f9081526015602052604090205460ff16155b8015611fa057505f601154115b15611fc257606460115487611fb591906126d6565b611fbf91906126ed565b90505b8015611fdf57611fd2818761273e565b9550611fdf8830836120a6565b505b305f90815260016020526040902054600e5481101582801561201b57506001600160a01b0389165f9081526015602052604090205460ff16155b80156120245750805b1561204157600a544311156120415761203c826121cc565b43600a555b61204c8989896120a6565b505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120d0578060035f8282546120c59190612751565b909155506121409050565b6001600160a01b0383165f90815260016020526040902054818110156121225760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610b20565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661215c5760038054829003905561217a565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121bf91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106122165761221661268f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b69190612764565b816001815181106122c9576122c961268f565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460046122f991906126d6565b905080841115612307578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061235b9087905f9087903090429060040161277f565b5f604051808303815f87803b158015612372575f80fd5b505af1158015612384573d5f803e3d5ffd5b504792505f915061239890506002836126ed565b90505f6123a5828461273e565b6006546040519192506001600160a01b03169083905f81818185875af1925050503d805f81146123f0576040519150601f19603f3d011682016040523d82523d5f602084013e6123f5565b606091505b50506007546040519197506001600160a01b03169082905f81818185875af1925050503d805f8114612442576040519150601f19603f3d011682016040523d82523d5f602084013e612447565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611575575f80fd5b5f80604083850312156124ba575f80fd5b82356124c581612495565b946020939093013593505050565b8015158114611575575f80fd5b5f805f604084860312156124f2575f80fd5b833567ffffffffffffffff811115612508575f80fd5b8401601f81018613612518575f80fd5b803567ffffffffffffffff81111561252e575f80fd5b8660208260051b8401011115612542575f80fd5b602091820194509250840135612557816124d3565b809150509250925092565b5f805f60608486031215612574575f80fd5b833561257f81612495565b9250602084013561258f81612495565b929592945050506040919091013590565b5f602082840312156125b0575f80fd5b81356125bb81612495565b9392505050565b5f602082840312156125d2575f80fd5b81356125bb816124d3565b5f602082840312156125ed575f80fd5b5035919050565b5f8060408385031215612605575f80fd5b823561261081612495565b91506020830135612620816124d3565b809150509250929050565b5f806040838503121561263c575f80fd5b823561264781612495565b9150602083013561262081612495565b600181811c9082168061266b57607f821691505b60208210810361268957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b60208082526005908201526432b93937b960d91b604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a7557610a756126c2565b5f8261270757634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561271c575f80fd5b5051919050565b5f60208284031215612733575f80fd5b81516125bb816124d3565b81810381811115610a7557610a756126c2565b80820180821115610a7557610a756126c2565b5f60208284031215612774575f80fd5b81516125bb81612495565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127cf5783516001600160a01b03168352602093840193909201916001016127a8565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220f7764275a10588ae97650e5a3a83570d89aaea14c200675cd1d028837002225f64736f6c634300081a0033
Deployed Bytecode Sourcemap
26292:14711:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12959:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15293:222;;;;;;;;;;-1:-1:-1;15293:222:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15293:222:0;945:187:1;33939:239:0;;;;;;;;;;-1:-1:-1;33939:239:0;;;;;:::i;:::-;;:::i;26334:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2198:32:1;;;2180:51;;2168:2;2153:18;26334:49:0;2010:227:1;14061:99:0;;;;;;;;;;-1:-1:-1;14140:12:0;;14061:99;;;2388:25:1;;;2376:2;2361:18;14061:99:0;2242:177:1;16093:283:0;;;;;;;;;;-1:-1:-1;16093:283:0;;;;;:::i;:::-;;:::i;27114:22::-;;;;;;;;;;;;;;;;13912:84;;;;;;;;;;-1:-1:-1;13912:84:0;;13986:2;3079:36:1;;3067:2;3052:18;13912:84:0;2937:184:1;30661:205:0;;;;;;;;;;;;;:::i;27178:37::-;;;;;;;;;;-1:-1:-1;27178:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31523:138;;;;;;;;;;-1:-1:-1;31523:138:0;;;;;:::i;:::-;;:::i;27086:21::-;;;;;;;;;;;;;;;;26511:38;;;;;;;;;;;;;;;26448:54;;;;;;;;;;;;26495:6;26448:54;;27222:50;;;;;;;;;;-1:-1:-1;27222:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26392:49;;;;;;;;;;;;26439:1;26392:49;;31669:144;;;;;;;;;;-1:-1:-1;31669:144:0;;;;;:::i;:::-;;:::i;31821:133::-;;;;;;;;;;-1:-1:-1;31821:133:0;;;;;:::i;:::-;;:::i;27279:52::-;;;;;;;;;;-1:-1:-1;27279:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32358:200;;;;;;;;;;-1:-1:-1;32358:200:0;;;;;:::i;:::-;;:::i;26669:29::-;;;;;;;;;;-1:-1:-1;26669:29:0;;;;-1:-1:-1;;;26669:29:0;;;;;;14223:118;;;;;;;;;;-1:-1:-1;14223:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14315:18:0;14288:7;14315:18;;;:9;:18;;;;;;;14223:118;26956:21;;;;;;;;;;;;;;;;24940:103;;;;;;;;;;;;;:::i;31183:332::-;;;;;;;;;;-1:-1:-1;31183:332:0;;;;;:::i;:::-;;:::i;26826:25::-;;;;;;;;;;;;;;;;24265:87;;;;;;;;;;-1:-1:-1;24311:7:0;24338:6;-1:-1:-1;;;;;24338:6:0;24265:87;;33194:227;;;;;;;;;;-1:-1:-1;33194:227:0;;;;;:::i;:::-;;:::i;13169:95::-;;;;;;;;;;;;;:::i;34769:226::-;;;;;;;;;;-1:-1:-1;34769:226:0;;;;;:::i;:::-;;:::i;34186:575::-;;;;;;;;;;-1:-1:-1;34186:575:0;;;;;:::i;:::-;;:::i;14546:182::-;;;;;;;;;;-1:-1:-1;14546:182:0;;;;;:::i;:::-;;:::i;27143:26::-;;;;;;;;;;;;;;;;33696:235;;;;;;;;;;-1:-1:-1;33696:235:0;;;;;:::i;:::-;;:::i;32566:393::-;;;;;;;;;;-1:-1:-1;32566:393:0;;;;;:::i;:::-;;:::i;27338:57::-;;;;;;;;;;-1:-1:-1;27338:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26984:22;;;;;;;;;;;;;;;;26766:18;;;;;;;;;;-1:-1:-1;26766:18:0;;;;-1:-1:-1;;;26766:18:0;;;;;;26911:36;;;;;;;;;;;;26945:2;26911:36;;26594:32;;;;;;;;;;-1:-1:-1;26594:32:0;;;;-1:-1:-1;;;;;26594:32:0;;;35003:641;;;;;;;;;;-1:-1:-1;35003:641:0;;;;;:::i;:::-;;:::i;26793:26::-;;;;;;;;;;;;;;;;33429:259;;;;;;;;;;-1:-1:-1;33429:259:0;;;;;:::i;:::-;;:::i;26635:27::-;;;;;;;;;;-1:-1:-1;26635:27:0;;;;-1:-1:-1;;;26635:27:0;;;;;;32967:219;;;;;;;;;;-1:-1:-1;32967:219:0;;;;;:::i;:::-;;:::i;14791:183::-;;;;;;;;;;-1:-1:-1;14791:183:0;;;;;:::i;:::-;-1:-1:-1;;;;;14939:18:0;;;14907:7;14939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14791:183;27046:33;;;;;;;;;;;;;;;;26705:24;;;;;;;;;;-1:-1:-1;26705:24:0;;;;-1:-1:-1;;;26705:24:0;;;;;;30874:301;;;;;;;;;;-1:-1:-1;30874:301:0;;;;;:::i;:::-;;:::i;32158:192::-;;;;;;;;;;-1:-1:-1;32158:192:0;;;;;:::i;:::-;;:::i;25198:220::-;;;;;;;;;;-1:-1:-1;25198:220:0;;;;;:::i;:::-;;:::i;31962:188::-;;;;;;;;;;-1:-1:-1;31962:188:0;;;;;:::i;:::-;;:::i;27013:24::-;;;;;;;;;;;;;;;;26556:31;;;;;;;;;;-1:-1:-1;26556:31:0;;;;-1:-1:-1;;;;;26556:31:0;;;12959:91;13004:13;13037:5;13030:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12959:91;:::o;15293:222::-;15393:4;4254:10;15454:31;4254:10;15470:7;15479:5;15454:8;:31::i;:::-;15503:4;15496:11;;;15293:222;;;;;:::o;33939:239::-;24151:13;:11;:13::i;:::-;34065:9:::1;34060:111;34080:19:::0;;::::1;34060:111;;;34121:38;34140:8;;34149:1;34140:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34153:5;34121:18;:38::i;:::-;34101:3;;34060:111;;;;33939:239:::0;;;:::o;16093:283::-;16214:4;4254:10;16272:37;16288:4;4254:10;16303:5;16272:15;:37::i;:::-;16320:26;16330:4;16336:2;16340:5;16320:9;:26::i;:::-;-1:-1:-1;16364:4:0;;16093:283;-1:-1:-1;;;;16093:283:0:o;30661:205::-;24151:13;:11;:13::i;:::-;30718:6:::1;::::0;-1:-1:-1;;;30718:6:0;::::1;;;30717:7;30709:25;;;;-1:-1:-1::0;;;30709:25:0::1;;;;;;;:::i;:::-;;;;;;;;;30745:6;:13:::0;;-1:-1:-1;;;;30745:13:0::1;-1:-1:-1::0;;;30745:13:0::1;::::0;;30783:12:::1;30769:11;:26:::0;30819:15:::1;30806:10;:28:::0;30850:8:::1;::::0;::::1;::::0;30745:13;;30850:8:::1;30661:205::o:0;31523:138::-;24151:13;:11;:13::i;:::-;31591:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;31591:23:0::1;-1:-1:-1::0;;;;31591:23:0;;::::1;;::::0;;31630::::1;::::0;::::1;::::0;::::1;::::0;31609:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;31630:23:0::1;;;;;;;;31523:138:::0;:::o;31669:144::-;24151:13;:11;:13::i;:::-;31739:17:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;31739:25:0::1;-1:-1:-1::0;;;;31739:25:0;;::::1;;::::0;;31780::::1;::::0;::::1;::::0;::::1;::::0;31759:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;31821:133:0;24151:13;:11;:13::i;:::-;31888:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;31888:20:0::1;-1:-1:-1::0;;;;31888:20:0;;::::1;;::::0;;31924:22:::1;::::0;::::1;::::0;::::1;::::0;31903:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32358:200:0;24151:13;:11;:13::i;:::-;32467:4:::1;32446:13;14140:12:::0;;;14061:99;32446:13:::1;:17;::::0;32462:1:::1;32446:17;:::i;:::-;32445:26;;;;:::i;:::-;32434:6;:38;;32426:56;;;;-1:-1:-1::0;;;32426:56:0::1;;;;;;;:::i;:::-;32493:9;:18:::0;;;32527:23:::1;::::0;2388:25:1;;;32527:23:0::1;::::0;2376:2:1;2361:18;32527:23:0::1;2242:177:1::0;24940:103:0;24151:13;:11;:13::i;:::-;25005:30:::1;25032:1;25005:18;:30::i;:::-;24940:103::o:0;31183:332::-;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;31302:32:0;::::1;31294:50;;;;-1:-1:-1::0;;;31294:50:0::1;;;;;;;:::i;:::-;31375:17;::::0;;-1:-1:-1;;;;;31403:38:0;;::::1;-1:-1:-1::0;;;;;;31403:38:0;::::1;::::0;::::1;::::0;;;31457:50:::1;::::0;;6394:51:1;;;31375:17:0;::::1;6476:2:1::0;6461:18;;6454:60;;;31375:17:0;31457:50:::1;::::0;6367:18:1;31457:50:0::1;;;;;;;;31283:232;31183:332:::0;:::o;33194:227::-;24151:13;:11;:13::i;:::-;26945:2:::1;33271:8;:19;;33263:37;;;;-1:-1:-1::0;;;33263:37:0::1;;;;;;;:::i;:::-;33330:7;::::0;;33348:18;;;;33382:31:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;33382:31:0::1;::::0;6672:18:1;33382:31:0::1;6525:248:1::0;13169:95:0;13216:13;13249:7;13242:14;;;;;:::i;34769:226::-;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;34894:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;::::1;;34893:32;34885:50;;;;-1:-1:-1::0;;;34885:50:0::1;;;;;;;:::i;:::-;34946:41;34975:4;34981:5;34946:28;:41::i;:::-;34769:226:::0;;:::o;34186:575::-;24151:13;:11;:13::i;:::-;34302:9:::1;34297:457;34317:19:::0;;::::1;34297:457;;;34382:25;:38;34408:8;;34417:1;34408:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34382:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34382:38:0;;::::1;;34381:39;34380:103:::0;::::1;;;;34466:15;-1:-1:-1::0;;;;;34443:39:0::1;:8;;34452:1;34443:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34443:39:0::1;;;34380:103;:154;;;;-1:-1:-1::0;34528:4:0::1;34505:8:::0;;34514:1;34505:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34505:28:0::1;;;34380:154;:204;;;;-1:-1:-1::0;26439:1:0::1;34556:8:::0;;34565:1;34556:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34556:27:0::1;;;34380:204;:318;;;;;34607:18;:31;34626:8;;34635:1;34626:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34607:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34607:31:0;;::::1;;34606:32;:91:::0;::::1;;;;34664:20;:33;34685:8;;34694:1;34685:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;34664:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;34664:33:0;;::::1;;34663:34;34606:91;34358:384;;;34714:28;34723:8;;34732:1;34723:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34736:5;34714:8;:28::i;:::-;34338:3;;34297:457;;14546:182:::0;14615:4;4254:10;14671:27;4254:10;14688:2;14692:5;14671:9;:27::i;33696:235::-;24151:13;:11;:13::i;:::-;33820:9:::1;33815:109;33835:19:::0;;::::1;33815:109;;;33876:36;33893:8;;33902:1;33893:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;33906:5;33876:16;:36::i;:::-;33856:3;;33815:109;;32566:393:::0;24151:13;:11;:13::i;:::-;32643:20:::1;32666:13;14140:12:::0;;;14061:99;32666:13:::1;32643:36:::0;-1:-1:-1;32729:7:0::1;32709:16;32643:36:::0;32724:1:::1;32709:16;:::i;:::-;32708:28;;;;:::i;:::-;32698:6;:38;;32690:56;;;;-1:-1:-1::0;;;32690:56:0::1;;;;;;;:::i;:::-;32796:4;32776:16;:12:::0;32791:1:::1;32776:16;:::i;:::-;32775:25;;;;:::i;:::-;32765:6;:35;;32757:53;;;;-1:-1:-1::0;;;32757:53:0::1;;;;;;;:::i;:::-;32840:18;::::0;;32869:27;;;;32912:39:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;32912:39:0::1;::::0;6672:18:1;32912:39:0::1;;;;;;;;32632:327;;32566:393:::0;:::o;35003:641::-;24151:13;:11;:13::i;:::-;35095:10:::1;35078:14;-1:-1:-1::0;;;;;35145:22:0;::::1;35141:445;;-1:-1:-1::0;35220:21:0::1;35184:12;35264:10:::0;35256:28:::1;;;;-1:-1:-1::0;;;35256:28:0::1;;;;;;;:::i;:::-;35313:39;::::0;-1:-1:-1;;;;;35313:20:0;::::1;::::0;35341:6;;35313:39:::1;::::0;;;35341:6;35313:20;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35299:53;;;;;35375:7;35367:25;;;;-1:-1:-1::0;;;35367:25:0::1;;;;;;;:::i;:::-;35169:235;35141:445;;;35434:39;::::0;-1:-1:-1;;;35434:39:0;;35467:4:::1;35434:39;::::0;::::1;2180:51:1::0;-1:-1:-1;;;;;35434:24:0;::::1;::::0;::::1;::::0;2153:18:1;;35434:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35425:48;;35505:1;35496:6;:10;35488:28;;;;-1:-1:-1::0;;;35488:28:0::1;;;;;;;:::i;:::-;35531:43;::::0;-1:-1:-1;;;35531:43:0;;35555:10:::1;35531:43;::::0;::::1;7351:51:1::0;7418:18;;;7411:34;;;-1:-1:-1;;;;;35531:23:0;::::1;::::0;::::1;::::0;7324:18:1;;35531:43:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35141:445;35601:35;::::0;;-1:-1:-1;;;;;7369:32:1;;7351:51;;7433:2;7418:18;;7411:34;;;35601:35:0::1;::::0;7324:18:1;35601:35:0::1;7177:274:1::0;33429:259:0;24151:13;:11;:13::i;:::-;26945:2:::1;33514:12;:23;;33506:41;;;;-1:-1:-1::0;;;33506:41:0::1;;;;;;;:::i;:::-;33577:11;::::0;;33599:26;;;;33641:39:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;33641:39:0::1;::::0;6672:18:1;33641:39:0::1;6525:248:1::0;32967:219:0;24151:13;:11;:13::i;:::-;26945:2:::1;33042:7;:18;;33034:36;;;;-1:-1:-1::0;;;33034:36:0::1;;;;;;;:::i;:::-;33100:6;::::0;;33117:16;;;;33149:29:::1;::::0;;6699:25:1;;;6755:2;6740:18;;6733:34;;;33149:29:0::1;::::0;6672:18:1;33149:29:0::1;6525:248:1::0;30874:301:0;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;30968:31:0;::::1;30960:49;;;;-1:-1:-1::0;;;30960:49:0::1;;;;;;;:::i;:::-;31040:16;::::0;;-1:-1:-1;;;;;31067:36:0;;::::1;-1:-1:-1::0;;;;;;31067:36:0;::::1;::::0;::::1;::::0;;;31119:48:::1;::::0;;6394:51:1;;;31040:16:0;::::1;6476:2:1::0;6461:18;;6454:60;;;31040:16:0;31119:48:::1;::::0;6367:18:1;31119:48:0::1;6220:300:1::0;32158:192:0;24151:13;:11;:13::i;:::-;32265:4:::1;32244:13;14140:12:::0;;;14061:99;32244:13:::1;:17;::::0;32260:1:::1;32244:17;:::i;:::-;32243:26;;;;:::i;:::-;32232:6;:38;;32224:56;;;;-1:-1:-1::0;;;32224:56:0::1;;;;;;;:::i;:::-;32291:7;:16:::0;;;32323:19:::1;::::0;2388:25:1;;;32323:19:0::1;::::0;2376:2:1;2361:18;32323:19:0::1;2242:177:1::0;25198:220:0;24151:13;:11;:13::i;:::-;-1:-1:-1;;;;;25283:22:0;::::1;25279:93;;25329:31;::::0;-1:-1:-1;;;25329:31:0;;25357:1:::1;25329:31;::::0;::::1;2180:51:1::0;2153:18;;25329:31:0::1;2010:227:1::0;25279:93:0::1;25382:28;25401:8;25382:18;:28::i;:::-;25198:220:::0;:::o;31962:188::-;24151:13;:11;:13::i;:::-;32068:4:::1;32047:13;14140:12:::0;;;14061:99;32047:13:::1;:17;::::0;32063:1:::1;32047:17;:::i;:::-;32046:26;;;;:::i;:::-;32035:6;:38;;32027:56;;;;-1:-1:-1::0;;;32027:56:0::1;;;;;;;:::i;:::-;32094:6;:15:::0;;;32125:17:::1;::::0;2388:25:1;;;32125:17:0::1;::::0;2376:2:1;2361:18;32125:17:0::1;2242:177:1::0;20254:164:0;20373:37;20382:5;20389:7;20398:5;20405:4;20373:8;:37::i;:::-;20254:164;;;:::o;24430:166::-;24311:7;24338:6;-1:-1:-1;;;;;24338:6:0;4254:10;24490:23;24486:103;;24537:40;;-1:-1:-1;;;24537:40:0;;4254:10;24537:40;;;2180:51:1;2153:18;;24537:40:0;2010:227:1;40443:179:0;-1:-1:-1;;;;;40528:29:0;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;40528:37:0;;;;;;;;;;40581:33;;7874:51:1;;;7941:18;;;7934:50;40581:33:0;;7847:18:1;40581:33:0;7706:284:1;22047:603:0;-1:-1:-1;;;;;14939:18:0;;;22181:24;14939:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22248:37:0;;22244:399;;22325:5;22306:16;:24;22302:214;;;22358:142;;-1:-1:-1;;;22358:142:0;;-1:-1:-1;;;;;8215:32:1;;22358:142:0;;;8197:51:1;8264:18;;;8257:34;;;8307:18;;;8300:34;;;8170:18;;22358:142:0;7995:345:1;22302:214:0;22559:57;22568:5;22575:7;22603:5;22584:16;:24;22610:5;22559:8;:57::i;16761:342::-;-1:-1:-1;;;;;16879:18:0;;16875:88;;16921:30;;-1:-1:-1;;;16921:30:0;;16948:1;16921:30;;;2180:51:1;2153:18;;16921:30:0;2010:227:1;16875:88:0;-1:-1:-1;;;;;16977:16:0;;16973:88;;17017:32;;-1:-1:-1;;;17017:32:0;;17046:1;17017:32;;;2180:51:1;2153:18;;17017:32:0;2010:227:1;16973:88:0;17071:24;17079:4;17085:2;17089:5;17071:7;:24::i;30263:390::-;30338:16;24338:6;-1:-1:-1;;;;;24338:6:0;30379:22;;30375:138;;30418:33;30435:8;30445:5;30418:16;:33::i;:::-;30466:35;30485:8;30495:5;30466:18;:35::i;:::-;30523:32;30540:8;30550:4;30523:16;:32::i;:::-;30566:34;30585:8;30595:4;30566:18;:34::i;:::-;30611;30636:8;30611:24;:34::i;40782:218::-;-1:-1:-1;;;;;40897:31:0;;;;;;:25;:31;;;;;;;;;:39;;-1:-1:-1;;40897:39:0;;;;;;;;;;40952:40;;7874:51:1;;;7941:18;;;7934:50;40952:40:0;;7847:18:1;40952:40:0;7706:284:1;40630:144:0;-1:-1:-1;;;;;40705:14:0;;;;;;:5;:14;;;;;;;;;:22;;-1:-1:-1;;40705:22:0;;;;;;;;;;40743:23;;7874:51:1;;;7941:18;;;7934:50;40743:23:0;;7847:18:1;40743:23:0;7706:284:1;40262:173:0;-1:-1:-1;;;;;40345:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;40345:35:0;;;;;;;;;;40396:31;;7874:51:1;;;7941:18;;;7934:50;40396:31:0;;7847:18:1;40396:31:0;7706:284:1;21269:486:0;-1:-1:-1;;;;;21425:19:0;;21421:91;;21468:32;;-1:-1:-1;;;21468:32:0;;21497:1;21468:32;;;2180:51:1;2153:18;;21468:32:0;2010:227:1;21421:91:0;-1:-1:-1;;;;;21526:21:0;;21522:92;;21571:31;;-1:-1:-1;;;21571:31:0;;21599:1;21571:31;;;2180:51:1;2153:18;;21571:31:0;2010:227:1;21522:92:0;-1:-1:-1;;;;;21624:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21670:78;;;;21721:7;-1:-1:-1;;;;;21705:31:0;21714:5;-1:-1:-1;;;;;21705:31:0;;21730:5;21705:31;;;;2388:25:1;;2376:2;2361:18;;2242:177;21705:31:0;;;;;;;;21269:486;;;;:::o;35652:3613::-;-1:-1:-1;;;;;35868:11:0;;35782:14;35868:11;;;:5;:11;;;;;;35799:10;;35837:9;;35868:11;;35867:12;35859:30;;;;-1:-1:-1;;;35859:30:0;;;;;;;:::i;:::-;35918:4;-1:-1:-1;;;;;35908:14:0;:6;-1:-1:-1;;;;;35908:14:0;;:32;;;-1:-1:-1;;;;;;35927:13:0;;;;;;:5;:13;;;;;;;;35926:14;35908:32;35900:50;;;;-1:-1:-1;;;35900:50:0;;;;;;;:::i;:::-;35993:4;-1:-1:-1;;;;;35983:14:0;:6;-1:-1:-1;;;;;35983:14:0;;:34;;;;36011:6;-1:-1:-1;;;;;36001:16:0;:6;-1:-1:-1;;;;;36001:16:0;;35983:34;:52;;;-1:-1:-1;;;;;;36022:13:0;;;;;;:5;:13;;;;;;;;36021:14;35983:52;35961:107;;;;-1:-1:-1;;;35961:107:0;;;;;;;:::i;:::-;36103:6;;-1:-1:-1;;;36103:6:0;;;;;:53;;-1:-1:-1;;;;;;36130:26:0;;;;;;:20;:26;;;;;;;;36103:53;:98;;;-1:-1:-1;;;;;;36177:24:0;;;;;;:20;:24;;;;;;;;36103:98;36081:153;;;;-1:-1:-1;;;36081:153:0;;;;;;;:::i;:::-;36261:15;;36247:11;;-1:-1:-1;;;36261:15:0;;;;:43;;;;-1:-1:-1;36294:10:0;;-1:-1:-1;;;36294:10:0;;;;36293:11;36261:43;:117;;;;-1:-1:-1;;;;;;36323:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;36353:24:0;;;;;;:20;:24;;;;;;;;36323:54;36321:57;36261:117;36247:131;;36393:6;36389:1624;;;24311:7;24338:6;-1:-1:-1;;;;;36438:15:0;;;24338:6;;36438:15;;;;:49;;-1:-1:-1;24311:7:0;24338:6;-1:-1:-1;;;;;36474:13:0;;;24338:6;;36474:13;;36438:49;:88;;;;-1:-1:-1;;;;;;36508:18:0;;;;36438:88;:127;;;;-1:-1:-1;;;;;;36547:18:0;;26495:6;36547:18;;36438:127;36416:1586;;;36604:17;;-1:-1:-1;;;36604:17:0;;;;36600:639;;;36664:15;-1:-1:-1;;;;;36650:30:0;:2;-1:-1:-1;;;;;36650:30:0;;;:53;;;;;36690:13;-1:-1:-1;;;;;36684:19:0;:2;-1:-1:-1;;;;;36684:19:0;;;36650:53;36646:574;;;36842:16;36857:1;36842:12;:16;:::i;:::-;-1:-1:-1;;;;;36770:36:0;;;;;;:28;:36;;;;;;:88;:209;;;;-1:-1:-1;36963:16:0;36978:1;36963:12;:16;:::i;:::-;-1:-1:-1;;;;;36895:32:0;;;;;;:28;:32;;;;;;:84;36770:209;36732:312;;;;-1:-1:-1;;;36732:312:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37071:36:0;;;;;;;:28;:36;;;;;;37110:12;37071:51;;;;37149:32;;;;;;;:47;36646:574;-1:-1:-1;;;;;37285:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;37321:24:0;;;;;;:20;:24;;;;;;;;37320:25;37285:60;37259:728;;;37406:6;;37396;:16;;37388:34;;;;-1:-1:-1;;;37388:34:0;;;;;;;:::i;:::-;37505:9;;-1:-1:-1;;;;;14315:18:0;;14288:7;14315:18;;;:9;:18;;;;;;37479:22;;:6;:22;:::i;:::-;:35;;37445:126;;;;-1:-1:-1;;;37445:126:0;;;;;;;:::i;:::-;37259:728;;;-1:-1:-1;;;;;37623:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;37657:26:0;;;;;;:20;:26;;;;;;;;37656:27;37623:60;37597:390;;;37744:7;;37734:6;:17;;37726:35;;;;-1:-1:-1;;;37726:35:0;;;;;;;:::i;37597:390::-;-1:-1:-1;;;;;37792:24:0;;;;;;:20;:24;;;;;;;;37787:200;;37901:9;;-1:-1:-1;;;;;14315:18:0;;14288:7;14315:18;;;:9;:18;;;;;;37875:22;;:6;:22;:::i;:::-;:35;;37841:126;;;;-1:-1:-1;;;37841:126:0;;;;;;;:::i;:::-;38040:12;;38025;;-1:-1:-1;;;38040:12:0;;;;:40;;;;-1:-1:-1;38070:10:0;;-1:-1:-1;;;38070:10:0;;;;38069:11;38040:40;:110;;;;-1:-1:-1;;;;;;38099:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;38127:22:0;;;;;;:18;:22;;;;;;;;38099:50;38097:53;38040:110;38025:125;;38167:7;38163:679;;;-1:-1:-1;;;;;38226:29:0;;38191:12;38226:29;;;:25;:29;;;;;;;;:44;;;;;38269:1;38259:7;;:11;38226:44;38222:471;;;38319:3;38308:7;;38299:6;:16;;;;:::i;:::-;38298:24;;;;:::i;:::-;38291:31;;38222:471;;;-1:-1:-1;;;;;38348:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;38392:1;38383:6;;:10;38348:45;38344:349;;;38441:3;38431:6;;38422;:15;;;;:::i;38344:349::-;-1:-1:-1;;;;;38489:29:0;;;;;;:25;:29;;;;;;;;38488:30;:83;;;;-1:-1:-1;;;;;;38540:31:0;;;;;;:25;:31;;;;;;;;38539:32;38488:83;:119;;;;;38606:1;38592:11;;:15;38488:119;38466:227;;;38674:3;38659:11;;38650:6;:20;;;;:::i;:::-;38649:28;;;;:::i;:::-;38642:35;;38466:227;38713:8;;38709:122;;38742:14;38752:4;38742:14;;:::i;:::-;;;38775:40;38789:4;38803;38810;38775:13;:40::i;:::-;38176:666;38163:679;38890:4;38854:15;14315:18;;;:9;:18;;;;;;38936;;38925:29;;;38969:7;:43;;;;-1:-1:-1;;;;;;38981:31:0;;;;;;:25;:31;;;;;;;;38980:32;38969:43;:57;;;;;39016:10;38969:57;38965:249;;;39062:26;;39047:12;:41;39043:160;;;39109:18;39119:7;39109:9;:18::i;:::-;39175:12;39146:26;:41;39043:160;39226:31;39240:4;39246:2;39250:6;39226:13;:31::i;:::-;35771:3494;;;;;;35652:3613;;;:::o;25578:191::-;25652:16;25671:6;;-1:-1:-1;;;;;25688:17:0;;;-1:-1:-1;;;;;;25688:17:0;;;;;;25721:40;;25671:6;;;;;;;25721:40;;25652:16;25721:40;25641:128;25578:191;:::o;17427:1169::-;-1:-1:-1;;;;;17551:18:0;;17547:552;;17705:5;17689:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17547:552:0;;-1:-1:-1;17547:552:0;;-1:-1:-1;;;;;17765:15:0;;17743:19;17765:15;;;:9;:15;;;;;;17799:19;;;17795:117;;;17846:50;;-1:-1:-1;;;17846:50:0;;-1:-1:-1;;;;;8215:32:1;;17846:50:0;;;8197:51:1;8264:18;;;8257:34;;;8307:18;;;8300:34;;;8170:18;;17846:50:0;7995:345:1;17795:117:0;-1:-1:-1;;;;;18035:15:0;;;;;;:9;:15;;;;;18053:19;;;;18035:37;;17547:552;-1:-1:-1;;;;;18115:16:0;;18111:435;;18281:12;:21;;;;;;;18111:435;;;-1:-1:-1;;;;;18497:13:0;;;;;;:9;:13;;;;;:22;;;;;;18111:435;18578:2;-1:-1:-1;;;;;18563:25:0;18572:4;-1:-1:-1;;;;;18563:25:0;;18582:5;18563:25;;;;2388::1;;2376:2;2361:18;;2242:177;18563:25:0;;;;;;;;17427:1169;;;:::o;39273:981::-;28481:10;:17;;-1:-1:-1;;;;28481:17:0;-1:-1:-1;;;28481:17:0;;;39397:16:::1;::::0;;39411:1:::1;39397:16:::0;;;;;::::1;::::0;;-1:-1:-1;;;;39397:16:0;39411:1;39397:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;39397:16:0::1;39373:40;;39442:4;39424;39429:1;39424:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;39424:23:0::1;;;-1:-1:-1::0;;;;;39424:23:0::1;;;::::0;::::1;39468:15;-1:-1:-1::0;;;;;39468:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39458:4;39463:1;39458:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;39458:32:0::1;;;-1:-1:-1::0;;;;;39458:32:0::1;;;::::0;::::1;39503:21;39527:18;;39548:1;39527:22;;;;:::i;:::-;39503:46;;39576:13;39566:7;:23;39562:79;;;39616:13;39606:23;;39562:79;39653:192;::::0;-1:-1:-1;;;39653:192:0;;-1:-1:-1;;;;;39653:15:0::1;:66;::::0;::::1;::::0;:192:::1;::::0;39734:7;;39756:1:::1;::::0;39772:4;;39799::::1;::::0;39819:15:::1;::::0;39653:192:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39879:21:0::1;::::0;-1:-1:-1;39858:18:0::1;::::0;-1:-1:-1;39940:14:0::1;::::0;-1:-1:-1;39953:1:0::1;39879:21:::0;39940:14:::1;:::i;:::-;39913:41:::0;-1:-1:-1;39967:25:0::1;39995:29;39913:41:::0;39995:10;:29:::1;:::i;:::-;40059:16;::::0;40051:83:::1;::::0;39967:57;;-1:-1:-1;;;;;;40059:16:0::1;::::0;40089;;40051:83:::1;::::0;;;40089:16;40059;40051:83:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;40169:17:0::1;::::0;40161:85:::1;::::0;40037:97;;-1:-1:-1;;;;;;40169:17:0::1;::::0;40200;;40161:85:::1;::::0;;;40200:17;40169;40161:85:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;28521:10:0;:18;;-1:-1:-1;;;;28521:18:0;;;-1:-1:-1;;;;;;;;39273:981:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:118::-;1223:5;1216:13;1209:21;1202:5;1199:32;1189:60;;1245:1;1242;1235:12;1260:745;1352:6;1360;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1477:9;1464:23;1510:18;1502:6;1499:30;1496:50;;;1542:1;1539;1532:12;1496:50;1565:22;;1618:4;1610:13;;1606:27;-1:-1:-1;1596:55:1;;1647:1;1644;1637:12;1596:55;1687:2;1674:16;1713:18;1705:6;1702:30;1699:50;;;1745:1;1742;1735:12;1699:50;1800:7;1793:4;1783:6;1780:1;1776:14;1772:2;1768:23;1764:34;1761:47;1758:67;;;1821:1;1818;1811:12;1758:67;1852:4;1844:13;;;;-1:-1:-1;1876:6:1;-1:-1:-1;1917:20:1;;1904:34;1947:28;1904:34;1947:28;:::i;:::-;1994:5;1984:15;;;1260:745;;;;;:::o;2424:508::-;2501:6;2509;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2625:9;2612:23;2644:31;2669:5;2644:31;:::i;:::-;2694:5;-1:-1:-1;2751:2:1;2736:18;;2723:32;2764:33;2723:32;2764:33;:::i;:::-;2424:508;;2816:7;;-1:-1:-1;;;2896:2:1;2881:18;;;;2868:32;;2424:508::o;3126:247::-;3185:6;3238:2;3226:9;3217:7;3213:23;3209:32;3206:52;;;3254:1;3251;3244:12;3206:52;3293:9;3280:23;3312:31;3337:5;3312:31;:::i;:::-;3362:5;3126:247;-1:-1:-1;;;3126:247:1:o;3378:241::-;3434:6;3487:2;3475:9;3466:7;3462:23;3458:32;3455:52;;;3503:1;3500;3493:12;3455:52;3542:9;3529:23;3561:28;3583:5;3561:28;:::i;3832:226::-;3891:6;3944:2;3932:9;3923:7;3919:23;3915:32;3912:52;;;3960:1;3957;3950:12;3912:52;-1:-1:-1;4005:23:1;;3832:226;-1:-1:-1;3832:226:1:o;4063:382::-;4128:6;4136;4189:2;4177:9;4168:7;4164:23;4160:32;4157:52;;;4205:1;4202;4195:12;4157:52;4244:9;4231:23;4263:31;4288:5;4263:31;:::i;:::-;4313:5;-1:-1:-1;4370:2:1;4355:18;;4342:32;4383:30;4342:32;4383:30;:::i;:::-;4432:7;4422:17;;;4063:382;;;;;:::o;4450:388::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4634:9;4621:23;4653:31;4678:5;4653:31;:::i;:::-;4703:5;-1:-1:-1;4760:2:1;4745:18;;4732:32;4773:33;4732:32;4773:33;:::i;4843:380::-;4922:1;4918:12;;;;4965;;;4986:61;;5040:4;5032:6;5028:17;5018:27;;4986:61;5093:2;5085:6;5082:14;5062:18;5059:38;5056:161;;5139:10;5134:3;5130:20;5127:1;5120:31;5174:4;5171:1;5164:15;5202:4;5199:1;5192:15;5056:161;;4843:380;;;:::o;5228:127::-;5289:10;5284:3;5280:20;5277:1;5270:31;5320:4;5317:1;5310:15;5344:4;5341:1;5334:15;5360:328;5562:2;5544:21;;;5601:1;5581:18;;;5574:29;-1:-1:-1;;;5634:2:1;5619:18;;5612:35;5679:2;5664:18;;5360:328::o;5693:127::-;5754:10;5749:3;5745:20;5742:1;5735:31;5785:4;5782:1;5775:15;5809:4;5806:1;5799:15;5825:168;5898:9;;;5929;;5946:15;;;5940:22;;5926:37;5916:71;;5967:18;;:::i;5998:217::-;6038:1;6064;6054:132;;6108:10;6103:3;6099:20;6096:1;6089:31;6143:4;6140:1;6133:15;6171:4;6168:1;6161:15;6054:132;-1:-1:-1;6200:9:1;;5998:217::o;6988:184::-;7058:6;7111:2;7099:9;7090:7;7086:23;7082:32;7079:52;;;7127:1;7124;7117:12;7079:52;-1:-1:-1;7150:16:1;;6988:184;-1:-1:-1;6988:184:1:o;7456:245::-;7523:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:52;;;7592:1;7589;7582:12;7544:52;7624:9;7618:16;7643:28;7665:5;7643:28;:::i;8345:128::-;8412:9;;;8433:11;;;8430:37;;;8447:18;;:::i;8478:125::-;8543:9;;;8564:10;;;8561:36;;;8577:18;;:::i;8740:251::-;8810:6;8863:2;8851:9;8842:7;8838:23;8834:32;8831:52;;;8879:1;8876;8869:12;8831:52;8911:9;8905:16;8930:31;8955:5;8930:31;:::i;8996:959::-;9258:4;9306:3;9295:9;9291:19;9337:6;9326:9;9319:25;9380:6;9375:2;9364:9;9360:18;9353:34;9423:3;9418:2;9407:9;9403:18;9396:31;9447:6;9482;9476:13;9513:6;9505;9498:22;9551:3;9540:9;9536:19;9529:26;;9590:2;9582:6;9578:15;9564:29;;9611:1;9621:195;9635:6;9632:1;9629:13;9621:195;;;9700:13;;-1:-1:-1;;;;;9696:39:1;9684:52;;9765:2;9791:15;;;;9756:12;;;;9732:1;9650:9;9621:195;;;-1:-1:-1;;;;;;;9872:32:1;;;;9867:2;9852:18;;9845:60;-1:-1:-1;;9936:3:1;9921:19;9914:35;9833:3;8996:959;-1:-1:-1;;;8996:959:1:o
Swarm Source
ipfs://f7764275a10588ae97650e5a3a83570d89aaea14c200675cd1d028837002225f
Loading...
Loading
Loading...
Loading
OVERVIEW
Morphis: The Universal Interface Between AI and Robotics - No-code AI Agents Teams with Limitless Possibilities.Multichain Portfolio | 33 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,540.11 | 1.9812 | $5,032.41 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.