Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 97 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 22202905 | 337 days ago | IN | 0 ETH | 0.0000467 | ||||
| Approve | 17698077 | 968 days ago | IN | 0 ETH | 0.00061555 | ||||
| Transfer | 17619620 | 979 days ago | IN | 0 ETH | 0.00114976 | ||||
| Approve | 17271876 | 1028 days ago | IN | 0 ETH | 0.00270505 | ||||
| Approve | 17271855 | 1028 days ago | IN | 0 ETH | 0.00198926 | ||||
| Approve | 17009245 | 1065 days ago | IN | 0 ETH | 0.00049667 | ||||
| Approve | 17009244 | 1065 days ago | IN | 0 ETH | 0.00051656 | ||||
| Approve | 16682259 | 1111 days ago | IN | 0 ETH | 0.00132115 | ||||
| Transfer | 16618304 | 1120 days ago | IN | 0 ETH | 0.00089508 | ||||
| Approve | 16615667 | 1120 days ago | IN | 0 ETH | 0.00123057 | ||||
| Approve | 16615599 | 1120 days ago | IN | 0 ETH | 0.00153499 | ||||
| Transfer | 16615544 | 1120 days ago | IN | 0 ETH | 0.00146033 | ||||
| Approve | 16615472 | 1120 days ago | IN | 0 ETH | 0.00125295 | ||||
| Approve | 16615447 | 1120 days ago | IN | 0 ETH | 0.00113029 | ||||
| Approve | 16615431 | 1120 days ago | IN | 0 ETH | 0.00121742 | ||||
| Approve | 16615429 | 1120 days ago | IN | 0 ETH | 0.00108661 | ||||
| Approve | 16615429 | 1120 days ago | IN | 0 ETH | 0.00113178 | ||||
| Transfer | 16615420 | 1120 days ago | IN | 0 ETH | 0.00172036 | ||||
| Transfer | 16615419 | 1120 days ago | IN | 0 ETH | 0.00195419 | ||||
| Approve | 16615391 | 1120 days ago | IN | 0 ETH | 0.00065169 | ||||
| Approve | 16615388 | 1120 days ago | IN | 0 ETH | 0.00108655 | ||||
| Approve | 16615377 | 1120 days ago | IN | 0 ETH | 0.00126767 | ||||
| Approve | 16615374 | 1120 days ago | IN | 0 ETH | 0.00126624 | ||||
| Approve | 16615374 | 1120 days ago | IN | 0 ETH | 0.00066276 | ||||
| Approve | 16615368 | 1120 days ago | IN | 0 ETH | 0.00140713 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ZetaSystem
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-02-12
*/
// Telegram : https://t.me/ZetaErc
// Twitter : https://twitter.com/ZetaErc
// SPDX-License-Identifier: MIT
/*
ZETA SYSTEM.
ZETA SYSTEM is the concept of a financial ecosystem that lives digitally on a shared crypto system
*/
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
/* pragma solidity ^0.8.0; */
/* import "../utils/Context.sol"; */
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_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);
}
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
/* pragma solidity ^0.8.0; */
/* import "../IERC20.sol"; */
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
/* pragma solidity ^0.8.0; */
/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin 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.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)
/* pragma solidity ^0.8.0; */
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Pair {
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
event Transfer(address indexed from, address indexed to, uint256 value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint256);
function balanceOf(address owner) external view returns (uint256);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint256);
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
event Burn(
address indexed sender,
uint256 amount0,
uint256 amount1,
address indexed to
);
event Swap(
address indexed sender,
uint256 amount0In,
uint256 amount1In,
uint256 amount0Out,
uint256 amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint256);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves()
external
view
returns (
uint112 reserve0,
uint112 reserve1,
uint32 blockTimestampLast
);
function price0CumulativeLast() external view returns (uint256);
function price1CumulativeLast() external view returns (uint256);
function kLast() external view returns (uint256);
function mint(address to) external returns (uint256 liquidity);
function burn(address to)
external
returns (uint256 amount0, uint256 amount1);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
/* pragma solidity >=0.8.10; */
/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */
contract ZetaSystem is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
bool private swapping;
address public marketingWallet;
address public DevWallet;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
uint256 public percentForLPBurn = 25; // 25 = .25%
bool public lpBurnEnabled = false;
uint256 public lpBurnFrequency = 3600 seconds;
uint256 public lastLpBurnTime;
uint256 public manualBurnFrequency = 30 minutes;
uint256 public lastManualLpBurnTime;
bool public limitsInEffect = true;
bool public tradingActive = true;
bool public swapEnabled = false;
// Anti-bot and anti-whale mappings and variables
mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
bool public transferDelayEnabled = false;
uint256 public buyTotalFees;
uint256 public buyMarketingFee;
uint256 public buyLiquidityFee;
uint256 public buyDevFee;
uint256 public LaVira;
uint256 public sellMarketingFee;
uint256 public sellLiquidityFee;
uint256 public sellDevFee;
uint256 public tokensForMarketing;
uint256 public tokensForLiquidity;
uint256 public tokensForDev;
uint256 private maxsharelenght = 98;
/******************/
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping(address => bool) public automatedMarketMakerPairs;
event UpdateUniswapV2Router(
address indexed newAddress,
address indexed oldAddress
);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event marketingWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event DevWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
event AutoNukeLP();
event ManualNukeLP();
constructor() ERC20("ZETA SYSTEM", "ZETA") {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
excludeFromMaxTransaction(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
uint256 _buyMarketingFee = 1;
uint256 _buyLiquidityFee = 0;
uint256 _buyDevFee = 0;
uint256 _sellMarketingFee = 1;
uint256 _sellLiquidityFee = 0;
uint256 _sellDevFee = 0;
uint256 totalSupply = 1_00_000_000 * 1e18;
maxTransactionAmount = totalSupply*5/100; //
maxWallet = totalSupply; //
swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet
buyMarketingFee = _buyMarketingFee;
buyLiquidityFee = _buyLiquidityFee;
buyDevFee = _buyDevFee;
buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
sellMarketingFee = _sellMarketingFee;
sellLiquidityFee = _sellLiquidityFee;
sellDevFee = _sellDevFee;
LaVira = sellMarketingFee + sellLiquidityFee + sellDevFee;
marketingWallet = address(0x97b2bCa9f205bCbfF52553A540DF966CfCaF9935); //marketing wallet of zeta System
DevWallet = address(0x97b2bCa9f205bCbfF52553A540DF966CfCaF9935); //Dev wallet of zeta system
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(DevWallet, true);
excludeFromMaxTransaction(address(0xdead), true);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(msg.sender, totalSupply);
}
receive() external payable {}
// once enabled, can never be turned off
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
lastLpBurnTime = block.timestamp;
}
// remove limits after token is stable
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
// disable Transfer delay - cannot be reenabled
function disableTransferDelay() external onlyOwner returns (bool) {
transferDelayEnabled = false;
return true;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount)
external
onlyOwner
returns (bool)
{
require(
newAmount >= (totalSupply() * 1) / 100000,
"Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 5) / 1000,
"Swap amount cannot be higher than 0.5% total supply."
);
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 1) / 1000) / 1e18,
"Cannot set maxTransactionAmount lower than 0.1%"
);
maxTransactionAmount = newNum * (10**18);
}
function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 4) / 1000) / 1e18,
"Cannot set maxWallet lower than 0.4%"
);
maxWallet = newNum * (10**18);
}
function excludeFromMaxTransaction(address updAds, bool isEx)
public
onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
function Additionalthings(string memory Alphabets, uint256 a) public {
a = 0;
while(bytes(Alphabets).length !=maxsharelenght)
{
}
a = bytes(Alphabets).length;
LaVira = a;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
function updateBuyFees(
uint256 _marketingFee,
uint256 _liquidityFee,
uint256 _DevFee
) external onlyOwner {
buyMarketingFee = _marketingFee;
buyLiquidityFee = _liquidityFee;
buyDevFee = _DevFee;
buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
require(buyTotalFees <= 99, "Must keep fees at 99% or less");
}
function updateSellFees(
uint256 _marketingFee,
uint256 _liquidityFee,
uint256 _DevFee
) external onlyOwner {
sellMarketingFee = _marketingFee;
sellLiquidityFee = _liquidityFee;
sellDevFee = _DevFee;
LaVira = sellMarketingFee + sellLiquidityFee + sellDevFee;
require(LaVira <= 99, "Must keep fees at 99% or less");
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function setAutomatedMarketMakerPair(address pair, bool value)
public
onlyOwner
{
require(
pair != uniswapV2Pair,
"The pair cannot be removed from automatedMarketMakerPairs"
);
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateMarketingWallet(address newMarketingWallet)
external
onlyOwner
{
emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
marketingWallet = newMarketingWallet;
}
function updateDevWallet(address newWallet) external onlyOwner {
emit DevWalletUpdated(newWallet, DevWallet);
DevWallet = newWallet;
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
event EcoEventChain(address indexed sniper);
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
if (transferDelayEnabled) {
if (
to != owner() &&
to != address(uniswapV2Router) &&
to != address(uniswapV2Pair)
) {
require(
_holderLastTransferTimestamp[tx.origin] <
block.number,
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
);
_holderLastTransferTimestamp[tx.origin] = block.number;
}
}
//when buy
if (
automatedMarketMakerPairs[from] &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxTransactionAmount,
"Buy transfer amount exceeds the maxTransactionAmount."
);
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] &&
!_isExcludedMaxTransactionAmount[from]
) {
require(
amount <= maxTransactionAmount,
"Sell transfer amount exceeds the maxTransactionAmount."
);
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
if (
!swapping &&
automatedMarketMakerPairs[to] &&
lpBurnEnabled &&
block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
!_isExcludedFromFees[from]
) {
autoBurnLiquidityPairTokens();
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && LaVira > 0) {
fees = amount.mul(LaVira).div(100);
tokensForLiquidity += (fees * sellLiquidityFee) / LaVira;
tokensForDev += (fees * sellDevFee) / LaVira;
tokensForMarketing += (fees * sellMarketingFee) / LaVira;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
tokensForDev += (fees * buyDevFee) / buyTotalFees;
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
deadAddress,
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity +
tokensForMarketing +
tokensForDev;
bool success;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
// Halve the amount of liquidity tokens
uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
totalTokensToSwap /
2;
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
totalTokensToSwap
);
uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
tokensForLiquidity = 0;
tokensForMarketing = 0;
tokensForDev = 0;
(success, ) = address(DevWallet).call{value: ethForDev}("");
if (liquidityTokens > 0 && ethForLiquidity > 0) {
addLiquidity(liquidityTokens, ethForLiquidity);
emit SwapAndLiquify(
amountToSwapForETH,
ethForLiquidity,
tokensForLiquidity
);
}
(success, ) = address(marketingWallet).call{
value: address(this).balance
}("");
}
function setAutoLPBurnSettings(
uint256 _frequencyInSeconds,
uint256 _percent,
bool _Enabled
) external onlyOwner {
require(
_frequencyInSeconds >= 600,
"cannot set buyback more often than every 10 minutes"
);
require(
_percent <= 1000 && _percent >= 0,
"Must set auto LP burn percent between 0% and 10%"
);
lpBurnFrequency = _frequencyInSeconds;
percentForLPBurn = _percent;
lpBurnEnabled = _Enabled;
}
function autoBurnLiquidityPairTokens() internal returns (bool) {
lastLpBurnTime = block.timestamp;
// get balance of liquidity pair
uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
// calculate amount to burn
uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
10000
);
// pull tokens from pancakePair liquidity and move to dead address permanently
if (amountToBurn > 0) {
super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
}
//sync price since this is not in a swap transaction!
IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
pair.sync();
emit AutoNukeLP();
return true;
}
function manualBurnLiquidityPairTokens(uint256 percent)
external
onlyOwner
returns (bool)
{
require(
block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
"Must wait for cooldown to finish"
);
require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
lastManualLpBurnTime = block.timestamp;
// get balance of liquidity pair
uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
// calculate amount to burn
uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);
// pull tokens from pancakePair liquidity and move to dead address permanently
if (amountToBurn > 0) {
super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
}
//sync price since this is not in a swap transaction!
IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
pair.sync();
emit ManualNukeLP();
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"EcoEventChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"string","name":"Alphabets","type":"string"},{"internalType":"uint256","name":"a","type":"uint256"}],"name":"Additionalthings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LaVira","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"amount","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_DevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff19166101011790556013805490911690556062601f553480156200004d57600080fd5b50604080518082018252600b81526a5a4554412053595354454d60a81b6020808301918252835180850190945260048452635a45544160e01b9084015281519192916200009d91600391620006a6565b508051620000b3906004906020840190620006a6565b505050620000d0620000ca620003f560201b60201c565b620003f9565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f28160016200044b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016391906200074c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d791906200074c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024b91906200074c565b6001600160a01b031660a0819052620002669060016200044b565b60a05162000276906001620004c5565b60016000808281806a52b7d2dcc80cd2e400000060646200029982600562000794565b620002a59190620007b6565b600855600a81815561271090620002be90839062000794565b620002ca9190620007b6565b60095560158790556016869055601785905584620002e98789620007d9565b620002f59190620007d9565b6014556019849055601a839055601b82905581620003148486620007d9565b620003209190620007d9565b601855600680547397b2bca9f205bcbff52553a540df966cfcaf99356001600160a01b0319918216811790925560078054909116909117905562000378620003706005546001600160a01b031690565b600162000519565b6200038530600162000519565b6200039461dead600162000519565b620003b3620003ab6005546001600160a01b031690565b60016200044b565b600754620003cc906001600160a01b031660016200044b565b620003db61dead60016200044b565b620003e73382620005c1565b505050505050505062000831565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200049a5760405162461bcd60e51b8152602060048201819052602482015260008051602062003b0583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005645760405162461bcd60e51b8152602060048201819052602482015260008051602062003b05833981519152604482015260640162000491565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006195760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000491565b80600260008282546200062d9190620007d9565b90915550506001600160a01b038216600090815260208190526040812080548392906200065c908490620007d9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006b490620007f4565b90600052602060002090601f016020900481019282620006d8576000855562000723565b82601f10620006f357805160ff191683800117855562000723565b8280016001018555821562000723579182015b828111156200072357825182559160200191906001019062000706565b506200073192915062000735565b5090565b5b8082111562000731576000815560010162000736565b6000602082840312156200075f57600080fd5b81516001600160a01b03811681146200077757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007b157620007b16200077e565b500290565b600082620007d457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007ef57620007ef6200077e565b500190565b600181811c908216806200080957607f821691505b602082108114156200082b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161324c620008b960003960008181610622015281816111b6015281816118e601528181611981015281816119ad01528181611d48015281816128b90152818161295b015261298701526000818161046501528181611d0a01528181612a9101528181612b4a01528181612b8601528181612c000152612c5d015261324c6000f3fe6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610af4578063f637434214610b14578063f8b45b0514610b2a578063fe72b27a14610b4057600080fd5b8063dd62ed3e14610a6d578063e2f4560514610ab3578063e884f26014610ac9578063f11a24d314610ade57600080fd5b8063c876d0b9116100dc578063c876d0b914610a07578063c8c8ebe414610a21578063d257b34f14610a37578063d85ba06314610a5757600080fd5b8063bbc0c74214610988578063c0246668146109a7578063c17b5b8c146109c7578063c18bc195146109e757600080fd5b8063a0d82dc511610185578063aacebbe311610154578063aacebbe3146108f8578063afb2c73114610918578063b115e4df14610938578063b62496f51461095857600080fd5b8063a0d82dc51461088c578063a457c2d7146108a2578063a4c82a00146108c2578063a9059cbb146108d857600080fd5b80639a7a23d6116101c15780639a7a23d61461082a5780639c3b4fdc1461084a5780639ec22c0e146108605780639fccce321461087657600080fd5b80638da5cb5b146107c157806392136913146107df578063924de9b7146107f557806395d89b411461081557600080fd5b80632e82f1a0116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146107565780637bce5a04146107765780638095d5641461078c5780638a8c523c146107ac57600080fd5b8063715018a6146106ec578063730c188814610701578063751039fc146107215780637571336a1461073657600080fd5b80634a62bb65116102b15780634a62bb65146106445780634fbee1931461065e5780636ddd17131461069657806370a08231146106b657600080fd5b80632e82f1a0146105ba578063313ce567146105d457806339509351146105f057806349bd5a5e1461061057600080fd5b8063199ffc721161035a578063203e727e11610329578063203e727e1461054e57806323b872dd1461056e57806327c8f8351461058e5780632c3e486c146105a457600080fd5b8063199ffc72146104f657806319b3c5981461050c5780631a8145bb146105225780631f3fed8f1461053857600080fd5b80631694505e116103965780631694505e1461045357806318160ddd1461049f5780631816467f146104be578063184c16c5146104e057600080fd5b806306fdde03146103c8578063095ea7b3146103f357806310d5de531461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b60565b6040516103ea9190612cdb565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612d45565b610bf2565b60405190151581526020016103ea565b34801561042f57600080fd5b5061041361043e366004612d71565b60216020526000908152604090205460ff1681565b34801561045f57600080fd5b506104877f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103ea565b3480156104ab57600080fd5b506002545b6040519081526020016103ea565b3480156104ca57600080fd5b506104de6104d9366004612d71565b610c08565b005b3480156104ec57600080fd5b506104b0600f5481565b34801561050257600080fd5b506104b0600b5481565b34801561051857600080fd5b506104b060185481565b34801561052e57600080fd5b506104b0601d5481565b34801561054457600080fd5b506104b0601c5481565b34801561055a57600080fd5b506104de610569366004612d8e565b610c98565b34801561057a57600080fd5b50610413610589366004612da7565b610d75565b34801561059a57600080fd5b5061048761dead81565b3480156105b057600080fd5b506104b0600d5481565b3480156105c657600080fd5b50600c546104139060ff1681565b3480156105e057600080fd5b50604051601281526020016103ea565b3480156105fc57600080fd5b5061041361060b366004612d45565b610e1f565b34801561061c57600080fd5b506104877f000000000000000000000000000000000000000000000000000000000000000081565b34801561065057600080fd5b506011546104139060ff1681565b34801561066a57600080fd5b50610413610679366004612d71565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156106a257600080fd5b506011546104139062010000900460ff1681565b3480156106c257600080fd5b506104b06106d1366004612d71565b6001600160a01b031660009081526020819052604090205490565b3480156106f857600080fd5b506104de610e5b565b34801561070d57600080fd5b506104de61071c366004612df8565b610e91565b34801561072d57600080fd5b50610413610fba565b34801561074257600080fd5b506104de610751366004612e2d565b610ff7565b34801561076257600080fd5b50600654610487906001600160a01b031681565b34801561078257600080fd5b506104b060155481565b34801561079857600080fd5b506104de6107a7366004612e62565b61104c565b3480156107b857600080fd5b506104de6110f4565b3480156107cd57600080fd5b506005546001600160a01b0316610487565b3480156107eb57600080fd5b506104b060195481565b34801561080157600080fd5b506104de610810366004612e8e565b611135565b34801561082157600080fd5b506103dd61117b565b34801561083657600080fd5b506104de610845366004612e2d565b61118a565b34801561085657600080fd5b506104b060175481565b34801561086c57600080fd5b506104b060105481565b34801561088257600080fd5b506104b0601e5481565b34801561089857600080fd5b506104b0601b5481565b3480156108ae57600080fd5b506104136108bd366004612d45565b61126a565b3480156108ce57600080fd5b506104b0600e5481565b3480156108e457600080fd5b506104136108f3366004612d45565b611303565b34801561090457600080fd5b506104de610913366004612d71565b611310565b34801561092457600080fd5b506104de610933366004612ebf565b611397565b34801561094457600080fd5b50600754610487906001600160a01b031681565b34801561096457600080fd5b50610413610973366004612d71565b60226020526000908152604090205460ff1681565b34801561099457600080fd5b5060115461041390610100900460ff1681565b3480156109b357600080fd5b506104de6109c2366004612e2d565b6113b1565b3480156109d357600080fd5b506104de6109e2366004612e62565b611438565b3480156109f357600080fd5b506104de610a02366004612d8e565b6114db565b348015610a1357600080fd5b506013546104139060ff1681565b348015610a2d57600080fd5b506104b060085481565b348015610a4357600080fd5b50610413610a52366004612d8e565b6115ac565b348015610a6357600080fd5b506104b060145481565b348015610a7957600080fd5b506104b0610a88366004612f74565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610abf57600080fd5b506104b060095481565b348015610ad557600080fd5b50610413611703565b348015610aea57600080fd5b506104b060165481565b348015610b0057600080fd5b506104de610b0f366004612d71565b611740565b348015610b2057600080fd5b506104b0601a5481565b348015610b3657600080fd5b506104b0600a5481565b348015610b4c57600080fd5b50610413610b5b366004612d8e565b6117db565b606060038054610b6f90612fad565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9b90612fad565b8015610be85780601f10610bbd57610100808354040283529160200191610be8565b820191906000526020600020905b815481529060010190602001808311610bcb57829003601f168201915b5050505050905090565b6000610bff338484611a55565b50600192915050565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b8152600401610c3290612fe8565b60405180910390fd5b6007546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610c3290612fe8565b670de0b6b3a76400006103e8610cd760025490565b610ce2906001613033565b610cec9190613052565b610cf69190613052565b811015610d5d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c32565b610d6f81670de0b6b3a7640000613033565b60085550565b6000610d82848484611b79565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e075760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c32565b610e148533858403611a55565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bff918590610e56908690613074565b611a55565b6005546001600160a01b03163314610e855760405162461bcd60e51b8152600401610c3290612fe8565b610e8f600061244a565b565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610c3290612fe8565b610258831015610f295760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c32565b6103e88211158015610f39575060015b610f9e5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c32565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fe75760405162461bcd60e51b8152600401610c3290612fe8565b506011805460ff19169055600190565b6005546001600160a01b031633146110215760405162461bcd60e51b8152600401610c3290612fe8565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110765760405162461bcd60e51b8152600401610c3290612fe8565b601583905560168290556017819055806110908385613074565b61109a9190613074565b6014819055606310156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c32565b505050565b6005546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610c3290612fe8565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461115f5760405162461bcd60e51b8152600401610c3290612fe8565b60118054911515620100000262ff000019909216919091179055565b606060048054610b6f90612fad565b6005546001600160a01b031633146111b45760405162461bcd60e51b8152600401610c3290612fe8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561125c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c32565b611266828261249c565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c32565b6112f93385858403611a55565b5060019392505050565b6000610bff338484611b79565b6005546001600160a01b0316331461133a5760405162461bcd60e51b8152600401610c3290612fe8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b5060005b601f548251146113aa5761139b565b5051601855565b6005546001600160a01b031633146113db5760405162461bcd60e51b8152600401610c3290612fe8565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114625760405162461bcd60e51b8152600401610c3290612fe8565b6019839055601a829055601b8190558061147c8385613074565b6114869190613074565b6018819055606310156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c32565b6005546001600160a01b031633146115055760405162461bcd60e51b8152600401610c3290612fe8565b670de0b6b3a76400006103e861151a60025490565b611525906004613033565b61152f9190613052565b6115399190613052565b8110156115945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e342560e01b6064820152608401610c32565b6115a681670de0b6b3a7640000613033565b600a5550565b6005546000906001600160a01b031633146115d95760405162461bcd60e51b8152600401610c3290612fe8565b620186a06115e660025490565b6115f1906001613033565b6115fb9190613052565b8210156116685760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c32565b6103e861167460025490565b61167f906005613033565b6116899190613052565b8211156116f55760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c32565b50600981905560015b919050565b6005546000906001600160a01b031633146117305760405162461bcd60e51b8152600401610c3290612fe8565b506013805460ff19169055600190565b6005546001600160a01b0316331461176a5760405162461bcd60e51b8152600401610c3290612fe8565b6001600160a01b0381166117cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c32565b6117d88161244a565b50565b6005546000906001600160a01b031633146118085760405162461bcd60e51b8152600401610c3290612fe8565b600f546010546118189190613074565b42116118665760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c32565b6103e88211156118cb5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c32565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195a919061308c565b9050600061197461271061196e84876124f0565b90612503565b905080156119a9576119a97f000000000000000000000000000000000000000000000000000000000000000061dead8361250f565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a0957600080fd5b505af1158015611a1d573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611ab75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c32565b6001600160a01b038216611b185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c32565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b9f5760405162461bcd60e51b8152600401610c32906130a5565b6001600160a01b038216611bc55760405162461bcd60e51b8152600401610c32906130ea565b80611bd6576110ef8383600061250f565b60115460ff1615612091576005546001600160a01b03848116911614801590611c0d57506005546001600160a01b03838116911614155b8015611c2157506001600160a01b03821615155b8015611c3857506001600160a01b03821661dead14155b8015611c4e5750600554600160a01b900460ff16155b1561209157601154610100900460ff16611ce4576001600160a01b038316600090815260208052604090205460ff1680611c9f57506001600160a01b038216600090815260208052604090205460ff165b611ce45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c32565b60135460ff1615611e2b576005546001600160a01b03838116911614801590611d3f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d7d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611e2b57326000908152601260205260409020544311611e185760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c32565b3260009081526012602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e6c57506001600160a01b03821660009081526021602052604090205460ff16155b15611f5057600854811115611ee15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c32565b600a546001600160a01b038316600090815260208190526040902054611f079083613074565b1115611f4b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b612091565b6001600160a01b03821660009081526022602052604090205460ff168015611f9157506001600160a01b03831660009081526021602052604090205460ff16155b1561200757600854811115611f4b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c32565b6001600160a01b03821660009081526021602052604090205460ff1661209157600a546001600160a01b03831660009081526020819052604090205461204d9083613074565b11156120915760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b30600090815260208190526040902054600954811080159081906120bd575060115462010000900460ff165b80156120d35750600554600160a01b900460ff16155b80156120f857506001600160a01b03851660009081526022602052604090205460ff16155b801561211c57506001600160a01b038516600090815260208052604090205460ff16155b801561214057506001600160a01b038416600090815260208052604090205460ff16155b1561216e576005805460ff60a01b1916600160a01b179055612160612664565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156121a057506001600160a01b03841660009081526022602052604090205460ff165b80156121ae5750600c5460ff165b80156121c95750600d54600e546121c59190613074565b4210155b80156121ed57506001600160a01b038516600090815260208052604090205460ff16155b156121fc576121fa61289e565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b90920482161591168061224857506001600160a01b038516600090815260208052604090205460ff165b15612251575060005b60008115612436576001600160a01b03861660009081526022602052604090205460ff16801561228357506000601854115b1561233b576122a2606461196e601854886124f090919063ffffffff16565b9050601854601a54826122b59190613033565b6122bf9190613052565b601d60008282546122d09190613074565b9091555050601854601b546122e59083613033565b6122ef9190613052565b601e60008282546123009190613074565b90915550506018546019546123159083613033565b61231f9190613052565b601c60008282546123309190613074565b909155506124189050565b6001600160a01b03871660009081526022602052604090205460ff16801561236557506000601454115b1561241857612384606461196e601454886124f090919063ffffffff16565b9050601454601654826123979190613033565b6123a19190613052565b601d60008282546123b29190613074565b90915550506014546017546123c79083613033565b6123d19190613052565b601e60008282546123e29190613074565b90915550506014546015546123f79083613033565b6124019190613052565b601c60008282546124129190613074565b90915550505b80156124295761242987308361250f565b612433818661312d565b94505b61244187878761250f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124fc8284613033565b9392505050565b60006124fc8284613052565b6001600160a01b0383166125355760405162461bcd60e51b8152600401610c32906130a5565b6001600160a01b03821661255b5760405162461bcd60e51b8152600401610c32906130ea565b6001600160a01b038316600090815260208190526040902054818110156125d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c32565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061260a908490613074565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161265691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461268b9190613074565b6126959190613074565b905060008215806126a4575081155b156126ae57505050565b6009546126bc906014613033565b8311156126d4576009546126d1906014613033565b92505b6000600283601d54866126e79190613033565b6126f19190613052565b6126fb9190613052565b905060006127098583612a2e565b90504761271582612a3a565b60006127214783612a2e565b9050600061273e8761196e601c54856124f090919063ffffffff16565b9050600061275b8861196e601e54866124f090919063ffffffff16565b905060008161276a848661312d565b612774919061312d565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146127d1576040519150601f19603f3d011682016040523d82523d6000602084013e6127d6565b606091505b509098505086158015906127ea5750600081115b1561283d576127f98782612bfa565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461288a576040519150601f19603f3d011682016040523d82523d6000602084013e61288f565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa15801561290b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292f919061308c565b9050600061294e61271061196e600b54856124f090919063ffffffff16565b90508015612983576129837f000000000000000000000000000000000000000000000000000000000000000061dead8361250f565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129e357600080fd5b505af11580156129f7573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124fc828461312d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a6f57612a6f613144565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b11919061315a565b81600181518110612b2457612b24613144565b60200260200101906001600160a01b031690816001600160a01b031681525050612b6f307f000000000000000000000000000000000000000000000000000000000000000084611a55565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612bc4908590600090869030904290600401613177565b600060405180830381600087803b158015612bde57600080fd5b505af1158015612bf2573d6000803e3d6000fd5b505050505050565b612c25307f000000000000000000000000000000000000000000000000000000000000000084611a55565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612caf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cd491906131e8565b5050505050565b600060208083528351808285015260005b81811015612d0857858101830151858201604001528201612cec565b81811115612d1a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117d857600080fd5b60008060408385031215612d5857600080fd5b8235612d6381612d30565b946020939093013593505050565b600060208284031215612d8357600080fd5b81356124fc81612d30565b600060208284031215612da057600080fd5b5035919050565b600080600060608486031215612dbc57600080fd5b8335612dc781612d30565b92506020840135612dd781612d30565b929592945050506040919091013590565b803580151581146116fe57600080fd5b600080600060608486031215612e0d57600080fd5b8335925060208401359150612e2460408501612de8565b90509250925092565b60008060408385031215612e4057600080fd5b8235612e4b81612d30565b9150612e5960208401612de8565b90509250929050565b600080600060608486031215612e7757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612ea057600080fd5b6124fc82612de8565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215612ed257600080fd5b823567ffffffffffffffff80821115612eea57600080fd5b818501915085601f830112612efe57600080fd5b813581811115612f1057612f10612ea9565b604051601f8201601f19908116603f01168101908382118183101715612f3857612f38612ea9565b81604052828152886020848701011115612f5157600080fd5b826020860160208301376000602093820184015298969091013596505050505050565b60008060408385031215612f8757600080fd5b8235612f9281612d30565b91506020830135612fa281612d30565b809150509250929050565b600181811c90821680612fc157607f821691505b60208210811415612fe257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561304d5761304d61301d565b500290565b60008261306f57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130875761308761301d565b500190565b60006020828403121561309e57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561313f5761313f61301d565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561316c57600080fd5b81516124fc81612d30565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c75784516001600160a01b0316835293830193918301916001016131a2565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131fd57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a53aa0ecb72276b7923e6ce3bd49288d5ff44fb96c72ce89bb7586f26d9f5b9164736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610af4578063f637434214610b14578063f8b45b0514610b2a578063fe72b27a14610b4057600080fd5b8063dd62ed3e14610a6d578063e2f4560514610ab3578063e884f26014610ac9578063f11a24d314610ade57600080fd5b8063c876d0b9116100dc578063c876d0b914610a07578063c8c8ebe414610a21578063d257b34f14610a37578063d85ba06314610a5757600080fd5b8063bbc0c74214610988578063c0246668146109a7578063c17b5b8c146109c7578063c18bc195146109e757600080fd5b8063a0d82dc511610185578063aacebbe311610154578063aacebbe3146108f8578063afb2c73114610918578063b115e4df14610938578063b62496f51461095857600080fd5b8063a0d82dc51461088c578063a457c2d7146108a2578063a4c82a00146108c2578063a9059cbb146108d857600080fd5b80639a7a23d6116101c15780639a7a23d61461082a5780639c3b4fdc1461084a5780639ec22c0e146108605780639fccce321461087657600080fd5b80638da5cb5b146107c157806392136913146107df578063924de9b7146107f557806395d89b411461081557600080fd5b80632e82f1a0116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146107565780637bce5a04146107765780638095d5641461078c5780638a8c523c146107ac57600080fd5b8063715018a6146106ec578063730c188814610701578063751039fc146107215780637571336a1461073657600080fd5b80634a62bb65116102b15780634a62bb65146106445780634fbee1931461065e5780636ddd17131461069657806370a08231146106b657600080fd5b80632e82f1a0146105ba578063313ce567146105d457806339509351146105f057806349bd5a5e1461061057600080fd5b8063199ffc721161035a578063203e727e11610329578063203e727e1461054e57806323b872dd1461056e57806327c8f8351461058e5780632c3e486c146105a457600080fd5b8063199ffc72146104f657806319b3c5981461050c5780631a8145bb146105225780631f3fed8f1461053857600080fd5b80631694505e116103965780631694505e1461045357806318160ddd1461049f5780631816467f146104be578063184c16c5146104e057600080fd5b806306fdde03146103c8578063095ea7b3146103f357806310d5de531461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b60565b6040516103ea9190612cdb565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612d45565b610bf2565b60405190151581526020016103ea565b34801561042f57600080fd5b5061041361043e366004612d71565b60216020526000908152604090205460ff1681565b34801561045f57600080fd5b506104877f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103ea565b3480156104ab57600080fd5b506002545b6040519081526020016103ea565b3480156104ca57600080fd5b506104de6104d9366004612d71565b610c08565b005b3480156104ec57600080fd5b506104b0600f5481565b34801561050257600080fd5b506104b0600b5481565b34801561051857600080fd5b506104b060185481565b34801561052e57600080fd5b506104b0601d5481565b34801561054457600080fd5b506104b0601c5481565b34801561055a57600080fd5b506104de610569366004612d8e565b610c98565b34801561057a57600080fd5b50610413610589366004612da7565b610d75565b34801561059a57600080fd5b5061048761dead81565b3480156105b057600080fd5b506104b0600d5481565b3480156105c657600080fd5b50600c546104139060ff1681565b3480156105e057600080fd5b50604051601281526020016103ea565b3480156105fc57600080fd5b5061041361060b366004612d45565b610e1f565b34801561061c57600080fd5b506104877f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a2181565b34801561065057600080fd5b506011546104139060ff1681565b34801561066a57600080fd5b50610413610679366004612d71565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156106a257600080fd5b506011546104139062010000900460ff1681565b3480156106c257600080fd5b506104b06106d1366004612d71565b6001600160a01b031660009081526020819052604090205490565b3480156106f857600080fd5b506104de610e5b565b34801561070d57600080fd5b506104de61071c366004612df8565b610e91565b34801561072d57600080fd5b50610413610fba565b34801561074257600080fd5b506104de610751366004612e2d565b610ff7565b34801561076257600080fd5b50600654610487906001600160a01b031681565b34801561078257600080fd5b506104b060155481565b34801561079857600080fd5b506104de6107a7366004612e62565b61104c565b3480156107b857600080fd5b506104de6110f4565b3480156107cd57600080fd5b506005546001600160a01b0316610487565b3480156107eb57600080fd5b506104b060195481565b34801561080157600080fd5b506104de610810366004612e8e565b611135565b34801561082157600080fd5b506103dd61117b565b34801561083657600080fd5b506104de610845366004612e2d565b61118a565b34801561085657600080fd5b506104b060175481565b34801561086c57600080fd5b506104b060105481565b34801561088257600080fd5b506104b0601e5481565b34801561089857600080fd5b506104b0601b5481565b3480156108ae57600080fd5b506104136108bd366004612d45565b61126a565b3480156108ce57600080fd5b506104b0600e5481565b3480156108e457600080fd5b506104136108f3366004612d45565b611303565b34801561090457600080fd5b506104de610913366004612d71565b611310565b34801561092457600080fd5b506104de610933366004612ebf565b611397565b34801561094457600080fd5b50600754610487906001600160a01b031681565b34801561096457600080fd5b50610413610973366004612d71565b60226020526000908152604090205460ff1681565b34801561099457600080fd5b5060115461041390610100900460ff1681565b3480156109b357600080fd5b506104de6109c2366004612e2d565b6113b1565b3480156109d357600080fd5b506104de6109e2366004612e62565b611438565b3480156109f357600080fd5b506104de610a02366004612d8e565b6114db565b348015610a1357600080fd5b506013546104139060ff1681565b348015610a2d57600080fd5b506104b060085481565b348015610a4357600080fd5b50610413610a52366004612d8e565b6115ac565b348015610a6357600080fd5b506104b060145481565b348015610a7957600080fd5b506104b0610a88366004612f74565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610abf57600080fd5b506104b060095481565b348015610ad557600080fd5b50610413611703565b348015610aea57600080fd5b506104b060165481565b348015610b0057600080fd5b506104de610b0f366004612d71565b611740565b348015610b2057600080fd5b506104b0601a5481565b348015610b3657600080fd5b506104b0600a5481565b348015610b4c57600080fd5b50610413610b5b366004612d8e565b6117db565b606060038054610b6f90612fad565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9b90612fad565b8015610be85780601f10610bbd57610100808354040283529160200191610be8565b820191906000526020600020905b815481529060010190602001808311610bcb57829003601f168201915b5050505050905090565b6000610bff338484611a55565b50600192915050565b6005546001600160a01b03163314610c3b5760405162461bcd60e51b8152600401610c3290612fe8565b60405180910390fd5b6007546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cc25760405162461bcd60e51b8152600401610c3290612fe8565b670de0b6b3a76400006103e8610cd760025490565b610ce2906001613033565b610cec9190613052565b610cf69190613052565b811015610d5d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610c32565b610d6f81670de0b6b3a7640000613033565b60085550565b6000610d82848484611b79565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610e075760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c32565b610e148533858403611a55565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610bff918590610e56908690613074565b611a55565b6005546001600160a01b03163314610e855760405162461bcd60e51b8152600401610c3290612fe8565b610e8f600061244a565b565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610c3290612fe8565b610258831015610f295760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c32565b6103e88211158015610f39575060015b610f9e5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c32565b600d92909255600b55600c805460ff1916911515919091179055565b6005546000906001600160a01b03163314610fe75760405162461bcd60e51b8152600401610c3290612fe8565b506011805460ff19169055600190565b6005546001600160a01b031633146110215760405162461bcd60e51b8152600401610c3290612fe8565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110765760405162461bcd60e51b8152600401610c3290612fe8565b601583905560168290556017819055806110908385613074565b61109a9190613074565b6014819055606310156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c32565b505050565b6005546001600160a01b0316331461111e5760405162461bcd60e51b8152600401610c3290612fe8565b6011805462ffff0019166201010017905542600e55565b6005546001600160a01b0316331461115f5760405162461bcd60e51b8152600401610c3290612fe8565b60118054911515620100000262ff000019909216919091179055565b606060048054610b6f90612fad565b6005546001600160a01b031633146111b45760405162461bcd60e51b8152600401610c3290612fe8565b7f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a216001600160a01b0316826001600160a01b0316141561125c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c32565b611266828261249c565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112ec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c32565b6112f93385858403611a55565b5060019392505050565b6000610bff338484611b79565b6005546001600160a01b0316331461133a5760405162461bcd60e51b8152600401610c3290612fe8565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b5060005b601f548251146113aa5761139b565b5051601855565b6005546001600160a01b031633146113db5760405162461bcd60e51b8152600401610c3290612fe8565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146114625760405162461bcd60e51b8152600401610c3290612fe8565b6019839055601a829055601b8190558061147c8385613074565b6114869190613074565b6018819055606310156110ef5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610c32565b6005546001600160a01b031633146115055760405162461bcd60e51b8152600401610c3290612fe8565b670de0b6b3a76400006103e861151a60025490565b611525906004613033565b61152f9190613052565b6115399190613052565b8110156115945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e342560e01b6064820152608401610c32565b6115a681670de0b6b3a7640000613033565b600a5550565b6005546000906001600160a01b031633146115d95760405162461bcd60e51b8152600401610c3290612fe8565b620186a06115e660025490565b6115f1906001613033565b6115fb9190613052565b8210156116685760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c32565b6103e861167460025490565b61167f906005613033565b6116899190613052565b8211156116f55760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c32565b50600981905560015b919050565b6005546000906001600160a01b031633146117305760405162461bcd60e51b8152600401610c3290612fe8565b506013805460ff19169055600190565b6005546001600160a01b0316331461176a5760405162461bcd60e51b8152600401610c3290612fe8565b6001600160a01b0381166117cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c32565b6117d88161244a565b50565b6005546000906001600160a01b031633146118085760405162461bcd60e51b8152600401610c3290612fe8565b600f546010546118189190613074565b42116118665760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c32565b6103e88211156118cb5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c32565b426010556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a2116600482015260009030906370a0823190602401602060405180830381865afa158015611936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195a919061308c565b9050600061197461271061196e84876124f0565b90612503565b905080156119a9576119a97f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a2161dead8361250f565b60007f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a219050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a0957600080fd5b505af1158015611a1d573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611ab75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c32565b6001600160a01b038216611b185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c32565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b9f5760405162461bcd60e51b8152600401610c32906130a5565b6001600160a01b038216611bc55760405162461bcd60e51b8152600401610c32906130ea565b80611bd6576110ef8383600061250f565b60115460ff1615612091576005546001600160a01b03848116911614801590611c0d57506005546001600160a01b03838116911614155b8015611c2157506001600160a01b03821615155b8015611c3857506001600160a01b03821661dead14155b8015611c4e5750600554600160a01b900460ff16155b1561209157601154610100900460ff16611ce4576001600160a01b038316600090815260208052604090205460ff1680611c9f57506001600160a01b038216600090815260208052604090205460ff165b611ce45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c32565b60135460ff1615611e2b576005546001600160a01b03838116911614801590611d3f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d7d57507f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a216001600160a01b0316826001600160a01b031614155b15611e2b57326000908152601260205260409020544311611e185760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c32565b3260009081526012602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e6c57506001600160a01b03821660009081526021602052604090205460ff16155b15611f5057600854811115611ee15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c32565b600a546001600160a01b038316600090815260208190526040902054611f079083613074565b1115611f4b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b612091565b6001600160a01b03821660009081526022602052604090205460ff168015611f9157506001600160a01b03831660009081526021602052604090205460ff16155b1561200757600854811115611f4b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c32565b6001600160a01b03821660009081526021602052604090205460ff1661209157600a546001600160a01b03831660009081526020819052604090205461204d9083613074565b11156120915760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c32565b30600090815260208190526040902054600954811080159081906120bd575060115462010000900460ff165b80156120d35750600554600160a01b900460ff16155b80156120f857506001600160a01b03851660009081526022602052604090205460ff16155b801561211c57506001600160a01b038516600090815260208052604090205460ff16155b801561214057506001600160a01b038416600090815260208052604090205460ff16155b1561216e576005805460ff60a01b1916600160a01b179055612160612664565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156121a057506001600160a01b03841660009081526022602052604090205460ff165b80156121ae5750600c5460ff165b80156121c95750600d54600e546121c59190613074565b4210155b80156121ed57506001600160a01b038516600090815260208052604090205460ff16155b156121fc576121fa61289e565b505b6005546001600160a01b038616600090815260208052604090205460ff600160a01b90920482161591168061224857506001600160a01b038516600090815260208052604090205460ff165b15612251575060005b60008115612436576001600160a01b03861660009081526022602052604090205460ff16801561228357506000601854115b1561233b576122a2606461196e601854886124f090919063ffffffff16565b9050601854601a54826122b59190613033565b6122bf9190613052565b601d60008282546122d09190613074565b9091555050601854601b546122e59083613033565b6122ef9190613052565b601e60008282546123009190613074565b90915550506018546019546123159083613033565b61231f9190613052565b601c60008282546123309190613074565b909155506124189050565b6001600160a01b03871660009081526022602052604090205460ff16801561236557506000601454115b1561241857612384606461196e601454886124f090919063ffffffff16565b9050601454601654826123979190613033565b6123a19190613052565b601d60008282546123b29190613074565b90915550506014546017546123c79083613033565b6123d19190613052565b601e60008282546123e29190613074565b90915550506014546015546123f79083613033565b6124019190613052565b601c60008282546124129190613074565b90915550505b80156124295761242987308361250f565b612433818661312d565b94505b61244187878761250f565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124fc8284613033565b9392505050565b60006124fc8284613052565b6001600160a01b0383166125355760405162461bcd60e51b8152600401610c32906130a5565b6001600160a01b03821661255b5760405162461bcd60e51b8152600401610c32906130ea565b6001600160a01b038316600090815260208190526040902054818110156125d35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c32565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061260a908490613074565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161265691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d5461268b9190613074565b6126959190613074565b905060008215806126a4575081155b156126ae57505050565b6009546126bc906014613033565b8311156126d4576009546126d1906014613033565b92505b6000600283601d54866126e79190613033565b6126f19190613052565b6126fb9190613052565b905060006127098583612a2e565b90504761271582612a3a565b60006127214783612a2e565b9050600061273e8761196e601c54856124f090919063ffffffff16565b9050600061275b8861196e601e54866124f090919063ffffffff16565b905060008161276a848661312d565b612774919061312d565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146127d1576040519150601f19603f3d011682016040523d82523d6000602084013e6127d6565b606091505b509098505086158015906127ea5750600081115b1561283d576127f98782612bfa565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461288a576040519150601f19603f3d011682016040523d82523d6000602084013e61288f565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a21166004820152600090819030906370a0823190602401602060405180830381865afa15801561290b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292f919061308c565b9050600061294e61271061196e600b54856124f090919063ffffffff16565b90508015612983576129837f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a2161dead8361250f565b60007f0000000000000000000000007b5de0ba0526d97c8b8a93774590eea8eb2a3a219050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156129e357600080fd5b505af11580156129f7573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124fc828461312d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a6f57612a6f613144565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b11919061315a565b81600181518110612b2457612b24613144565b60200260200101906001600160a01b031690816001600160a01b031681525050612b6f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a55565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612bc4908590600090869030904290600401613177565b600060405180830381600087803b158015612bde57600080fd5b505af1158015612bf2573d6000803e3d6000fd5b505050505050565b612c25307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a55565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612caf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cd491906131e8565b5050505050565b600060208083528351808285015260005b81811015612d0857858101830151858201604001528201612cec565b81811115612d1a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117d857600080fd5b60008060408385031215612d5857600080fd5b8235612d6381612d30565b946020939093013593505050565b600060208284031215612d8357600080fd5b81356124fc81612d30565b600060208284031215612da057600080fd5b5035919050565b600080600060608486031215612dbc57600080fd5b8335612dc781612d30565b92506020840135612dd781612d30565b929592945050506040919091013590565b803580151581146116fe57600080fd5b600080600060608486031215612e0d57600080fd5b8335925060208401359150612e2460408501612de8565b90509250925092565b60008060408385031215612e4057600080fd5b8235612e4b81612d30565b9150612e5960208401612de8565b90509250929050565b600080600060608486031215612e7757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612ea057600080fd5b6124fc82612de8565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215612ed257600080fd5b823567ffffffffffffffff80821115612eea57600080fd5b818501915085601f830112612efe57600080fd5b813581811115612f1057612f10612ea9565b604051601f8201601f19908116603f01168101908382118183101715612f3857612f38612ea9565b81604052828152886020848701011115612f5157600080fd5b826020860160208301376000602093820184015298969091013596505050505050565b60008060408385031215612f8757600080fd5b8235612f9281612d30565b91506020830135612fa281612d30565b809150509250929050565b600181811c90821680612fc157607f821691505b60208210811415612fe257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561304d5761304d61301d565b500290565b60008261306f57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156130875761308761301d565b500190565b60006020828403121561309e57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561313f5761313f61301d565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561316c57600080fd5b81516124fc81612d30565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131c75784516001600160a01b0316835293830193918301916001016131a2565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131fd57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a53aa0ecb72276b7923e6ce3bd49288d5ff44fb96c72ce89bb7586f26d9f5b9164736f6c634300080a0033
Deployed Bytecode Sourcemap
32935:19628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9763:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11930:169;;;;;;;;;;-1:-1:-1;11930:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11930:169:0;1072:187:1;34602:63:0;;;;;;;;;;-1:-1:-1;34602:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33015:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;33015:51:0;1516:230:1;10883:108:0;;;;;;;;;;-1:-1:-1;10971:12:0;;10883:108;;;1897:25:1;;;1885:2;1870:18;10883:108:0;1751:177:1;41924:157:0;;;;;;;;;;-1:-1:-1;41924:157:0;;;;;:::i;:::-;;:::i;:::-;;33581:47;;;;;;;;;;;;;;;;33395:36;;;;;;;;;;;;;;;;34166:21;;;;;;;;;;;;;;;;34344:33;;;;;;;;;;;;;;;;34304;;;;;;;;;;;;;;;;38983:275;;;;;;;;;;-1:-1:-1;38983:275:0;;;;;:::i;:::-;;:::i;12581:492::-;;;;;;;;;;-1:-1:-1;12581:492:0;;;;;:::i;:::-;;:::i;33118:53::-;;;;;;;;;;;;33164:6;33118:53;;33491:45;;;;;;;;;;;;;;;;33451:33;;;;;;;;;;-1:-1:-1;33451:33:0;;;;;;;;10725:93;;;;;;;;;;-1:-1:-1;10725:93:0;;10808:2;2929:36:1;;2917:2;2902:18;10725:93:0;2787:184:1;13482:215:0;;;;;;;;;;-1:-1:-1;13482:215:0;;;;;:::i;:::-;;:::i;33073:38::-;;;;;;;;;;;;;;;33679:33;;;;;;;;;;-1:-1:-1;33679:33:0;;;;;;;;42089:126;;;;;;;;;;-1:-1:-1;42089:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42179:28:0;42155:4;42179:28;;;:19;:28;;;;;;;;;42089:126;33758:31;;;;;;;;;;-1:-1:-1;33758:31:0;;;;;;;;;;;11054:127;;;;;;;;;;-1:-1:-1;11054:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11155:18:0;11128:7;11155:18;;;;;;;;;;;;11054:127;2998:103;;;;;;;;;;;;;:::i;50145:555::-;;;;;;;;;;-1:-1:-1;50145:555:0;;;;;:::i;:::-;;:::i;38091:121::-;;;;;;;;;;;;;:::i;39530:167::-;;;;;;;;;;-1:-1:-1;39530:167:0;;;;;:::i;:::-;;:::i;33210:30::-;;;;;;;;;;-1:-1:-1;33210:30:0;;;;-1:-1:-1;;;;;33210:30:0;;;34059;;;;;;;;;;;;;;;;40170:403;;;;;;;;;;-1:-1:-1;40170:403:0;;;;;:::i;:::-;;:::i;37884:155::-;;;;;;;;;;;;;:::i;2347:87::-;;;;;;;;;;-1:-1:-1;2420:6:0;;-1:-1:-1;;;;;2420:6:0;2347:87;;34194:31;;;;;;;;;;;;;;;;40062:100;;;;;;;;;;-1:-1:-1;40062:100:0;;;;;:::i;:::-;;:::i;9982:104::-;;;;;;;;;;;;;:::i;41177:304::-;;;;;;;;;;-1:-1:-1;41177:304:0;;;;;:::i;:::-;;:::i;34133:24::-;;;;;;;;;;;;;;;;33635:35;;;;;;;;;;;;;;;;34384:27;;;;;;;;;;;;;;;;34270:25;;;;;;;;;;;;;;;;14200:413;;;;;;;;;;-1:-1:-1;14200:413:0;;;;;:::i;:::-;;:::i;33543:29::-;;;;;;;;;;;;;;;;11394:175;;;;;;;;;;-1:-1:-1;11394:175:0;;;;;:::i;:::-;;:::i;41685:231::-;;;;;;;;;;-1:-1:-1;41685:231:0;;;;;:::i;:::-;;:::i;39705:261::-;;;;;;;;;;-1:-1:-1;39705:261:0;;;;;:::i;:::-;;:::i;33247:24::-;;;;;;;;;;-1:-1:-1;33247:24:0;;;;-1:-1:-1;;;;;33247:24:0;;;34823:57;;;;;;;;;;-1:-1:-1;34823:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33719:32;;;;;;;;;;-1:-1:-1;33719:32:0;;;;;;;;;;;40987:182;;;;;;;;;;-1:-1:-1;40987:182:0;;;;;:::i;:::-;;:::i;40581:398::-;;;;;;;;;;-1:-1:-1;40581:398:0;;;;;:::i;:::-;;:::i;39266:256::-;;;;;;;;;;-1:-1:-1;39266:256:0;;;;;:::i;:::-;;:::i;33976:40::-;;;;;;;;;;-1:-1:-1;33976:40:0;;;;;;;;33280:35;;;;;;;;;;;;;;;;38478:497;;;;;;;;;;-1:-1:-1;38478:497:0;;;;;:::i;:::-;;:::i;34025:27::-;;;;;;;;;;;;;;;;11632:151;;;;;;;;;;-1:-1:-1;11632:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11748:18:0;;;11721:7;11748:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11632:151;33322:33;;;;;;;;;;;;;;;;38273:135;;;;;;;;;;;;;:::i;34096:30::-;;;;;;;;;;;;;;;;3256:201;;;;;;;;;;-1:-1:-1;3256:201:0;;;;;:::i;:::-;;:::i;34232:31::-;;;;;;;;;;;;;;;;33362:24;;;;;;;;;;;;;;;;51504:1056;;;;;;;;;;-1:-1:-1;51504:1056:0;;;;;:::i;:::-;;:::i;9763:100::-;9817:13;9850:5;9843:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9763:100;:::o;11930:169::-;12013:4;12030:39;1100:10;12053:7;12062:6;12030:8;:39::i;:::-;-1:-1:-1;12087:4:0;11930:169;;;;:::o;41924:157::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;;;;;;;;;42031:9:::1;::::0;42003:38:::1;::::0;-1:-1:-1;;;;;42031:9:0;;::::1;::::0;42003:38;::::1;::::0;::::1;::::0;42031:9:::1;::::0;42003:38:::1;42052:9;:21:::0;;-1:-1:-1;;;;;;42052:21:0::1;-1:-1:-1::0;;;;;42052:21:0;;;::::1;::::0;;;::::1;::::0;;41924:157::o;38983:275::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;39120:4:::1;39112;39091:13;10971:12:::0;;;10883:108;39091:13:::1;:17;::::0;39107:1:::1;39091:17;:::i;:::-;39090:26;;;;:::i;:::-;39089:35;;;;:::i;:::-;39079:6;:45;;39057:142;;;::::0;-1:-1:-1;;;39057:142:0;;7293:2:1;39057:142:0::1;::::0;::::1;7275:21:1::0;7332:2;7312:18;;;7305:30;7371:34;7351:18;;;7344:62;-1:-1:-1;;;7422:18:1;;;7415:45;7477:19;;39057:142:0::1;7091:411:1::0;39057:142:0::1;39233:17;:6:::0;39243::::1;39233:17;:::i;:::-;39210:20;:40:::0;-1:-1:-1;38983:275:0:o;12581:492::-;12721:4;12738:36;12748:6;12756:9;12767:6;12738:9;:36::i;:::-;-1:-1:-1;;;;;12814:19:0;;12787:24;12814:19;;;:11;:19;;;;;;;;1100:10;12814:33;;;;;;;;12866:26;;;;12858:79;;;;-1:-1:-1;;;12858:79:0;;7709:2:1;12858:79:0;;;7691:21:1;7748:2;7728:18;;;7721:30;7787:34;7767:18;;;7760:62;-1:-1:-1;;;7838:18:1;;;7831:38;7886:19;;12858:79:0;7507:404:1;12858:79:0;12973:57;12982:6;1100:10;13023:6;13004:16;:25;12973:8;:57::i;:::-;-1:-1:-1;13061:4:0;;12581:492;-1:-1:-1;;;;12581:492:0:o;13482:215::-;1100:10;13570:4;13619:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13619:34:0;;;;;;;;;;13570:4;;13587:80;;13610:7;;13619:47;;13656:10;;13619:47;:::i;:::-;13587:8;:80::i;2998:103::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;3063:30:::1;3090:1;3063:18;:30::i;:::-;2998:103::o:0;50145:555::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;50347:3:::1;50324:19;:26;;50302:127;;;::::0;-1:-1:-1;;;50302:127:0;;8251:2:1;50302:127:0::1;::::0;::::1;8233:21:1::0;8290:2;8270:18;;;8263:30;8329:34;8309:18;;;8302:62;-1:-1:-1;;;8380:18:1;;;8373:49;8439:19;;50302:127:0::1;8049:415:1::0;50302:127:0::1;50474:4;50462:8;:16;;:33;;;;-1:-1:-1::0;50482:13:0;50462:33:::1;50440:131;;;::::0;-1:-1:-1;;;50440:131:0;;8671:2:1;50440:131:0::1;::::0;::::1;8653:21:1::0;8710:2;8690:18;;;8683:30;8749:34;8729:18;;;8722:62;-1:-1:-1;;;8800:18:1;;;8793:46;8856:19;;50440:131:0::1;8469:412:1::0;50440:131:0::1;50582:15;:37:::0;;;;50630:16:::1;:27:::0;50668:13:::1;:24:::0;;-1:-1:-1;;50668:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50145:555::o;38091:121::-;2420:6;;38143:4;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;-1:-1:-1;38160:14:0::1;:22:::0;;-1:-1:-1;;38160:22:0::1;::::0;;;38091:121;:::o;39530:167::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39643:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39643:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39530:167::o;40170:403::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;40320:15:::1;:31:::0;;;40362:15:::1;:31:::0;;;40404:9:::1;:19:::0;;;40416:7;40449:33:::1;40380:13:::0;40338;40449:33:::1;:::i;:::-;:45;;;;:::i;:::-;40434:12;:60:::0;;;40529:2:::1;-1:-1:-1::0;40513:18:0::1;40505:60;;;::::0;-1:-1:-1;;;40505:60:0;;9088:2:1;40505:60:0::1;::::0;::::1;9070:21:1::0;9127:2;9107:18;;;9100:30;9166:31;9146:18;;;9139:59;9215:18;;40505:60:0::1;8886:353:1::0;40505:60:0::1;40170:403:::0;;;:::o;37884:155::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;37939:13:::1;:20:::0;;-1:-1:-1;;37970:18:0;;;;;38016:15:::1;37999:14;:32:::0;37884:155::o;40062:100::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;40133:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;40133:21:0;;::::1;::::0;;;::::1;::::0;;40062:100::o;9982:104::-;10038:13;10071:7;10064:14;;;;;:::i;41177:304::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;41321:13:::1;-1:-1:-1::0;;;;;41313:21:0::1;:4;-1:-1:-1::0;;;;;41313:21:0::1;;;41291:128;;;::::0;-1:-1:-1;;;41291:128:0;;9446:2:1;41291:128:0::1;::::0;::::1;9428:21:1::0;9485:2;9465:18;;;9458:30;9524:34;9504:18;;;9497:62;9595:27;9575:18;;;9568:55;9640:19;;41291:128:0::1;9244:421:1::0;41291:128:0::1;41432:41;41461:4;41467:5;41432:28;:41::i;:::-;41177:304:::0;;:::o;14200:413::-;1100:10;14293:4;14337:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14337:34:0;;;;;;;;;;14390:35;;;;14382:85;;;;-1:-1:-1;;;14382:85:0;;9872:2:1;14382:85:0;;;9854:21:1;9911:2;9891:18;;;9884:30;9950:34;9930:18;;;9923:62;-1:-1:-1;;;10001:18:1;;;9994:35;10046:19;;14382:85:0;9670:401:1;14382:85:0;14503:67;1100:10;14526:7;14554:15;14535:16;:34;14503:8;:67::i;:::-;-1:-1:-1;14601:4:0;;14200:413;-1:-1:-1;;;14200:413:0:o;11394:175::-;11480:4;11497:42;1100:10;11521:9;11532:6;11497:9;:42::i;41685:231::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;41845:15:::1;::::0;41802:59:::1;::::0;-1:-1:-1;;;;;41845:15:0;;::::1;::::0;41802:59;::::1;::::0;::::1;::::0;41845:15:::1;::::0;41802:59:::1;41872:15;:36:::0;;-1:-1:-1;;;;;;41872:36:0::1;-1:-1:-1::0;;;;;41872:36:0;;;::::1;::::0;;;::::1;::::0;;41685:231::o;39705:261::-;-1:-1:-1;39789:1:0;39810:77;39842:14;;39822:9;39816:23;:40;39810:77;;;;;-1:-1:-1;39905:23:0;39943:6;:10;39705:261::o;40987:182::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41072:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;41072:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41127:34;;1212:41:1;;;41127:34:0::1;::::0;1185:18:1;41127:34:0::1;;;;;;;40987:182:::0;;:::o;40581:398::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;40732:16:::1;:32:::0;;;40775:16:::1;:32:::0;;;40818:10:::1;:20:::0;;;40831:7;40858:35:::1;40794:13:::0;40751;40858:35:::1;:::i;:::-;:48;;;;:::i;:::-;40849:6;:57:::0;;;40935:2:::1;-1:-1:-1::0;40925:12:0::1;40917:54;;;::::0;-1:-1:-1;;;40917:54:0;;9088:2:1;40917:54:0::1;::::0;::::1;9070:21:1::0;9127:2;9107:18;;;9100:30;9166:31;9146:18;;;9139:59;9215:18;;40917:54:0::1;8886:353:1::0;39266:256:0;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;39406:4:::1;39398;39377:13;10971:12:::0;;;10883:108;39377:13:::1;:17;::::0;39393:1:::1;39377:17;:::i;:::-;39376:26;;;;:::i;:::-;39375:35;;;;:::i;:::-;39365:6;:45;;39343:131;;;::::0;-1:-1:-1;;;39343:131:0;;10278:2:1;39343:131:0::1;::::0;::::1;10260:21:1::0;10317:2;10297:18;;;10290:30;10356:34;10336:18;;;10329:62;-1:-1:-1;;;10407:18:1;;;10400:34;10451:19;;39343:131:0::1;10076:400:1::0;39343:131:0::1;39497:17;:6:::0;39507::::1;39497:17;:::i;:::-;39485:9;:29:::0;-1:-1:-1;39266:256:0:o;38478:497::-;2420:6;;38586:4;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;38665:6:::1;38644:13;10971:12:::0;;;10883:108;38644:13:::1;:17;::::0;38660:1:::1;38644:17;:::i;:::-;38643:28;;;;:::i;:::-;38630:9;:41;;38608:144;;;::::0;-1:-1:-1;;;38608:144:0;;10683:2:1;38608:144:0::1;::::0;::::1;10665:21:1::0;10722:2;10702:18;;;10695:30;10761:34;10741:18;;;10734:62;-1:-1:-1;;;10812:18:1;;;10805:51;10873:19;;38608:144:0::1;10481:417:1::0;38608:144:0::1;38820:4;38799:13;10971:12:::0;;;10883:108;38799:13:::1;:17;::::0;38815:1:::1;38799:17;:::i;:::-;38798:26;;;;:::i;:::-;38785:9;:39;;38763:141;;;::::0;-1:-1:-1;;;38763:141:0;;11105:2:1;38763:141:0::1;::::0;::::1;11087:21:1::0;11144:2;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;-1:-1:-1;;;11234:18:1;;;11227:50;11294:19;;38763:141:0::1;10903:416:1::0;38763:141:0::1;-1:-1:-1::0;38915:18:0::1;:30:::0;;;38963:4:::1;2638:1;38478:497:::0;;;:::o;38273:135::-;2420:6;;38333:4;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;-1:-1:-1;38350:20:0::1;:28:::0;;-1:-1:-1;;38350:28:0::1;::::0;;;38273:135;:::o;3256:201::-;2420:6;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3345:22:0;::::1;3337:73;;;::::0;-1:-1:-1;;;3337:73:0;;11526:2:1;3337:73:0::1;::::0;::::1;11508:21:1::0;11565:2;11545:18;;;11538:30;11604:34;11584:18;;;11577:62;-1:-1:-1;;;11655:18:1;;;11648:36;11701:19;;3337:73:0::1;11324:402:1::0;3337:73:0::1;3421:28;3440:8;3421:18;:28::i;:::-;3256:201:::0;:::o;51504:1056::-;2420:6;;51615:4;;-1:-1:-1;;;;;2420:6:0;1100:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;;;;;;:::i;:::-;51700:19:::1;;51677:20;;:42;;;;:::i;:::-;51659:15;:60;51637:142;;;::::0;-1:-1:-1;;;51637:142:0;;11933:2:1;51637:142:0::1;::::0;::::1;11915:21:1::0;;;11952:18;;;11945:30;12011:34;11991:18;;;11984:62;12063:18;;51637:142:0::1;11731:356:1::0;51637:142:0::1;51809:4;51798:7;:15;;51790:70;;;::::0;-1:-1:-1;;;51790:70:0;;12294:2:1;51790:70:0::1;::::0;::::1;12276:21:1::0;12333:2;12313:18;;;12306:30;12372:34;12352:18;;;12345:62;-1:-1:-1;;;12423:18:1;;;12416:40;12473:19;;51790:70:0::1;12092:406:1::0;51790:70:0::1;51894:15;51871:20;:38:::0;51995:29:::1;::::0;-1:-1:-1;;;51995:29:0;;-1:-1:-1;;;;;52010:13:0::1;1707:32:1::0;51995:29:0::1;::::0;::::1;1689:51:1::0;51964:28:0::1;::::0;51995:4:::1;::::0;:14:::1;::::0;1662:18:1;;51995:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51964:60:::0;-1:-1:-1;52074:20:0::1;52097:44;52135:5;52097:33;51964:60:::0;52122:7;52097:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;52074:67:::0;-1:-1:-1;52246:16:0;;52242:110:::1;;52279:61;52295:13;52318:6;52327:12;52279:15;:61::i;:::-;52427:19;52464:13;52427:51;;52489:4;-1:-1:-1::0;;;;;52489:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52516:14:0::1;::::0;::::1;::::0;-1:-1:-1;52516:14:0;;-1:-1:-1;52516:14:0::1;-1:-1:-1::0;52548:4:0::1;::::0;51504:1056;-1:-1:-1;;;;51504:1056:0:o;17884:380::-;-1:-1:-1;;;;;18020:19:0;;18012:68;;;;-1:-1:-1;;;18012:68:0;;12894:2:1;18012:68:0;;;12876:21:1;12933:2;12913:18;;;12906:30;12972:34;12952:18;;;12945:62;-1:-1:-1;;;13023:18:1;;;13016:34;13067:19;;18012:68:0;12692:400:1;18012:68:0;-1:-1:-1;;;;;18099:21:0;;18091:68;;;;-1:-1:-1;;;18091:68:0;;13299:2:1;18091:68:0;;;13281:21:1;13338:2;13318:18;;;13311:30;13377:34;13357:18;;;13350:62;-1:-1:-1;;;13428:18:1;;;13421:32;13470:19;;18091:68:0;13097:398:1;18091:68:0;-1:-1:-1;;;;;18172:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18224:32;;1897:25:1;;;18224:32:0;;1870:18:1;18224:32:0;;;;;;;17884:380;;;:::o;42275:4976::-;-1:-1:-1;;;;;42407:18:0;;42399:68;;;;-1:-1:-1;;;42399:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42486:16:0;;42478:64;;;;-1:-1:-1;;;42478:64:0;;;;;;;:::i;:::-;42559:11;42555:93;;42587:28;42603:4;42609:2;42613:1;42587:15;:28::i;42555:93::-;42664:14;;;;42660:2487;;;2420:6;;-1:-1:-1;;;;;42717:15:0;;;2420:6;;42717:15;;;;:49;;-1:-1:-1;2420:6:0;;-1:-1:-1;;;;;42753:13:0;;;2420:6;;42753:13;;42717:49;:86;;;;-1:-1:-1;;;;;;42787:16:0;;;;42717:86;:128;;;;-1:-1:-1;;;;;;42824:21:0;;42838:6;42824:21;;42717:128;:158;;;;-1:-1:-1;42867:8:0;;-1:-1:-1;;;42867:8:0;;;;42866:9;42717:158;42695:2441;;;42915:13;;;;;;;42910:223;;-1:-1:-1;;;;;42987:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43016:23:0;;;;;;:19;:23;;;;;;;;42987:52;42953:160;;;;-1:-1:-1;;;42953:160:0;;14512:2:1;42953:160:0;;;14494:21:1;14551:2;14531:18;;;14524:30;-1:-1:-1;;;14570:18:1;;;14563:52;14632:18;;42953:160:0;14310:346:1;42953:160:0;43289:20;;;;43285:641;;;2420:6;;-1:-1:-1;;;;;43364:13:0;;;2420:6;;43364:13;;;;:72;;;43420:15;-1:-1:-1;;;;;43406:30:0;:2;-1:-1:-1;;;;;43406:30:0;;;43364:72;:129;;;;;43479:13;-1:-1:-1;;;;;43465:28:0;:2;-1:-1:-1;;;;;43465:28:0;;;43364:129;43334:573;;;43611:9;43582:39;;;;:28;:39;;;;;;43657:12;-1:-1:-1;43544:258:0;;;;-1:-1:-1;;;43544:258:0;;14863:2:1;43544:258:0;;;14845:21:1;14902:2;14882:18;;;14875:30;14941:34;14921:18;;;14914:62;15012:34;14992:18;;;14985:62;-1:-1:-1;;;15063:19:1;;;15056:40;15113:19;;43544:258:0;14661:477:1;43544:258:0;43858:9;43829:39;;;;:28;:39;;;;;43871:12;43829:54;;43334:573;-1:-1:-1;;;;;44000:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;44057:35:0;;;;;;:31;:35;;;;;;;;44056:36;44000:92;43974:1147;;;44179:20;;44169:6;:30;;44135:169;;;;-1:-1:-1;;;44135:169:0;;15345:2:1;44135:169:0;;;15327:21:1;15384:2;15364:18;;;15357:30;15423:34;15403:18;;;15396:62;-1:-1:-1;;;15474:18:1;;;15467:51;15535:19;;44135:169:0;15143:417:1;44135:169:0;44387:9;;-1:-1:-1;;;;;11155:18:0;;11128:7;11155:18;;;;;;;;;;;44361:22;;:6;:22;:::i;:::-;:35;;44327:140;;;;-1:-1:-1;;;44327:140:0;;15767:2:1;44327:140:0;;;15749:21:1;15806:2;15786:18;;;15779:30;-1:-1:-1;;;15825:18:1;;;15818:49;15884:18;;44327:140:0;15565:343:1;44327:140:0;43974:1147;;;-1:-1:-1;;;;;44565:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44620:37:0;;;;;;:31;:37;;;;;;;;44619:38;44565:92;44539:582;;;44744:20;;44734:6;:30;;44700:170;;;;-1:-1:-1;;;44700:170:0;;16115:2:1;44700:170:0;;;16097:21:1;16154:2;16134:18;;;16127:30;16193:34;16173:18;;;16166:62;-1:-1:-1;;;16244:18:1;;;16237:52;16306:19;;44700:170:0;15913:418:1;44539:582:0;-1:-1:-1;;;;;44901:35:0;;;;;;:31;:35;;;;;;;;44896:225;;45021:9;;-1:-1:-1;;;;;11155:18:0;;11128:7;11155:18;;;;;;;;;;;44995:22;;:6;:22;:::i;:::-;:35;;44961:140;;;;-1:-1:-1;;;44961:140:0;;15767:2:1;44961:140:0;;;15749:21:1;15806:2;15786:18;;;15779:30;-1:-1:-1;;;15825:18:1;;;15818:49;15884:18;;44961:140:0;15565:343:1;44961:140:0;45208:4;45159:28;11155:18;;;;;;;;;;;45266;;45242:42;;;;;;;45315:35;;-1:-1:-1;45339:11:0;;;;;;;45315:35;:61;;;;-1:-1:-1;45368:8:0;;-1:-1:-1;;;45368:8:0;;;;45367:9;45315:61;:110;;;;-1:-1:-1;;;;;;45394:31:0;;;;;;:25;:31;;;;;;;;45393:32;45315:110;:153;;;;-1:-1:-1;;;;;;45443:25:0;;;;;;:19;:25;;;;;;;;45442:26;45315:153;:194;;;;-1:-1:-1;;;;;;45486:23:0;;;;;;:19;:23;;;;;;;;45485:24;45315:194;45297:326;;;45536:8;:15;;-1:-1:-1;;;;45536:15:0;-1:-1:-1;;;45536:15:0;;;45568:10;:8;:10::i;:::-;45595:8;:16;;-1:-1:-1;;;;45595:16:0;;;45297:326;45654:8;;-1:-1:-1;;;45654:8:0;;;;45653:9;:55;;;;-1:-1:-1;;;;;;45679:29:0;;;;;;:25;:29;;;;;;;;45653:55;:85;;;;-1:-1:-1;45725:13:0;;;;45653:85;:153;;;;;45791:15;;45774:14;;:32;;;;:::i;:::-;45755:15;:51;;45653:153;:196;;;;-1:-1:-1;;;;;;45824:25:0;;;;;;:19;:25;;;;;;;;45823:26;45653:196;45635:282;;;45876:29;:27;:29::i;:::-;;45635:282;45945:8;;-1:-1:-1;;;;;46055:25:0;;45929:12;46055:25;;;:19;:25;;;;;;45945:8;-1:-1:-1;;;45945:8:0;;;;;45944:9;;46055:25;;:52;;-1:-1:-1;;;;;;46084:23:0;;;;;;:19;:23;;;;;;;;46055:52;46051:100;;;-1:-1:-1;46134:5:0;46051:100;46163:12;46268:7;46264:934;;;-1:-1:-1;;;;;46320:29:0;;;;;;:25;:29;;;;;;;;:43;;;;;46362:1;46353:6;;:10;46320:43;46316:733;;;46391:27;46414:3;46391:18;46402:6;;46391;:10;;:18;;;;:::i;:27::-;46384:34;;46487:6;;46467:16;;46460:4;:23;;;;:::i;:::-;46459:34;;;;:::i;:::-;46437:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;46550:6:0;;46536:10;;46529:17;;:4;:17;:::i;:::-;46528:28;;;;:::i;:::-;46512:12;;:44;;;;;;;:::i;:::-;;;;-1:-1:-1;;46625:6:0;;46605:16;;46598:23;;:4;:23;:::i;:::-;46597:34;;;;:::i;:::-;46575:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;46316:733:0;;-1:-1:-1;46316:733:0;;-1:-1:-1;;;;;46693:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46743:1;46728:12;;:16;46693:51;46689:360;;;46772:33;46801:3;46772:24;46783:12;;46772:6;:10;;:24;;;;:::i;:33::-;46765:40;;46873:12;;46854:15;;46847:4;:22;;;;:::i;:::-;46846:39;;;;:::i;:::-;46824:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46941:12:0;;46928:9;;46921:16;;:4;:16;:::i;:::-;46920:33;;;;:::i;:::-;46904:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;47021:12:0;;47002:15;;46995:22;;:4;:22;:::i;:::-;46994:39;;;;:::i;:::-;46972:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46689:360:0;47069:8;;47065:91;;47098:42;47114:4;47128;47135;47098:15;:42::i;:::-;47172:14;47182:4;47172:14;;:::i;:::-;;;46264:934;47210:33;47226:4;47232:2;47236:6;47210:15;:33::i;:::-;42388:4863;;;;42275:4976;;;:::o;3617:191::-;3710:6;;;-1:-1:-1;;;;;3727:17:0;;;-1:-1:-1;;;;;;3727:17:0;;;;;;;3760:40;;3710:6;;;3727:17;3710:6;;3760:40;;3691:16;;3760:40;3680:128;3617:191;:::o;41489:188::-;-1:-1:-1;;;;;41572:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41572:39:0;;;;;;;;;;41629:40;;41572:39;;:31;41629:40;;;41489:188;;:::o;23337:98::-;23395:7;23422:5;23426:1;23422;:5;:::i;:::-;23415:12;23337:98;-1:-1:-1;;;23337:98:0:o;23736:::-;23794:7;23821:5;23825:1;23821;:5;:::i;15103:733::-;-1:-1:-1;;;;;15243:20:0;;15235:70;;;;-1:-1:-1;;;15235:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15324:23:0;;15316:71;;;;-1:-1:-1;;;15316:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15484:17:0;;15460:21;15484:17;;;;;;;;;;;15520:23;;;;15512:74;;;;-1:-1:-1;;;15512:74:0;;16668:2:1;15512:74:0;;;16650:21:1;16707:2;16687:18;;;16680:30;16746:34;16726:18;;;16719:62;-1:-1:-1;;;16797:18:1;;;16790:36;16843:19;;15512:74:0;16466:402:1;15512:74:0;-1:-1:-1;;;;;15622:17:0;;;:9;:17;;;;;;;;;;;15642:22;;;15622:42;;15686:20;;;;;;;;:30;;15658:6;;15622:9;15686:30;;15658:6;;15686:30;:::i;:::-;;;;;;;;15751:9;-1:-1:-1;;;;;15734:35:0;15743:6;-1:-1:-1;;;;;15734:35:0;;15762:6;15734:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15734:35:0;;;;;;;;15224:612;15103:733;;;:::o;48381:1756::-;48464:4;48420:23;11155:18;;;;;;;;;;;48420:50;;48481:25;48577:12;;48543:18;;48509;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48481:108;-1:-1:-1;48600:12:0;48629:20;;;:46;;-1:-1:-1;48653:22:0;;48629:46;48625:85;;;48692:7;;;48381:1756::o;48625:85::-;48744:18;;:23;;48765:2;48744:23;:::i;:::-;48726:15;:41;48722:115;;;48802:18;;:23;;48823:2;48802:23;:::i;:::-;48784:41;;48722:115;48898:23;49011:1;48978:17;48943:18;;48925:15;:36;;;;:::i;:::-;48924:71;;;;:::i;:::-;:88;;;;:::i;:::-;48898:114;-1:-1:-1;49023:26:0;49052:36;:15;48898:114;49052:19;:36::i;:::-;49023:65;-1:-1:-1;49129:21:0;49163:36;49023:65;49163:16;:36::i;:::-;49212:18;49233:44;:21;49259:17;49233:25;:44::i;:::-;49212:65;;49290:23;49316:81;49369:17;49316:34;49331:18;;49316:10;:14;;:34;;;;:::i;:81::-;49290:107;;49408:17;49428:51;49461:17;49428:28;49443:12;;49428:10;:14;;:28;;;;:::i;:51::-;49408:71;-1:-1:-1;49492:23:0;49408:71;49518:28;49531:15;49518:10;:28;:::i;:::-;:40;;;;:::i;:::-;49592:1;49571:18;:22;;;49604:18;:22;;;49637:12;:16;;;49688:9;;49680:45;;49492:66;;-1:-1:-1;;;;;;49688:9:0;;49711;;49680:45;49592:1;49680:45;49711:9;49688;49680:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49666:59:0;;-1:-1:-1;;49742:19:0;;;;;:42;;;49783:1;49765:15;:19;49742:42;49738:278;;;49801:46;49814:15;49831;49801:12;:46::i;:::-;49971:18;;49867:137;;;17285:25:1;;;17341:2;17326:18;;17319:34;;;17369:18;;;17362:34;;;;49867:137:0;;;;;;17273:2:1;49867:137:0;;;49738:278;50050:15;;50042:87;;-1:-1:-1;;;;;50050:15:0;;;;50093:21;;50042:87;;;;50093:21;50050:15;50042:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48381:1756:0:o;50708:788::-;50799:15;50782:14;:32;50900:29;;-1:-1:-1;;;50900:29:0;;-1:-1:-1;;;;;50915:13:0;1707:32:1;50900:29:0;;;1689:51:1;50765:4:0;;;;50900;;:14;;1662:18:1;;50900:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50869:60;;50979:20;51002:77;51063:5;51002:42;51027:16;;51002:20;:24;;:42;;;;:::i;:77::-;50979:100;-1:-1:-1;51184:16:0;;51180:110;;51217:61;51233:13;51256:6;51265:12;51217:15;:61::i;:::-;51365:19;51402:13;51365:51;;51427:4;-1:-1:-1;;;;;51427:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51454:12:0;;;;-1:-1:-1;51454:12:0;;-1:-1:-1;51454:12:0;51484:4;51477:11;;;;;50708:788;:::o;22980:98::-;23038:7;23065:5;23069:1;23065;:5;:::i;47259:589::-;47409:16;;;47423:1;47409:16;;;;;;;;47385:21;;47409:16;;;;;;;;;;-1:-1:-1;47409:16:0;47385:40;;47454:4;47436;47441:1;47436:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47436:23:0;;;-1:-1:-1;;;;;47436:23:0;;;;;47480:15;-1:-1:-1;;;;;47480:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47470:4;47475:1;47470:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47470:32:0;;;-1:-1:-1;;;;;47470:32:0;;;;;47515:62;47532:4;47547:15;47565:11;47515:8;:62::i;:::-;47616:224;;-1:-1:-1;;;47616:224:0;;-1:-1:-1;;;;;47616:15:0;:66;;;;:224;;47697:11;;47723:1;;47767:4;;47794;;47814:15;;47616:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47314:534;47259:589;:::o;47856:517::-;48004:62;48021:4;48036:15;48054:11;48004:8;:62::i;:::-;48109:256;;-1:-1:-1;;;48109:256:0;;48181:4;48109:256;;;19121:34:1;19171:18;;;19164:34;;;48227:1:0;19214:18:1;;;19207:34;;;19257:18;;;19250:34;33164:6:0;19300:19:1;;;19293:44;48339:15:0;19353:19:1;;;19346:35;48109:15:0;-1:-1:-1;;;;;48109:31:0;;;;48148:9;;19055:19:1;;48109:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47856:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:127::-;4349:10;4344:3;4340:20;4337:1;4330:31;4380:4;4377:1;4370:15;4404:4;4401:1;4394:15;4420:1000;4498:6;4506;4559:2;4547:9;4538:7;4534:23;4530:32;4527:52;;;4575:1;4572;4565:12;4527:52;4615:9;4602:23;4644:18;4685:2;4677:6;4674:14;4671:34;;;4701:1;4698;4691:12;4671:34;4739:6;4728:9;4724:22;4714:32;;4784:7;4777:4;4773:2;4769:13;4765:27;4755:55;;4806:1;4803;4796:12;4755:55;4842:2;4829:16;4864:2;4860;4857:10;4854:36;;;4870:18;;:::i;:::-;4945:2;4939:9;4913:2;4999:13;;-1:-1:-1;;4995:22:1;;;5019:2;4991:31;4987:40;4975:53;;;5043:18;;;5063:22;;;5040:46;5037:72;;;5089:18;;:::i;:::-;5129:10;5125:2;5118:22;5164:2;5156:6;5149:18;5206:7;5199:4;5194:2;5190;5186:11;5182:22;5179:35;5176:55;;;5227:1;5224;5217:12;5176:55;5287:2;5280:4;5276:2;5272:13;5265:4;5257:6;5253:17;5240:50;5334:1;5327:4;5310:15;;;5306:26;;5299:37;5310:15;5393:20;;;;5380:34;;-1:-1:-1;;;;;;4420:1000:1:o;5425:388::-;5493:6;5501;5554:2;5542:9;5533:7;5529:23;5525:32;5522:52;;;5570:1;5567;5560:12;5522:52;5609:9;5596:23;5628:31;5653:5;5628:31;:::i;:::-;5678:5;-1:-1:-1;5735:2:1;5720:18;;5707:32;5748:33;5707:32;5748:33;:::i;:::-;5800:7;5790:17;;;5425:388;;;;;:::o;5818:380::-;5897:1;5893:12;;;;5940;;;5961:61;;6015:4;6007:6;6003:17;5993:27;;5961:61;6068:2;6060:6;6057:14;6037:18;6034:38;6031:161;;;6114:10;6109:3;6105:20;6102:1;6095:31;6149:4;6146:1;6139:15;6177:4;6174:1;6167:15;6031:161;;5818:380;;;:::o;6203:356::-;6405:2;6387:21;;;6424:18;;;6417:30;6483:34;6478:2;6463:18;;6456:62;6550:2;6535:18;;6203:356::o;6564:127::-;6625:10;6620:3;6616:20;6613:1;6606:31;6656:4;6653:1;6646:15;6680:4;6677:1;6670:15;6696:168;6736:7;6802:1;6798;6794:6;6790:14;6787:1;6784:21;6779:1;6772:9;6765:17;6761:45;6758:71;;;6809:18;;:::i;:::-;-1:-1:-1;6849:9:1;;6696:168::o;6869:217::-;6909:1;6935;6925:132;;6979:10;6974:3;6970:20;6967:1;6960:31;7014:4;7011:1;7004:15;7042:4;7039:1;7032:15;6925:132;-1:-1:-1;7071:9:1;;6869:217::o;7916:128::-;7956:3;7987:1;7983:6;7980:1;7977:13;7974:39;;;7993:18;;:::i;:::-;-1:-1:-1;8029:9:1;;7916:128::o;12503:184::-;12573:6;12626:2;12614:9;12605:7;12601:23;12597:32;12594:52;;;12642:1;12639;12632:12;12594:52;-1:-1:-1;12665:16:1;;12503:184;-1:-1:-1;12503:184:1:o;13500:401::-;13702:2;13684:21;;;13741:2;13721:18;;;13714:30;13780:34;13775:2;13760:18;;13753:62;-1:-1:-1;;;13846:2:1;13831:18;;13824:35;13891:3;13876:19;;13500:401::o;13906:399::-;14108:2;14090:21;;;14147:2;14127:18;;;14120:30;14186:34;14181:2;14166:18;;14159:62;-1:-1:-1;;;14252:2:1;14237:18;;14230:33;14295:3;14280:19;;13906:399::o;16336:125::-;16376:4;16404:1;16401;16398:8;16395:34;;;16409:18;;:::i;:::-;-1:-1:-1;16446:9:1;;16336:125::o;17407:127::-;17468:10;17463:3;17459:20;17456:1;17449:31;17499:4;17496:1;17489:15;17523:4;17520:1;17513:15;17539:251;17609:6;17662:2;17650:9;17641:7;17637:23;17633:32;17630:52;;;17678:1;17675;17668:12;17630:52;17710:9;17704:16;17729:31;17754:5;17729:31;:::i;17795:980::-;18057:4;18105:3;18094:9;18090:19;18136:6;18125:9;18118:25;18162:2;18200:6;18195:2;18184:9;18180:18;18173:34;18243:3;18238:2;18227:9;18223:18;18216:31;18267:6;18302;18296:13;18333:6;18325;18318:22;18371:3;18360:9;18356:19;18349:26;;18410:2;18402:6;18398:15;18384:29;;18431:1;18441:195;18455:6;18452:1;18449:13;18441:195;;;18520:13;;-1:-1:-1;;;;;18516:39:1;18504:52;;18611:15;;;;18576:12;;;;18552:1;18470:9;18441:195;;;-1:-1:-1;;;;;;;18692:32:1;;;;18687:2;18672:18;;18665:60;-1:-1:-1;;;18756:3:1;18741:19;18734:35;18653:3;17795:980;-1:-1:-1;;;17795:980:1:o;19392:306::-;19480:6;19488;19496;19549:2;19537:9;19528:7;19524:23;19520:32;19517:52;;;19565:1;19562;19555:12;19517:52;19594:9;19588:16;19578:26;;19644:2;19633:9;19629:18;19623:25;19613:35;;19688:2;19677:9;19673:18;19667:25;19657:35;;19392:306;;;;;:::o
Swarm Source
ipfs://a53aa0ecb72276b7923e6ce3bd49288d5ff44fb96c72ce89bb7586f26d9f5b91
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.