Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
69,000,000,000,000 IM69
Holders
32
Total Transfers
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InvasionMars
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-02 */ // SPDX-License-Identifier: MIT // File: @openzeppelin\contracts\utils\Context.sol // OpenZeppelin Contracts v4.4.1 (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; } } // File: @openzeppelin\contracts\token\ERC20\IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} } // File: @openzeppelin\contracts\access\Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin\contracts\security\ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin\contracts\utils\math\SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.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 subtraction 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; } } } // File: @openzeppelin\contracts\utils\Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @uniswap\v2-core\contracts\interfaces\IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); 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 (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: @uniswap\v2-periphery\contracts\interfaces\IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap\v2-periphery\contracts\interfaces\IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @uniswap\v2-core\contracts\interfaces\IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: contracts\InvasionMars.sol pragma solidity ^0.8.17; contract InvasionMars is Context, IERC20, ReentrancyGuard, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; mapping (address => bool) private botWallets; bool botscantrade = false; bool public canTrade = false; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 69 * (10 ** 12) * (10 ** 18); uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address public marketingWallet = 0xBc8e8e75Aa42284d9587160F8212852311Bf917B; string private constant _name = "InvasionMars"; string private constant _symbol = "IM69"; uint8 private constant _decimals = 18; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public marketingFeePercent = 38; uint256 public _liquidityFee = 7; uint256 private _previousLiquidityFee = _liquidityFee; uint256 public initialTokenLiquidity; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private uniswapInitialized = true; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = (_tTotal * 1) / 100; //Transaction amount deals with MAX buy/sell, Update before MAINNET uint256 public swapThresholdPercent = 1; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function addLiquidity( uint256 tokenAmount, uint256 ethMinAmount, uint256 tokenMinAmount, address to, uint256 deadline ) external payable onlyOwner { require(uniswapInitialized, "Uniswap has not been initialized yet."); _transfer(msg.sender, address(this), tokenAmount); _approve(address(this), address(uniswapV2Router), tokenAmount); (uint256 amountToken, uint256 amountETH, uint256 liquidity) = uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), tokenAmount, tokenMinAmount, ethMinAmount, to, deadline ); if (initialTokenLiquidity == 0) { initialTokenLiquidity = tokenAmount; } delete amountToken; delete amountETH; delete liquidity; } function removeLiquidity( uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external onlyOwner { require(uniswapInitialized, "Uniswap has not been initialized yet."); IERC20(uniswapV2Pair).transferFrom(msg.sender, address(this), liquidity); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), liquidity); uniswapV2Router.removeLiquidityETH( address(this), liquidity, amountTokenMin, amountETHMin, to, deadline ); } function getLiquidityFeesEarned() public view returns (uint256) { require(uniswapInitialized, "Uniswap has not been initialized yet."); (uint256 reserve0, , ) = IUniswapV2Pair(uniswapV2Pair).getReserves(); uint256 feesEarned = reserve0.sub(initialTokenLiquidity); return feesEarned; } function viewLiquidityFeesEarned() public view onlyOwner returns (uint256) { (uint256 reserve0, , ) = IUniswapV2Pair(uniswapV2Pair).getReserves(); uint256 feesEarned = reserve0.sub(initialTokenLiquidity); return feesEarned; } function withdrawLiquidityFees(uint256 amount) external onlyOwner { require(uniswapInitialized, "Uniswap has not been initialized yet."); uint256 feesEarned = getLiquidityFeesEarned(); require(amount <= feesEarned, "Amount exceeds available liquidity fees."); uint256 liquidity = IERC20(uniswapV2Pair).balanceOf(address(this)); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), liquidity); uniswapV2Router.removeLiquidityETH( address(this), liquidity, 0, 0, msg.sender, block.timestamp + 1800 ); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function airdrop(address recipient, uint256 amount) external onlyOwner() { removeAllFee(); _transfer(_msgSender(), recipient, amount); restoreAllFee(); } function airdropInternal(address recipient, uint256 amount) internal { removeAllFee(); _transfer(_msgSender(), recipient, amount); restoreAllFee(); } function airdropArray(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner(){ uint256 iterator = 0; require(newholders.length == amounts.length, "must be the same length"); while(iterator < newholders.length){ airdropInternal(newholders[iterator], amounts[iterator]); iterator += 1; } } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { require(!_isExcluded[account], "Account not already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account not already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setMarketingFeePercent(uint256 fee) public onlyOwner { require(fee < 50, "Marketing fee cannot be more than 50% of liquidity"); marketingFeePercent = fee; } function setMarketingWallet(address walletAddress) public onlyOwner { marketingWallet = walletAddress; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { require(taxFee < 10, "Tax fee cannot be more than 10%"); _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxAmountToPercentageOfTotalSupply(uint256 percentage) external onlyOwner() { require(percentage > 0 && percentage <= 100, "Percentage must be between 1 and 100"); uint256 tokenSupply = 69 * 10**12 * 10**18; _maxTxAmount = (tokenSupply * percentage) / 100; // Set the maxTxAmount to the given percentage (1%) of the total supply } function setSwapThresholdPercent(uint256 _swapThresholdPercent) external onlyOwner() { require(_swapThresholdPercent > 0, "Swap threshold percent must be greater than 0"); swapThresholdPercent = _swapThresholdPercent; } function claimTokens () public onlyOwner { payable(marketingWallet).transfer(address(this).balance); } function claimOtherTokens(IERC20 tokenAddress, address walletaddress) external onlyOwner() { require(address(tokenAddress) != address(this),"can't withdraw InvasionMars token"); tokenAddress.transfer(walletaddress, tokenAddress.balanceOf(address(this))); } function clearStuckBalance (address payable walletaddress) external onlyOwner() { walletaddress.transfer(address(this).balance); } function addBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = true; } function removeBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = false; } function getBotWalletStatus(address botwallet) public view returns (bool) { return botWallets[botwallet]; } function allowtrading()external onlyOwner() { canTrade = true; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); uint256 contractTokenBalance = balanceOf(address(this)); uint256 thresholdAmount = totalSupply().mul(swapThresholdPercent).div(100); bool overMinTokenBalance = contractTokenBalance >= thresholdAmount; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = thresholdAmount; swapAndLiquify(contractTokenBalance); } bool takeFee = true; if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 totalForIM69 = contractTokenBalance; uint256 initialBalance = address(this).balance; // Swap tokens for ETH. swapTokensForEth(totalForIM69); uint256 newBalance = address(this).balance.sub(initialBalance); uint256 marketingshare = newBalance.mul(marketingFeePercent).div(100); payable(marketingWallet).transfer(marketingshare); newBalance -= marketingshare; // Add liquidity to IM69. addLiquidity(totalForIM69, newBalance); emit SwapAndLiquify(totalForIM69, newBalance, 0); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!canTrade){ require(sender == owner()); } if(botWallets[sender] || botWallets[recipient]){ require(botscantrade, "bots arent allowed to trade"); } if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"addBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"ethMinAmount","type":"uint256"},{"internalType":"uint256","name":"tokenMinAmount","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropArray","outputs":[],"stateMutability":"nonpayable","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":[],"name":"allowtrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"},{"internalType":"address","name":"walletaddress","type":"address"}],"name":"claimOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"walletaddress","type":"address"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"getBotWalletStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityFeesEarned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":[],"name":"initialTokenLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"removeBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxTxAmountToPercentageOfTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapThresholdPercent","type":"uint256"}],"name":"setSwapThresholdPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThresholdPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"name":"viewLiquidityFeesEarned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawLiquidityFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526009805461ffff191690556200002b6d0366e7064422fd84202340000000600019620003b3565b6200003990600019620003e0565b600a55600c80546001600160a01b03191673bc8e8e75aa42284d9587160f8212852311bf917b1790556005600d819055600e556026600f5560076010819055601155601480546201000160a01b62ff00ff60a01b199091161790556064620000b16d0366e7064422fd842023400000006001620003fc565b620000bd919062000416565b6015556001601655348015620000d257600080fd5b506001600055620000e3336200034b565b600a543360009081526002602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200014a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017091906200042d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e491906200042d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000232573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025891906200042d565b601480546001600160a01b03199081166001600160a01b039384161790915560138054909116918316919091179055600160056000620002a06001546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620002e83390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6d0366e7064422fd842023400000006040516200033c91815260200190565b60405180910390a3506200045f565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052601260045260246000fd5b600082620003c557620003c56200039d565b500690565b634e487b7160e01b600052601160045260246000fd5b81810381811115620003f657620003f6620003ca565b92915050565b8082028115828204841417620003f657620003f6620003ca565b6000826200042857620004286200039d565b500490565b6000602082840312156200044057600080fd5b81516001600160a01b03811681146200045857600080fd5b9392505050565b6132c5806200046f6000396000f3fe60806040526004361061036f5760003560e01c80635342acb4116101c6578063a457c2d7116100f7578063da6fa55c11610095578063dd62ed3e1161006f578063dd62ed3e14610a1d578063ea2f0b3714610a63578063ed856cdc14610a83578063f2fde38b14610aa357600080fd5b8063da6fa55c146109d2578063dae8cbc2146109e8578063dcb81f4114610a0857600080fd5b8063bafb1403116100d1578063bafb140314610969578063c49b9a801461097f578063c4dbea951461099f578063d4a3883f146109b257600080fd5b8063a457c2d714610914578063a633423114610934578063a9059cbb1461094957600080fd5b8063764d72bf116101645780638ba4cc3c1161013e5780638ba4cc3c146108895780638da5cb5b146108a95780638ee88c53146108c757806395d89b41146108e757600080fd5b8063764d72bf1461081a5780637d1db4a51461083a57806388f820201461085057600080fd5b80636bc87c3a116101a05780636bc87c3a146107af57806370a08231146107c5578063715018a6146107e557806375f0a874146107fa57600080fd5b80635342acb41461071d5780635d098b381461075657806360d484891461077657600080fd5b806339509351116102a0578063437823ec1161023e57806348c54b9d1161021857806348c54b9d146106a757806349bd5a5e146106bc5780634a74bb02146106dc57806352390c02146106fd57600080fd5b8063437823ec146106475780634549b03914610667578063457c194c1461068757600080fd5b80633b124fe71161027a5780633b124fe7146105db5780633bd5d173146105f15780633f0f02eb146106115780633f5709491461062757600080fd5b8063395093511461058657806339bd2ad4146105a65780633ae7dc20146105bb57600080fd5b806323b872dd1161030d5780632d838119116102e75780632d8381191461050b5780632f05205c1461052b578063313ce5671461054a5780633685d4191461056657600080fd5b806323b872dd146104ab57806328246edc146104cb5780632a360631146104eb57600080fd5b8063095ea7b311610349578063095ea7b31461040457806313114a9d146104345780631694505e1461045357806318160ddd1461048b57600080fd5b80630305caff1461037b578063061c82d01461039d57806306fdde03146103bd57600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b610396366004612d0b565b610ac3565b005b3480156103a957600080fd5b5061039b6103b8366004612d28565b610aec565b3480156103c957600080fd5b5060408051808201909152600c81526b496e766173696f6e4d61727360a01b60208201525b6040516103fb9190612d41565b60405180910390f35b34801561041057600080fd5b5061042461041f366004612d8f565b610b4e565b60405190151581526020016103fb565b34801561044057600080fd5b50600b545b6040519081526020016103fb565b34801561045f57600080fd5b50601354610473906001600160a01b031681565b6040516001600160a01b0390911681526020016103fb565b34801561049757600080fd5b50690d9b9c19108bf610808d601e1b610445565b3480156104b757600080fd5b506104246104c6366004612dbb565b610b65565b3480156104d757600080fd5b5061039b6104e6366004612d28565b610bce565b3480156104f757600080fd5b5061039b610506366004612d0b565b610c41565b34801561051757600080fd5b50610445610526366004612d28565b610c6d565b34801561053757600080fd5b5060095461042490610100900460ff1681565b34801561055657600080fd5b50604051601281526020016103fb565b34801561057257600080fd5b5061039b610581366004612d0b565b610cf1565b34801561059257600080fd5b506104246105a1366004612d8f565b610e85565b3480156105b257600080fd5b50610445610ebb565b3480156105c757600080fd5b5061039b6105d6366004612dfc565b610f5e565b3480156105e757600080fd5b50610445600d5481565b3480156105fd57600080fd5b5061039b61060c366004612d28565b6110ae565b34801561061d57600080fd5b5061044560125481565b34801561063357600080fd5b5061039b610642366004612d28565b611198565b34801561065357600080fd5b5061039b610662366004612d0b565b6113ac565b34801561067357600080fd5b50610445610682366004612e43565b6113d8565b34801561069357600080fd5b5061039b6106a2366004612d28565b611470565b3480156106b357600080fd5b5061039b6114e8565b3480156106c857600080fd5b50601454610473906001600160a01b031681565b3480156106e857600080fd5b5060145461042490600160b01b900460ff1681565b34801561070957600080fd5b5061039b610718366004612d0b565b61152c565b34801561072957600080fd5b50610424610738366004612d0b565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561076257600080fd5b5061039b610771366004612d0b565b61165d565b34801561078257600080fd5b50610424610791366004612d0b565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156107bb57600080fd5b5061044560105481565b3480156107d157600080fd5b506104456107e0366004612d0b565b611687565b3480156107f157600080fd5b5061039b6116e6565b34801561080657600080fd5b50600c54610473906001600160a01b031681565b34801561082657600080fd5b5061039b610835366004612d0b565b6116fa565b34801561084657600080fd5b5061044560155481565b34801561085c57600080fd5b5061042461086b366004612d0b565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561089557600080fd5b5061039b6108a4366004612d8f565b611737565b3480156108b557600080fd5b506001546001600160a01b0316610473565b3480156108d357600080fd5b5061039b6108e2366004612d28565b611763565b3480156108f357600080fd5b50604080518082019091526004815263494d363960e01b60208201526103ee565b34801561092057600080fd5b5061042461092f366004612d8f565b611770565b34801561094057600080fd5b5061039b6117bf565b34801561095557600080fd5b50610424610964366004612d8f565b6117d8565b34801561097557600080fd5b5061044560165481565b34801561098b57600080fd5b5061039b61099a366004612e68565b6117e5565b61039b6109ad366004612e85565b611845565b3480156109be57600080fd5b5061039b6109cd366004612f1a565b61193d565b3480156109de57600080fd5b50610445600f5481565b3480156109f457600080fd5b5061039b610a03366004612d28565b6119f8565b348015610a1457600080fd5b50610445611a94565b348015610a2957600080fd5b50610445610a38366004612dfc565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b348015610a6f57600080fd5b5061039b610a7e366004612d0b565b611ac0565b348015610a8f57600080fd5b5061039b610a9e366004612e85565b611ae9565b348015610aaf57600080fd5b5061039b610abe366004612d0b565b611c94565b610acb611d0a565b6001600160a01b03166000908152600860205260409020805460ff19169055565b610af4611d0a565b600a8110610b495760405162461bcd60e51b815260206004820152601f60248201527f546178206665652063616e6e6f74206265206d6f7265207468616e203130250060448201526064015b60405180910390fd5b600d55565b6000610b5b338484611d64565b5060015b92915050565b6000610b72848484611e88565b610bc48433610bbf85604051806060016040528060288152602001613243602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190612133565b611d64565b5060019392505050565b610bd6611d0a565b60008111610c3c5760405162461bcd60e51b815260206004820152602d60248201527f53776170207468726573686f6c642070657263656e74206d757374206265206760448201526c0726561746572207468616e203609c1b6064820152608401610b40565b601655565b610c49611d0a565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600a54821115610cd45760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b40565b6000610cde61215f565b9050610cea8382612177565b9392505050565b610cf9611d0a565b6001600160a01b03811660009081526006602052604090205460ff16610d615760405162461bcd60e51b815260206004820152601c60248201527f4163636f756e74206e6f7420616c7265616479206578636c75646564000000006044820152606401610b40565b60005b600754811015610e8157816001600160a01b031660078281548110610d8b57610d8b612f86565b6000918252602090912001546001600160a01b031603610e6f5760078054610db590600190612fb2565b81548110610dc557610dc5612f86565b600091825260209091200154600780546001600160a01b039092169183908110610df157610df1612f86565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610e4957610e49612fc5565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e7981612fdb565b915050610d64565b5050565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610b5b918590610bbf9086612183565b6000610ec5611d0a565b60145460408051630240bc6b60e21b815290516000926001600160a01b031691630902f1ac9160048083019260609291908290030181865afa158015610f0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f339190613010565b50506001600160701b031690506000610f576012548361218f90919063ffffffff16565b9250505090565b610f66611d0a565b306001600160a01b03831603610fc85760405162461bcd60e51b815260206004820152602160248201527f63616e277420776974686472617720496e766173696f6e4d61727320746f6b656044820152603760f91b6064820152608401610b40565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa158015611016573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103a9190613060565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611085573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a99190613079565b505050565b3360008181526006602052604090205460ff16156111235760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610b40565b600061112e8361219b565b505050506001600160a01b03841660009081526002602052604090205491925061115a9190508261218f565b6001600160a01b038316600090815260026020526040902055600a54611180908261218f565b600a55600b546111909084612183565b600b55505050565b6111a0611d0a565b601454600160a01b900460ff166111c95760405162461bcd60e51b8152600401610b4090613096565b60006111d3611a94565b9050808211156112365760405162461bcd60e51b815260206004820152602860248201527f416d6f756e74206578636565647320617661696c61626c65206c6971756964696044820152673a3c903332b2b99760c11b6064820152608401610b40565b6014546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561127f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a39190613060565b60145460135460405163095ea7b360e01b81526001600160a01b03918216600482015260248101849052929350169063095ea7b3906044016020604051808303816000875af11580156112fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131e9190613079565b506013546001600160a01b03166302751cec308360008033611342426107086130db565b6040518763ffffffff1660e01b8152600401611363969594939291906130ee565b60408051808303816000875af1158015611381573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a59190613129565b5050505050565b6113b4611d0a565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000690d9b9c19108bf610808d601e1b8311156114375760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b40565b816114565760006114478461219b565b50939550610b5f945050505050565b60006114618461219b565b50929550610b5f945050505050565b611478611d0a565b603281106114e35760405162461bcd60e51b815260206004820152603260248201527f4d61726b6574696e67206665652063616e6e6f74206265206d6f7265207468616044820152716e20353025206f66206c697175696469747960701b6064820152608401610b40565b600f55565b6114f0611d0a565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611529573d6000803e3d6000fd5b50565b611534611d0a565b6001600160a01b03811660009081526006602052604090205460ff161561159d5760405162461bcd60e51b815260206004820152601c60248201527f4163636f756e74206e6f7420616c7265616479206578636c75646564000000006044820152606401610b40565b6001600160a01b038116600090815260026020526040902054156115f7576001600160a01b0381166000908152600260205260409020546115dd90610c6d565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b611665611d0a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526006602052604081205460ff16156116c457506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610b5f90610c6d565b6116ee611d0a565b6116f860006121ea565b565b611702611d0a565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610e81573d6000803e3d6000fd5b61173f611d0a565b61174761223c565b611752338383611e88565b610e81600e54600d55601154601055565b61176b611d0a565b601055565b6000610b5b3384610bbf8560405180606001604052806025815260200161326b602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190612133565b6117c7611d0a565b6009805461ff001916610100179055565b6000610b5b338484611e88565b6117ed611d0a565b60148054821515600160b01b0260ff60b01b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061183a90831515815260200190565b60405180910390a150565b61184d611d0a565b601454600160a01b900460ff166118765760405162461bcd60e51b8152600401610b4090613096565b611881333087611e88565b6013546118999030906001600160a01b031687611d64565b60135460405163f305d71960e01b8152600091829182916001600160a01b03169063f305d7199034906118da9030908d908c908e908d908d906004016130ee565b60606040518083038185885af11580156118f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061191d919061314d565b9250925092506012546000036119335760128890555b5050505050505050565b611945611d0a565b60008382146119965760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e6774680000000000000000006044820152606401610b40565b838110156113a5576119e68585838181106119b3576119b3612f86565b90506020020160208101906119c89190612d0b565b8484848181106119da576119da612f86565b9050602002013561173f565b6119f16001826130db565b9050611996565b611a00611d0a565b600081118015611a11575060648111155b611a695760405162461bcd60e51b8152602060048201526024808201527f50657263656e74616765206d757374206265206265747765656e203120616e646044820152630203130360e41b6064820152608401610b40565b690d9b9c19108bf610808d601e1b6064611a83838361317b565b611a8d9190613192565b6015555050565b601454600090600160a01b900460ff16610ec55760405162461bcd60e51b8152600401610b4090613096565b611ac8611d0a565b6001600160a01b03166000908152600560205260409020805460ff19169055565b611af1611d0a565b601454600160a01b900460ff16611b1a5760405162461bcd60e51b8152600401610b4090613096565b6014546040516323b872dd60e01b8152336004820152306024820152604481018790526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015611b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b959190613079565b5060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201526024810188905291169063095ea7b3906044016020604051808303816000875af1158015611beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0f9190613079565b50601354604051629d473b60e21b81526001600160a01b03909116906302751cec90611c49903090899089908990899089906004016130ee565b60408051808303816000875af1158015611c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8b9190613129565b50505050505050565b611c9c611d0a565b6001600160a01b038116611d015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b40565b611529816121ea565b6001546001600160a01b031633146116f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b40565b6001600160a01b038316611dc65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b40565b6001600160a01b038216611e275760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b40565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611eec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b40565b6001600160a01b038216611f4e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b40565b60008111611fb05760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b40565b6001546001600160a01b03848116911614801590611fdc57506001546001600160a01b03838116911614155b15612044576015548111156120445760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b40565b600061204f30611687565b9050600061207e6064612078601654612072690d9b9c19108bf610808d601e1b90565b9061226a565b90612177565b9050808210801590819061209c5750601454600160a81b900460ff16155b80156120b657506014546001600160a01b03878116911614155b80156120cb5750601454600160b01b900460ff165b156120dc578192506120dc83612276565b6001600160a01b03861660009081526005602052604090205460019060ff168061211e57506001600160a01b03861660009081526005602052604090205460ff165b15612127575060005b611c8b87878784612364565b600081848411156121575760405162461bcd60e51b8152600401610b409190612d41565b505050900390565b600080600061216c61254e565b9092509050610f5782825b6000610cea8284613192565b6000610cea82846130db565b6000610cea8284612fb2565b60008060008060008060008060006121b28a6126fa565b92509250925060008060006121d08d86866121cb61215f565b61273c565b919f909e50909c50959a5093985091965092945050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d5415801561224c5750601054155b1561225357565b600d8054600e556010805460115560009182905555565b6000610cea828461317b565b6014805460ff60a81b1916600160a81b17905580476122948261278c565b60006122a0478361218f565b905060006122be6064612078600f548561226a90919063ffffffff16565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156122f9573d6000803e3d6000fd5b506123048183612fb2565b915061231084836128e6565b604080518581526020810184905260008183015290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff60a81b19169055505050565b600954610100900460ff1661238d576001546001600160a01b0385811691161461238d57600080fd5b6001600160a01b03841660009081526008602052604090205460ff16806123cc57506001600160a01b03831660009081526008602052604090205460ff165b156124235760095460ff166124235760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610b40565b806124305761243061223c565b6001600160a01b03841660009081526006602052604090205460ff16801561247157506001600160a01b03831660009081526006602052604090205460ff16155b156124865761248184848461298c565b612532565b6001600160a01b03841660009081526006602052604090205460ff161580156124c757506001600160a01b03831660009081526006602052604090205460ff165b156124d757612481848484612ab2565b6001600160a01b03841660009081526006602052604090205460ff16801561251757506001600160a01b03831660009081526006602052604090205460ff165b1561252757612481848484612b5b565b612532848484612bce565b8061254857612548600e54600d55601154601055565b50505050565b600a546000908190690d9b9c19108bf610808d601e1b825b6007548110156126b55782600260006007848154811061258857612588612f86565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125f357508160036000600784815481106125cc576125cc612f86565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612613575050600a5493690d9b9c19108bf610808d601e1b9350915050565b612659600260006007848154811061262d5761262d612f86565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061218f565b92506126a1600360006007848154811061267557612675612f86565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061218f565b9150806126ad81612fdb565b915050612566565b50600a546126d090690d9b9c19108bf610808d601e1b612177565b8210156126f1575050600a5492690d9b9c19108bf610808d601e1b92509050565b90939092509050565b60008060008061270985612c12565b9050600061271686612c2e565b9050600061272e82612728898661218f565b9061218f565b979296509094509092505050565b600080808061274b888661226a565b90506000612759888761226a565b90506000612767888861226a565b9050600061277982612728868661218f565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127c1576127c1612f86565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561281a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283e91906131b4565b8160018151811061285157612851612f86565b6001600160a01b0392831660209182029290920101526013546128779130911684611d64565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906128b09085906000908690309042906004016131d1565b600060405180830381600087803b1580156128ca57600080fd5b505af11580156128de573d6000803e3d6000fd5b505050505050565b6013546128fe9030906001600160a01b031684611d64565b6013546001600160a01b031663f305d7198230856000806129276001546001600160a01b031690565b426040518863ffffffff1660e01b8152600401612949969594939291906130ee565b60606040518083038185885af1158015612967573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113a5919061314d565b60008060008060008061299e8761219b565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506129d0908861218f565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546129ff908761218f565b6001600160a01b03808b1660009081526002602052604080822093909355908a1681522054612a2e9086612183565b6001600160a01b038916600090815260026020526040902055612a5081612c4a565b612a5a8483612cd2565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612a9f91815260200190565b60405180910390a3505050505050505050565b600080600080600080612ac48761219b565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612af6908761218f565b6001600160a01b03808b16600090815260026020908152604080832094909455918b16815260039091522054612b2c9084612183565b6001600160a01b038916600090815260036020908152604080832093909355600290522054612a2e9086612183565b600080600080600080612b6d8761219b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b9f908861218f565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054612af6908761218f565b600080600080600080612be08761219b565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506129ff908761218f565b6000610b5f6064612078600d548561226a90919063ffffffff16565b6000610b5f60646120786010548561226a90919063ffffffff16565b6000612c5461215f565b90506000612c62838361226a565b30600090815260026020526040902054909150612c7f9082612183565b3060009081526002602090815260408083209390935560069052205460ff16156110a95730600090815260036020526040902054612cbd9084612183565b30600090815260036020526040902055505050565b600a54612cdf908361218f565b600a55600b54612cef9082612183565b600b555050565b6001600160a01b038116811461152957600080fd5b600060208284031215612d1d57600080fd5b8135610cea81612cf6565b600060208284031215612d3a57600080fd5b5035919050565b600060208083528351808285015260005b81811015612d6e57858101830151858201604001528201612d52565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215612da257600080fd5b8235612dad81612cf6565b946020939093013593505050565b600080600060608486031215612dd057600080fd5b8335612ddb81612cf6565b92506020840135612deb81612cf6565b929592945050506040919091013590565b60008060408385031215612e0f57600080fd5b8235612e1a81612cf6565b91506020830135612e2a81612cf6565b809150509250929050565b801515811461152957600080fd5b60008060408385031215612e5657600080fd5b823591506020830135612e2a81612e35565b600060208284031215612e7a57600080fd5b8135610cea81612e35565b600080600080600060a08688031215612e9d57600080fd5b8535945060208601359350604086013592506060860135612ebd81612cf6565b949793965091946080013592915050565b60008083601f840112612ee057600080fd5b50813567ffffffffffffffff811115612ef857600080fd5b6020830191508360208260051b8501011115612f1357600080fd5b9250929050565b60008060008060408587031215612f3057600080fd5b843567ffffffffffffffff80821115612f4857600080fd5b612f5488838901612ece565b90965094506020870135915080821115612f6d57600080fd5b50612f7a87828801612ece565b95989497509550505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610b5f57610b5f612f9c565b634e487b7160e01b600052603160045260246000fd5b600060018201612fed57612fed612f9c565b5060010190565b80516001600160701b038116811461300b57600080fd5b919050565b60008060006060848603121561302557600080fd5b61302e84612ff4565b925061303c60208501612ff4565b9150604084015163ffffffff8116811461305557600080fd5b809150509250925092565b60006020828403121561307257600080fd5b5051919050565b60006020828403121561308b57600080fd5b8151610cea81612e35565b60208082526025908201527f556e697377617020686173206e6f74206265656e20696e697469616c697a6564604082015264103cb2ba1760d91b606082015260800190565b80820180821115610b5f57610b5f612f9c565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6000806040838503121561313c57600080fd5b505080516020909101519092909150565b60008060006060848603121561316257600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610b5f57610b5f612f9c565b6000826131af57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156131c657600080fd5b8151610cea81612cf6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132215784516001600160a01b0316835293830193918301916001016131fc565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206263de8d8a175518772009f11d356e5a776af88df821aa3e72340a027949c34464736f6c63430008110033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80635342acb4116101c6578063a457c2d7116100f7578063da6fa55c11610095578063dd62ed3e1161006f578063dd62ed3e14610a1d578063ea2f0b3714610a63578063ed856cdc14610a83578063f2fde38b14610aa357600080fd5b8063da6fa55c146109d2578063dae8cbc2146109e8578063dcb81f4114610a0857600080fd5b8063bafb1403116100d1578063bafb140314610969578063c49b9a801461097f578063c4dbea951461099f578063d4a3883f146109b257600080fd5b8063a457c2d714610914578063a633423114610934578063a9059cbb1461094957600080fd5b8063764d72bf116101645780638ba4cc3c1161013e5780638ba4cc3c146108895780638da5cb5b146108a95780638ee88c53146108c757806395d89b41146108e757600080fd5b8063764d72bf1461081a5780637d1db4a51461083a57806388f820201461085057600080fd5b80636bc87c3a116101a05780636bc87c3a146107af57806370a08231146107c5578063715018a6146107e557806375f0a874146107fa57600080fd5b80635342acb41461071d5780635d098b381461075657806360d484891461077657600080fd5b806339509351116102a0578063437823ec1161023e57806348c54b9d1161021857806348c54b9d146106a757806349bd5a5e146106bc5780634a74bb02146106dc57806352390c02146106fd57600080fd5b8063437823ec146106475780634549b03914610667578063457c194c1461068757600080fd5b80633b124fe71161027a5780633b124fe7146105db5780633bd5d173146105f15780633f0f02eb146106115780633f5709491461062757600080fd5b8063395093511461058657806339bd2ad4146105a65780633ae7dc20146105bb57600080fd5b806323b872dd1161030d5780632d838119116102e75780632d8381191461050b5780632f05205c1461052b578063313ce5671461054a5780633685d4191461056657600080fd5b806323b872dd146104ab57806328246edc146104cb5780632a360631146104eb57600080fd5b8063095ea7b311610349578063095ea7b31461040457806313114a9d146104345780631694505e1461045357806318160ddd1461048b57600080fd5b80630305caff1461037b578063061c82d01461039d57806306fdde03146103bd57600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b610396366004612d0b565b610ac3565b005b3480156103a957600080fd5b5061039b6103b8366004612d28565b610aec565b3480156103c957600080fd5b5060408051808201909152600c81526b496e766173696f6e4d61727360a01b60208201525b6040516103fb9190612d41565b60405180910390f35b34801561041057600080fd5b5061042461041f366004612d8f565b610b4e565b60405190151581526020016103fb565b34801561044057600080fd5b50600b545b6040519081526020016103fb565b34801561045f57600080fd5b50601354610473906001600160a01b031681565b6040516001600160a01b0390911681526020016103fb565b34801561049757600080fd5b50690d9b9c19108bf610808d601e1b610445565b3480156104b757600080fd5b506104246104c6366004612dbb565b610b65565b3480156104d757600080fd5b5061039b6104e6366004612d28565b610bce565b3480156104f757600080fd5b5061039b610506366004612d0b565b610c41565b34801561051757600080fd5b50610445610526366004612d28565b610c6d565b34801561053757600080fd5b5060095461042490610100900460ff1681565b34801561055657600080fd5b50604051601281526020016103fb565b34801561057257600080fd5b5061039b610581366004612d0b565b610cf1565b34801561059257600080fd5b506104246105a1366004612d8f565b610e85565b3480156105b257600080fd5b50610445610ebb565b3480156105c757600080fd5b5061039b6105d6366004612dfc565b610f5e565b3480156105e757600080fd5b50610445600d5481565b3480156105fd57600080fd5b5061039b61060c366004612d28565b6110ae565b34801561061d57600080fd5b5061044560125481565b34801561063357600080fd5b5061039b610642366004612d28565b611198565b34801561065357600080fd5b5061039b610662366004612d0b565b6113ac565b34801561067357600080fd5b50610445610682366004612e43565b6113d8565b34801561069357600080fd5b5061039b6106a2366004612d28565b611470565b3480156106b357600080fd5b5061039b6114e8565b3480156106c857600080fd5b50601454610473906001600160a01b031681565b3480156106e857600080fd5b5060145461042490600160b01b900460ff1681565b34801561070957600080fd5b5061039b610718366004612d0b565b61152c565b34801561072957600080fd5b50610424610738366004612d0b565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561076257600080fd5b5061039b610771366004612d0b565b61165d565b34801561078257600080fd5b50610424610791366004612d0b565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156107bb57600080fd5b5061044560105481565b3480156107d157600080fd5b506104456107e0366004612d0b565b611687565b3480156107f157600080fd5b5061039b6116e6565b34801561080657600080fd5b50600c54610473906001600160a01b031681565b34801561082657600080fd5b5061039b610835366004612d0b565b6116fa565b34801561084657600080fd5b5061044560155481565b34801561085c57600080fd5b5061042461086b366004612d0b565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561089557600080fd5b5061039b6108a4366004612d8f565b611737565b3480156108b557600080fd5b506001546001600160a01b0316610473565b3480156108d357600080fd5b5061039b6108e2366004612d28565b611763565b3480156108f357600080fd5b50604080518082019091526004815263494d363960e01b60208201526103ee565b34801561092057600080fd5b5061042461092f366004612d8f565b611770565b34801561094057600080fd5b5061039b6117bf565b34801561095557600080fd5b50610424610964366004612d8f565b6117d8565b34801561097557600080fd5b5061044560165481565b34801561098b57600080fd5b5061039b61099a366004612e68565b6117e5565b61039b6109ad366004612e85565b611845565b3480156109be57600080fd5b5061039b6109cd366004612f1a565b61193d565b3480156109de57600080fd5b50610445600f5481565b3480156109f457600080fd5b5061039b610a03366004612d28565b6119f8565b348015610a1457600080fd5b50610445611a94565b348015610a2957600080fd5b50610445610a38366004612dfc565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b348015610a6f57600080fd5b5061039b610a7e366004612d0b565b611ac0565b348015610a8f57600080fd5b5061039b610a9e366004612e85565b611ae9565b348015610aaf57600080fd5b5061039b610abe366004612d0b565b611c94565b610acb611d0a565b6001600160a01b03166000908152600860205260409020805460ff19169055565b610af4611d0a565b600a8110610b495760405162461bcd60e51b815260206004820152601f60248201527f546178206665652063616e6e6f74206265206d6f7265207468616e203130250060448201526064015b60405180910390fd5b600d55565b6000610b5b338484611d64565b5060015b92915050565b6000610b72848484611e88565b610bc48433610bbf85604051806060016040528060288152602001613243602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190612133565b611d64565b5060019392505050565b610bd6611d0a565b60008111610c3c5760405162461bcd60e51b815260206004820152602d60248201527f53776170207468726573686f6c642070657263656e74206d757374206265206760448201526c0726561746572207468616e203609c1b6064820152608401610b40565b601655565b610c49611d0a565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600a54821115610cd45760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b40565b6000610cde61215f565b9050610cea8382612177565b9392505050565b610cf9611d0a565b6001600160a01b03811660009081526006602052604090205460ff16610d615760405162461bcd60e51b815260206004820152601c60248201527f4163636f756e74206e6f7420616c7265616479206578636c75646564000000006044820152606401610b40565b60005b600754811015610e8157816001600160a01b031660078281548110610d8b57610d8b612f86565b6000918252602090912001546001600160a01b031603610e6f5760078054610db590600190612fb2565b81548110610dc557610dc5612f86565b600091825260209091200154600780546001600160a01b039092169183908110610df157610df1612f86565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610e4957610e49612fc5565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610e7981612fdb565b915050610d64565b5050565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610b5b918590610bbf9086612183565b6000610ec5611d0a565b60145460408051630240bc6b60e21b815290516000926001600160a01b031691630902f1ac9160048083019260609291908290030181865afa158015610f0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f339190613010565b50506001600160701b031690506000610f576012548361218f90919063ffffffff16565b9250505090565b610f66611d0a565b306001600160a01b03831603610fc85760405162461bcd60e51b815260206004820152602160248201527f63616e277420776974686472617720496e766173696f6e4d61727320746f6b656044820152603760f91b6064820152608401610b40565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a0823190602401602060405180830381865afa158015611016573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103a9190613060565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611085573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a99190613079565b505050565b3360008181526006602052604090205460ff16156111235760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610b40565b600061112e8361219b565b505050506001600160a01b03841660009081526002602052604090205491925061115a9190508261218f565b6001600160a01b038316600090815260026020526040902055600a54611180908261218f565b600a55600b546111909084612183565b600b55505050565b6111a0611d0a565b601454600160a01b900460ff166111c95760405162461bcd60e51b8152600401610b4090613096565b60006111d3611a94565b9050808211156112365760405162461bcd60e51b815260206004820152602860248201527f416d6f756e74206578636565647320617661696c61626c65206c6971756964696044820152673a3c903332b2b99760c11b6064820152608401610b40565b6014546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561127f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a39190613060565b60145460135460405163095ea7b360e01b81526001600160a01b03918216600482015260248101849052929350169063095ea7b3906044016020604051808303816000875af11580156112fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131e9190613079565b506013546001600160a01b03166302751cec308360008033611342426107086130db565b6040518763ffffffff1660e01b8152600401611363969594939291906130ee565b60408051808303816000875af1158015611381573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a59190613129565b5050505050565b6113b4611d0a565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000690d9b9c19108bf610808d601e1b8311156114375760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b40565b816114565760006114478461219b565b50939550610b5f945050505050565b60006114618461219b565b50929550610b5f945050505050565b611478611d0a565b603281106114e35760405162461bcd60e51b815260206004820152603260248201527f4d61726b6574696e67206665652063616e6e6f74206265206d6f7265207468616044820152716e20353025206f66206c697175696469747960701b6064820152608401610b40565b600f55565b6114f0611d0a565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611529573d6000803e3d6000fd5b50565b611534611d0a565b6001600160a01b03811660009081526006602052604090205460ff161561159d5760405162461bcd60e51b815260206004820152601c60248201527f4163636f756e74206e6f7420616c7265616479206578636c75646564000000006044820152606401610b40565b6001600160a01b038116600090815260026020526040902054156115f7576001600160a01b0381166000908152600260205260409020546115dd90610c6d565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b611665611d0a565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03811660009081526006602052604081205460ff16156116c457506001600160a01b031660009081526003602052604090205490565b6001600160a01b038216600090815260026020526040902054610b5f90610c6d565b6116ee611d0a565b6116f860006121ea565b565b611702611d0a565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610e81573d6000803e3d6000fd5b61173f611d0a565b61174761223c565b611752338383611e88565b610e81600e54600d55601154601055565b61176b611d0a565b601055565b6000610b5b3384610bbf8560405180606001604052806025815260200161326b602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190612133565b6117c7611d0a565b6009805461ff001916610100179055565b6000610b5b338484611e88565b6117ed611d0a565b60148054821515600160b01b0260ff60b01b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061183a90831515815260200190565b60405180910390a150565b61184d611d0a565b601454600160a01b900460ff166118765760405162461bcd60e51b8152600401610b4090613096565b611881333087611e88565b6013546118999030906001600160a01b031687611d64565b60135460405163f305d71960e01b8152600091829182916001600160a01b03169063f305d7199034906118da9030908d908c908e908d908d906004016130ee565b60606040518083038185885af11580156118f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061191d919061314d565b9250925092506012546000036119335760128890555b5050505050505050565b611945611d0a565b60008382146119965760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e6774680000000000000000006044820152606401610b40565b838110156113a5576119e68585838181106119b3576119b3612f86565b90506020020160208101906119c89190612d0b565b8484848181106119da576119da612f86565b9050602002013561173f565b6119f16001826130db565b9050611996565b611a00611d0a565b600081118015611a11575060648111155b611a695760405162461bcd60e51b8152602060048201526024808201527f50657263656e74616765206d757374206265206265747765656e203120616e646044820152630203130360e41b6064820152608401610b40565b690d9b9c19108bf610808d601e1b6064611a83838361317b565b611a8d9190613192565b6015555050565b601454600090600160a01b900460ff16610ec55760405162461bcd60e51b8152600401610b4090613096565b611ac8611d0a565b6001600160a01b03166000908152600560205260409020805460ff19169055565b611af1611d0a565b601454600160a01b900460ff16611b1a5760405162461bcd60e51b8152600401610b4090613096565b6014546040516323b872dd60e01b8152336004820152306024820152604481018790526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015611b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b959190613079565b5060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201526024810188905291169063095ea7b3906044016020604051808303816000875af1158015611beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0f9190613079565b50601354604051629d473b60e21b81526001600160a01b03909116906302751cec90611c49903090899089908990899089906004016130ee565b60408051808303816000875af1158015611c67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8b9190613129565b50505050505050565b611c9c611d0a565b6001600160a01b038116611d015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b40565b611529816121ea565b6001546001600160a01b031633146116f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b40565b6001600160a01b038316611dc65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b40565b6001600160a01b038216611e275760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b40565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611eec5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b40565b6001600160a01b038216611f4e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b40565b60008111611fb05760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b40565b6001546001600160a01b03848116911614801590611fdc57506001546001600160a01b03838116911614155b15612044576015548111156120445760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b40565b600061204f30611687565b9050600061207e6064612078601654612072690d9b9c19108bf610808d601e1b90565b9061226a565b90612177565b9050808210801590819061209c5750601454600160a81b900460ff16155b80156120b657506014546001600160a01b03878116911614155b80156120cb5750601454600160b01b900460ff165b156120dc578192506120dc83612276565b6001600160a01b03861660009081526005602052604090205460019060ff168061211e57506001600160a01b03861660009081526005602052604090205460ff165b15612127575060005b611c8b87878784612364565b600081848411156121575760405162461bcd60e51b8152600401610b409190612d41565b505050900390565b600080600061216c61254e565b9092509050610f5782825b6000610cea8284613192565b6000610cea82846130db565b6000610cea8284612fb2565b60008060008060008060008060006121b28a6126fa565b92509250925060008060006121d08d86866121cb61215f565b61273c565b919f909e50909c50959a5093985091965092945050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d5415801561224c5750601054155b1561225357565b600d8054600e556010805460115560009182905555565b6000610cea828461317b565b6014805460ff60a81b1916600160a81b17905580476122948261278c565b60006122a0478361218f565b905060006122be6064612078600f548561226a90919063ffffffff16565b600c546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156122f9573d6000803e3d6000fd5b506123048183612fb2565b915061231084836128e6565b604080518581526020810184905260008183015290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff60a81b19169055505050565b600954610100900460ff1661238d576001546001600160a01b0385811691161461238d57600080fd5b6001600160a01b03841660009081526008602052604090205460ff16806123cc57506001600160a01b03831660009081526008602052604090205460ff165b156124235760095460ff166124235760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610b40565b806124305761243061223c565b6001600160a01b03841660009081526006602052604090205460ff16801561247157506001600160a01b03831660009081526006602052604090205460ff16155b156124865761248184848461298c565b612532565b6001600160a01b03841660009081526006602052604090205460ff161580156124c757506001600160a01b03831660009081526006602052604090205460ff165b156124d757612481848484612ab2565b6001600160a01b03841660009081526006602052604090205460ff16801561251757506001600160a01b03831660009081526006602052604090205460ff165b1561252757612481848484612b5b565b612532848484612bce565b8061254857612548600e54600d55601154601055565b50505050565b600a546000908190690d9b9c19108bf610808d601e1b825b6007548110156126b55782600260006007848154811061258857612588612f86565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806125f357508160036000600784815481106125cc576125cc612f86565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612613575050600a5493690d9b9c19108bf610808d601e1b9350915050565b612659600260006007848154811061262d5761262d612f86565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061218f565b92506126a1600360006007848154811061267557612675612f86565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061218f565b9150806126ad81612fdb565b915050612566565b50600a546126d090690d9b9c19108bf610808d601e1b612177565b8210156126f1575050600a5492690d9b9c19108bf610808d601e1b92509050565b90939092509050565b60008060008061270985612c12565b9050600061271686612c2e565b9050600061272e82612728898661218f565b9061218f565b979296509094509092505050565b600080808061274b888661226a565b90506000612759888761226a565b90506000612767888861226a565b9050600061277982612728868661218f565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127c1576127c1612f86565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561281a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283e91906131b4565b8160018151811061285157612851612f86565b6001600160a01b0392831660209182029290920101526013546128779130911684611d64565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906128b09085906000908690309042906004016131d1565b600060405180830381600087803b1580156128ca57600080fd5b505af11580156128de573d6000803e3d6000fd5b505050505050565b6013546128fe9030906001600160a01b031684611d64565b6013546001600160a01b031663f305d7198230856000806129276001546001600160a01b031690565b426040518863ffffffff1660e01b8152600401612949969594939291906130ee565b60606040518083038185885af1158015612967573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906113a5919061314d565b60008060008060008061299e8761219b565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506129d0908861218f565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546129ff908761218f565b6001600160a01b03808b1660009081526002602052604080822093909355908a1681522054612a2e9086612183565b6001600160a01b038916600090815260026020526040902055612a5081612c4a565b612a5a8483612cd2565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612a9f91815260200190565b60405180910390a3505050505050505050565b600080600080600080612ac48761219b565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612af6908761218f565b6001600160a01b03808b16600090815260026020908152604080832094909455918b16815260039091522054612b2c9084612183565b6001600160a01b038916600090815260036020908152604080832093909355600290522054612a2e9086612183565b600080600080600080612b6d8761219b565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b9f908861218f565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054612af6908761218f565b600080600080600080612be08761219b565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506129ff908761218f565b6000610b5f6064612078600d548561226a90919063ffffffff16565b6000610b5f60646120786010548561226a90919063ffffffff16565b6000612c5461215f565b90506000612c62838361226a565b30600090815260026020526040902054909150612c7f9082612183565b3060009081526002602090815260408083209390935560069052205460ff16156110a95730600090815260036020526040902054612cbd9084612183565b30600090815260036020526040902055505050565b600a54612cdf908361218f565b600a55600b54612cef9082612183565b600b555050565b6001600160a01b038116811461152957600080fd5b600060208284031215612d1d57600080fd5b8135610cea81612cf6565b600060208284031215612d3a57600080fd5b5035919050565b600060208083528351808285015260005b81811015612d6e57858101830151858201604001528201612d52565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215612da257600080fd5b8235612dad81612cf6565b946020939093013593505050565b600080600060608486031215612dd057600080fd5b8335612ddb81612cf6565b92506020840135612deb81612cf6565b929592945050506040919091013590565b60008060408385031215612e0f57600080fd5b8235612e1a81612cf6565b91506020830135612e2a81612cf6565b809150509250929050565b801515811461152957600080fd5b60008060408385031215612e5657600080fd5b823591506020830135612e2a81612e35565b600060208284031215612e7a57600080fd5b8135610cea81612e35565b600080600080600060a08688031215612e9d57600080fd5b8535945060208601359350604086013592506060860135612ebd81612cf6565b949793965091946080013592915050565b60008083601f840112612ee057600080fd5b50813567ffffffffffffffff811115612ef857600080fd5b6020830191508360208260051b8501011115612f1357600080fd5b9250929050565b60008060008060408587031215612f3057600080fd5b843567ffffffffffffffff80821115612f4857600080fd5b612f5488838901612ece565b90965094506020870135915080821115612f6d57600080fd5b50612f7a87828801612ece565b95989497509550505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610b5f57610b5f612f9c565b634e487b7160e01b600052603160045260246000fd5b600060018201612fed57612fed612f9c565b5060010190565b80516001600160701b038116811461300b57600080fd5b919050565b60008060006060848603121561302557600080fd5b61302e84612ff4565b925061303c60208501612ff4565b9150604084015163ffffffff8116811461305557600080fd5b809150509250925092565b60006020828403121561307257600080fd5b5051919050565b60006020828403121561308b57600080fd5b8151610cea81612e35565b60208082526025908201527f556e697377617020686173206e6f74206265656e20696e697469616c697a6564604082015264103cb2ba1760d91b606082015260800190565b80820180821115610b5f57610b5f612f9c565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6000806040838503121561313c57600080fd5b505080516020909101519092909150565b60008060006060848603121561316257600080fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610b5f57610b5f612f9c565b6000826131af57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156131c657600080fd5b8151610cea81612cf6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156132215784516001600160a01b0316835293830193918301916001016131fc565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206263de8d8a175518772009f11d356e5a776af88df821aa3e72340a027949c34464736f6c63430008110033
Deployed Bytecode Sourcemap
48428:22827:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61643:113;;;;;;;;;;-1:-1:-1;61643:113:0;;;;;:::i;:::-;;:::i;:::-;;59992:164;;;;;;;;;;-1:-1:-1;59992:164:0;;;;;:::i;:::-;;:::i;53943:83::-;;;;;;;;;;-1:-1:-1;54013:5:0;;;;;;;;;;;;-1:-1:-1;;;54013:5:0;;;;53943:83;;;;;;;:::i;:::-;;;;;;;;54855:161;;;;;;;;;;-1:-1:-1;54855:161:0;;;;;:::i;:::-;;:::i;:::-;;;1625:14:1;;1618:22;1600:41;;1588:2;1573:18;54855:161:0;1460:187:1;55976:87:0;;;;;;;;;;-1:-1:-1;56045:10:0;;55976:87;;;1798:25:1;;;1786:2;1771:18;55976:87:0;1652:177:1;49753:41:0;;;;;;;;;;-1:-1:-1;49753:41:0;;;;-1:-1:-1;;;;;49753:41:0;;;;;;-1:-1:-1;;;;;2025:32:1;;;2007:51;;1995:2;1980:18;49753:41:0;1834:230:1;54220:95:0;;;;;;;;;;-1:-1:-1;;;;54220:95:0;;55024:313;;;;;;;;;;-1:-1:-1;55024:313:0;;;;;:::i;:::-;;:::i;60678:243::-;;;;;;;;;;-1:-1:-1;60678:243:0;;;;;:::i;:::-;;:::i;61522:109::-;;;;;;;;;;-1:-1:-1;61522:109:0;;;;;:::i;:::-;;:::i;57674:253::-;;;;;;;;;;-1:-1:-1;57674:253:0;;;;;:::i;:::-;;:::i;48987:28::-;;;;;;;;;;-1:-1:-1;48987:28:0;;;;;;;;;;;54129:83;;;;;;;;;;-1:-1:-1;54129:83:0;;49454:2;2672:36:1;;2660:2;2645:18;54129:83:0;2530:184:1;58277:480:0;;;;;;;;;;-1:-1:-1;58277:480:0;;;;;:::i;:::-;;:::i;55345:218::-;;;;;;;;;;-1:-1:-1;55345:218:0;;;;;:::i;:::-;;:::i;53002:257::-;;;;;;;;;;;;;:::i;61073:279::-;;;;;;;;;;-1:-1:-1;61073:279:0;;;;;:::i;:::-;;:::i;49469:26::-;;;;;;;;;;;;;;;;56845:377;;;;;;;;;;-1:-1:-1;56845:377:0;;;;;:::i;:::-;;:::i;49708:36::-;;;;;;;;;;;;;;;;53267:666;;;;;;;;;;-1:-1:-1;53267:666:0;;;;;:::i;:::-;;:::i;59421:111::-;;;;;;;;;;-1:-1:-1;59421:111:0;;;;;:::i;:::-;;:::i;57230:436::-;;;;;;;;;;-1:-1:-1;57230:436:0;;;;;:::i;:::-;;:::i;59666:188::-;;;;;;;;;;-1:-1:-1;59666:188:0;;;;;:::i;:::-;;:::i;60935:126::-;;;;;;;;;;;;;:::i;49801:28::-;;;;;;;;;;-1:-1:-1;49801:28:0;;;;-1:-1:-1;;;;;49801:28:0;;;49915:40;;;;;;;;;;-1:-1:-1;49915:40:0;;;;-1:-1:-1;;;49915:40:0;;;;;;57935:334;;;;;;;;;;-1:-1:-1;57935:334:0;;;;;:::i;:::-;;:::i;65414:123::-;;;;;;;;;;-1:-1:-1;65414:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;65502:27:0;65478:4;65502:27;;;:18;:27;;;;;;;;;65414:123;59862:118;;;;;;;;;;-1:-1:-1;59862:118:0;;;;;:::i;:::-;;:::i;61768:121::-;;;;;;;;;;-1:-1:-1;61768:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;61860:21:0;61836:4;61860:21;;;:10;:21;;;;;;;;;61768:121;49606:32;;;;;;;;;;;;;;;;54323:198;;;;;;;;;;-1:-1:-1;54323:198:0;;;;;:::i;:::-;;:::i;19749:103::-;;;;;;;;;;;;;:::i;49235:75::-;;;;;;;;;;-1:-1:-1;49235:75:0;;;;-1:-1:-1;;;;;49235:75:0;;;61366:144;;;;;;;;;;-1:-1:-1;61366:144:0;;;;;:::i;:::-;;:::i;49968:49::-;;;;;;;;;;;;;;;;55848:120;;;;;;;;;;-1:-1:-1;55848:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;55940:20:0;55916:4;55940:20;;;:11;:20;;;;;;;;;55848:120;56075:185;;;;;;;;;;-1:-1:-1;56075:185:0;;;;;:::i;:::-;;:::i;19101:87::-;;;;;;;;;;-1:-1:-1;19174:6:0;;-1:-1:-1;;;;;19174:6:0;19101:87;;60168:122;;;;;;;;;;-1:-1:-1;60168:122:0;;;;;:::i;:::-;;:::i;54034:87::-;;;;;;;;;;-1:-1:-1;54106:7:0;;;;;;;;;;;;-1:-1:-1;;;54106:7:0;;;;54034:87;;55571:269;;;;;;;;;;-1:-1:-1;55571:269:0;;;;;:::i;:::-;;:::i;61901:78::-;;;;;;;;;;;;;:::i;54529:167::-;;;;;;;;;;-1:-1:-1;54529:167:0;;;;;:::i;:::-;;:::i;50093:39::-;;;;;;;;;;;;;;;;61987:171;;;;;;;;;;-1:-1:-1;61987:171:0;;;;;:::i;:::-;;:::i;51034:917::-;;;;;;:::i;:::-;;:::i;56457:378::-;;;;;;;;;;-1:-1:-1;56457:378:0;;;;;:::i;:::-;;:::i;49553:39::-;;;;;;;;;;;;;;;;60301:365;;;;;;;;;;-1:-1:-1;60301:365:0;;;;;:::i;:::-;;:::i;52645:349::-;;;;;;;;;;;;;:::i;54704:143::-;;;;;;;;;;-1:-1:-1;54704:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;54812:18:0;;;54785:7;54812:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;54704:143;59544:110;;;;;;;;;;-1:-1:-1;59544:110:0;;;;;:::i;:::-;;:::i;51959:678::-;;;;;;;;;;-1:-1:-1;51959:678:0;;;;;:::i;:::-;;:::i;20007:201::-;;;;;;;;;;-1:-1:-1;20007:201:0;;;;;:::i;:::-;;:::i;61643:113::-;18987:13;:11;:13::i;:::-;-1:-1:-1;;;;;61719:21:0::1;61743:5;61719:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;61719:29:0::1;::::0;;61643:113::o;59992:164::-;18987:13;:11;:13::i;:::-;60083:2:::1;60074:6;:11;60066:55;;;::::0;-1:-1:-1;;;60066:55:0;;6547:2:1;60066:55:0::1;::::0;::::1;6529:21:1::0;6586:2;6566:18;;;6559:30;6625:33;6605:18;;;6598:61;6676:18;;60066:55:0::1;;;;;;;;;60132:7;:16:::0;59992:164::o;54855:161::-;54930:4;54947:39;792:10;54970:7;54979:6;54947:8;:39::i;:::-;-1:-1:-1;55004:4:0;54855:161;;;;;:::o;55024:313::-;55122:4;55139:36;55149:6;55157:9;55168:6;55139:9;:36::i;:::-;55186:121;55195:6;792:10;55217:89;55255:6;55217:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55217:19:0;;;;;;:11;:19;;;;;;;;792:10;55217:33;;;;;;;;;;:37;:89::i;:::-;55186:8;:121::i;:::-;-1:-1:-1;55325:4:0;55024:313;;;;;:::o;60678:243::-;18987:13;:11;:13::i;:::-;60807:1:::1;60783:21;:25;60775:83;;;::::0;-1:-1:-1;;;60775:83:0;;6907:2:1;60775:83:0::1;::::0;::::1;6889:21:1::0;6946:2;6926:18;;;6919:30;6985:34;6965:18;;;6958:62;-1:-1:-1;;;7036:18:1;;;7029:43;7089:19;;60775:83:0::1;6705:409:1::0;60775:83:0::1;60869:20;:44:::0;60678:243::o;61522:109::-;18987:13;:11;:13::i;:::-;-1:-1:-1;;;;;61595:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;:28;;-1:-1:-1;;61595:28:0::1;61619:4;61595:28;::::0;;61522:109::o;57674:253::-;57740:7;57779;;57768;:18;;57760:73;;;;-1:-1:-1;;;57760:73:0;;7321:2:1;57760:73:0;;;7303:21:1;7360:2;7340:18;;;7333:30;7399:34;7379:18;;;7372:62;-1:-1:-1;;;7450:18:1;;;7443:40;7500:19;;57760:73:0;7119:406:1;57760:73:0;57844:19;57867:10;:8;:10::i;:::-;57844:33;-1:-1:-1;57895:24:0;:7;57844:33;57895:11;:24::i;:::-;57888:31;57674:253;-1:-1:-1;;;57674:253:0:o;58277:480::-;18987:13;:11;:13::i;:::-;-1:-1:-1;;;;;58359:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;58351:61;;;::::0;-1:-1:-1;;;58351:61:0;;7732:2:1;58351:61:0::1;::::0;::::1;7714:21:1::0;7771:2;7751:18;;;7744:30;7810;7790:18;;;7783:58;7858:18;;58351:61:0::1;7530:352:1::0;58351:61:0::1;58428:9;58423:327;58447:9;:16:::0;58443:20;::::1;58423:327;;;58505:7;-1:-1:-1::0;;;;;58489:23:0::1;:9;58499:1;58489:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;58489:12:0::1;:23:::0;58485:254:::1;;58548:9;58558:16:::0;;:20:::1;::::0;58577:1:::1;::::0;58558:20:::1;:::i;:::-;58548:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;58533:9:::1;:12:::0;;-1:-1:-1;;;;;58548:31:0;;::::1;::::0;58543:1;;58533:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;58533:46:0::1;-1:-1:-1::0;;;;;58533:46:0;;::::1;;::::0;;58598:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;58637:11:::1;:20:::0;;;;:28;;-1:-1:-1;;58637:28:0::1;::::0;;58684:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;58684:15:0;;;;;-1:-1:-1;;;;;;58684:15:0::1;::::0;;;;;58423:327:::1;58277:480:::0;:::o;58485:254::-:1;58465:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58423:327;;;;58277:480:::0;:::o;55345:218::-;792:10;55433:4;55482:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;55482:34:0;;;;;;;;;;55433:4;;55450:83;;55473:7;;55482:50;;55521:10;55482:38;:50::i;53002:257::-;53068:7;18987:13;:11;:13::i;:::-;53128::::1;::::0;53113:43:::1;::::0;;-1:-1:-1;;;53113:43:0;;;;53089:16:::1;::::0;-1:-1:-1;;;;;53128:13:0::1;::::0;53113:41:::1;::::0;:43:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;53128:13;53113:43:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53088:68;;-1:-1:-1::0;;;;;53088:68:0::1;;;53167:18;53188:35;53201:21;;53188:8;:12;;:35;;;;:::i;:::-;53167:56:::0;-1:-1:-1;;;53002:257:0;:::o;61073:279::-;18987:13;:11;:13::i;:::-;61216:4:::1;-1:-1:-1::0;;;;;61183:38:0;::::1;::::0;61175:83:::1;;;::::0;-1:-1:-1;;;61175:83:0;;9406:2:1;61175:83:0::1;::::0;::::1;9388:21:1::0;9445:2;9425:18;;;9418:30;9484:34;9464:18;;;9457:62;-1:-1:-1;;;9535:18:1;;;9528:31;9576:19;;61175:83:0::1;9204:397:1::0;61175:83:0::1;61306:37;::::0;-1:-1:-1;;;61306:37:0;;61337:4:::1;61306:37;::::0;::::1;2007:51:1::0;-1:-1:-1;;;;;61269:21:0;::::1;::::0;::::1;::::0;61291:13;;61269:21;;61306:22:::1;::::0;1980:18:1;;61306:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61269:75;::::0;-1:-1:-1;;;;;;61269:75:0::1;::::0;;;;;;-1:-1:-1;;;;;9987:32:1;;;61269:75:0::1;::::0;::::1;9969:51:1::0;10036:18;;;10029:34;9942:18;;61269:75:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61073:279:::0;;:::o;56845:377::-;792:10;56897:14;56946:19;;;:11;:19;;;;;;;;56945:20;56937:77;;;;-1:-1:-1;;;56937:77:0;;10526:2:1;56937:77:0;;;10508:21:1;10565:2;10545:18;;;10538:30;10604:34;10584:18;;;10577:62;-1:-1:-1;;;10655:18:1;;;10648:42;10707:19;;56937:77:0;10324:408:1;56937:77:0;57026:15;57050:19;57061:7;57050:10;:19::i;:::-;-1:-1:-1;;;;;;;;;57098:15:0;;;;;;:7;:15;;;;;;57025:44;;-1:-1:-1;57098:28:0;;:15;-1:-1:-1;57025:44:0;57098:19;:28::i;:::-;-1:-1:-1;;;;;57080:15:0;;;;;;:7;:15;;;;;:46;57147:7;;:20;;57159:7;57147:11;:20::i;:::-;57137:7;:30;57191:10;;:23;;57206:7;57191:14;:23::i;:::-;57178:10;:36;-1:-1:-1;;;56845:377:0:o;53267:666::-;18987:13;:11;:13::i;:::-;53352:18:::1;::::0;-1:-1:-1;;;53352:18:0;::::1;;;53344:68;;;;-1:-1:-1::0;;;53344:68:0::1;;;;;;;:::i;:::-;53425:18;53446:24;:22;:24::i;:::-;53425:45;;53499:10;53489:6;:20;;53481:73;;;::::0;-1:-1:-1;;;53481:73:0;;11345:2:1;53481:73:0::1;::::0;::::1;11327:21:1::0;11384:2;11364:18;;;11357:30;11423:34;11403:18;;;11396:62;-1:-1:-1;;;11474:18:1;;;11467:38;11522:19;;53481:73:0::1;11143:404:1::0;53481:73:0::1;53604:13;::::0;53597:46:::1;::::0;-1:-1:-1;;;53597:46:0;;53637:4:::1;53597:46;::::0;::::1;2007:51:1::0;53577:17:0::1;::::0;-1:-1:-1;;;;;53604:13:0::1;::::0;53597:31:::1;::::0;1980:18:1;;53597:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53661:13;::::0;53692:15:::1;::::0;53654:66:::1;::::0;-1:-1:-1;;;53654:66:0;;-1:-1:-1;;;;;53692:15:0;;::::1;53654:66;::::0;::::1;9969:51:1::0;10036:18;;;10029:34;;;53577:66:0;;-1:-1:-1;53661:13:0::1;::::0;53654:29:::1;::::0;9942:18:1;;53654:66:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;53731:15:0::1;::::0;-1:-1:-1;;;;;53731:15:0::1;:34;53788:4;53808:9:::0;53731:15:::1;::::0;53866:10:::1;53891:22;:15;53909:4;53891:22;:::i;:::-;53731:194;;;;;;;;;;;;;;;;;;;;:::i;:::-;;::::0;::::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53333:600;;53267:666:::0;:::o;59421:111::-;18987:13;:11;:13::i;:::-;-1:-1:-1;;;;;59490:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;59490:34:0::1;59520:4;59490:34;::::0;;59421:111::o;57230:436::-;57320:7;-1:-1:-1;;;57348:7:0;:18;;57340:62;;;;-1:-1:-1;;;57340:62:0;;12746:2:1;57340:62:0;;;12728:21:1;12785:2;12765:18;;;12758:30;12824:33;12804:18;;;12797:61;12875:18;;57340:62:0;12544:355:1;57340:62:0;57418:17;57413:246;;57453:15;57477:19;57488:7;57477:10;:19::i;:::-;-1:-1:-1;57452:44:0;;-1:-1:-1;57511:14:0;;-1:-1:-1;;;;;57511:14:0;57413:246;57560:23;57591:19;57602:7;57591:10;:19::i;:::-;-1:-1:-1;57558:52:0;;-1:-1:-1;57625:22:0;;-1:-1:-1;;;;;57625:22:0;59666:188;18987:13;:11;:13::i;:::-;59753:2:::1;59747:3;:8;59739:71;;;::::0;-1:-1:-1;;;59739:71:0;;13106:2:1;59739:71:0::1;::::0;::::1;13088:21:1::0;13145:2;13125:18;;;13118:30;13184:34;13164:18;;;13157:62;-1:-1:-1;;;13235:18:1;;;13228:48;13293:19;;59739:71:0::1;12904:414:1::0;59739:71:0::1;59821:19;:25:::0;59666:188::o;60935:126::-;18987:13;:11;:13::i;:::-;61005:15:::1;::::0;60997:56:::1;::::0;-1:-1:-1;;;;;61005:15:0;;::::1;::::0;61031:21:::1;60997:56:::0;::::1;;;::::0;61005:15:::1;60997:56:::0;61005:15;60997:56;61031:21;61005:15;60997:56;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;60935:126::o:0;57935:334::-;18987:13;:11;:13::i;:::-;-1:-1:-1;;;;;58018:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;58017:21;58009:62;;;::::0;-1:-1:-1;;;58009:62:0;;7732:2:1;58009:62:0::1;::::0;::::1;7714:21:1::0;7771:2;7751:18;;;7744:30;7810;7790:18;;;7783:58;7858:18;;58009:62:0::1;7530:352:1::0;58009:62:0::1;-1:-1:-1::0;;;;;58085:16:0;::::1;58104:1;58085:16:::0;;;:7:::1;:16;::::0;;;;;:20;58082:108:::1;;-1:-1:-1::0;;;;;58161:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;58141:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;58122:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;58082:108:::1;-1:-1:-1::0;;;;;58200:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;58200:27:0::1;58223:4;58200:27:::0;;::::1;::::0;;;58238:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;58238:23:0::1;::::0;;::::1;::::0;;57935:334::o;59862:118::-;18987:13;:11;:13::i;:::-;59941:15:::1;:31:::0;;-1:-1:-1;;;;;;59941:31:0::1;-1:-1:-1::0;;;;;59941:31:0;;;::::1;::::0;;;::::1;::::0;;59862:118::o;54323:198::-;-1:-1:-1;;;;;54413:20:0;;54389:7;54413:20;;;:11;:20;;;;;;;;54409:49;;;-1:-1:-1;;;;;;54442:16:0;;;;;:7;:16;;;;;;;54323:198::o;54409:49::-;-1:-1:-1;;;;;54496:16:0;;;;;;:7;:16;;;;;;54476:37;;:19;:37::i;19749:103::-;18987:13;:11;:13::i;:::-;19814:30:::1;19841:1;19814:18;:30::i;:::-;19749:103::o:0;61366:144::-;18987:13;:11;:13::i;:::-;61457:45:::1;::::0;-1:-1:-1;;;;;61457:22:0;::::1;::::0;61480:21:::1;61457:45:::0;::::1;;;::::0;::::1;::::0;;;61480:21;61457:22;:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;56075:185:::0;18987:13;:11;:13::i;:::-;56159:14:::1;:12;:14::i;:::-;56184:42;792:10:::0;56208:9:::1;56219:6;56184:9;:42::i;:::-;56237:15;65331::::0;;65321:7;:25;65373:21;;65357:13;:37;65277:125;60168:122;18987:13;:11;:13::i;:::-;60254::::1;:28:::0;60168:122::o;55571:269::-;55664:4;55681:129;792:10;55704:7;55713:96;55752:15;55713:96;;;;;;;;;;;;;;;;;792:10;55713:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;55713:34:0;;;;;;;;;;;;:38;:96::i;61901:78::-;18987:13;:11;:13::i;:::-;61956:8:::1;:15:::0;;-1:-1:-1;;61956:15:0::1;;;::::0;;61901:78::o;54529:167::-;54607:4;54624:42;792:10;54648:9;54659:6;54624:9;:42::i;61987:171::-;18987:13;:11;:13::i;:::-;62064:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;62064:32:0::1;-1:-1:-1::0;;;;62064:32:0;;::::1;;::::0;;62112:38:::1;::::0;::::1;::::0;::::1;::::0;62088:8;1625:14:1;1618:22;1600:41;;1588:2;1573:18;;1460:187;62112:38:0::1;;;;;;;;61987:171:::0;:::o;51034:917::-;18987:13;:11;:13::i;:::-;51251:18:::1;::::0;-1:-1:-1;;;51251:18:0;::::1;;;51243:68;;;;-1:-1:-1::0;;;51243:68:0::1;;;;;;;:::i;:::-;51324:49;51334:10;51354:4;51361:11;51324:9;:49::i;:::-;51417:15;::::0;51385:62:::1;::::0;51402:4:::1;::::0;-1:-1:-1;;;;;51417:15:0::1;51435:11:::0;51385:8:::1;:62::i;:::-;51532:15;::::0;:210:::1;::::0;-1:-1:-1;;;51532:210:0;;51471:19:::1;::::0;;;;;-1:-1:-1;;;;;51532:15:0::1;::::0;:31:::1;::::0;51571:9:::1;::::0;51532:210:::1;::::0;51604:4:::1;::::0;51624:11;;51650:14;;51679:12;;51706:2;;51723:8;;51532:210:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51470:272;;;;;;51769:21;;51794:1;51769:26:::0;51765:94:::1;;51812:21;:35:::0;;;51765:94:::1;-1:-1:-1::0;;;;;;;;51034:917:0:o;56457:378::-;18987:13;:11;:13::i;:::-;56569:16:::1;56608:35:::0;;::::1;56600:71;;;::::0;-1:-1:-1;;;56600:71:0;;14432:2:1;56600:71:0::1;::::0;::::1;14414:21:1::0;14471:2;14451:18;;;14444:30;14510:25;14490:18;;;14483:53;14553:18;;56600:71:0::1;14230:347:1::0;56600:71:0::1;56688:28:::0;;::::1;56682:146;;;56732:56;56748:10;;56759:8;56748:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56770:7;;56778:8;56770:17;;;;;;;:::i;:::-;;;;;;;56732:15;:56::i;:::-;56803:13;56815:1;56803:13:::0;::::1;:::i;:::-;;;56682:146;;60301:365:::0;18987:13;:11;:13::i;:::-;60419:1:::1;60406:10;:14;:35;;;;;60438:3;60424:10;:17;;60406:35;60398:84;;;::::0;-1:-1:-1;;;60398:84:0;;14784:2:1;60398:84:0::1;::::0;::::1;14766:21:1::0;14823:2;14803:18;;;14796:30;14862:34;14842:18;;;14835:62;-1:-1:-1;;;14913:18:1;;;14906:34;14957:19;;60398:84:0::1;14582:400:1::0;60398:84:0::1;-1:-1:-1::0;;;60583:3:0::1;60555:24;60569:10:::0;60511:20;60555:24:::1;:::i;:::-;60554:32;;;;:::i;:::-;60539:12;:47:::0;-1:-1:-1;;60301:365:0:o;52645:349::-;52728:18;;52700:7;;-1:-1:-1;;;52728:18:0;;;;52720:68;;;;-1:-1:-1;;;52720:68:0;;;;;;;:::i;59544:110::-;18987:13;:11;:13::i;:::-;-1:-1:-1;;;;;59611:27:0::1;59641:5;59611:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;59611:35:0::1;::::0;;59544:110::o;51959:678::-;18987:13;:11;:13::i;:::-;52169:18:::1;::::0;-1:-1:-1;;;52169:18:0;::::1;;;52161:68;;;;-1:-1:-1::0;;;52161:68:0::1;;;;;;;:::i;:::-;52259:13;::::0;52252:72:::1;::::0;-1:-1:-1;;;52252:72:0;;52287:10:::1;52252:72;::::0;::::1;15622:34:1::0;52307:4:0::1;15672:18:1::0;;;15665:43;15724:18;;;15717:34;;;-1:-1:-1;;;;;52259:13:0;;::::1;::::0;52252:34:::1;::::0;15557:18:1;;52252:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;52354:13:0::1;::::0;52385:15:::1;::::0;52347:66:::1;::::0;-1:-1:-1;;;52347:66:0;;-1:-1:-1;;;;;52385:15:0;;::::1;52347:66;::::0;::::1;9969:51:1::0;10036:18;;;10029:34;;;52354:13:0;::::1;::::0;52347:29:::1;::::0;9942:18:1;;52347:66:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;52436:15:0::1;::::0;:193:::1;::::0;-1:-1:-1;;;52436:193:0;;-1:-1:-1;;;;;52436:15:0;;::::1;::::0;:34:::1;::::0;:193:::1;::::0;52493:4:::1;::::0;52513:9;;52537:14;;52566:12;;52593:2;;52610:8;;52436:193:::1;;;:::i;:::-;;::::0;::::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51959:678:::0;;;;;:::o;20007:201::-;18987:13;:11;:13::i;:::-;-1:-1:-1;;;;;20096:22:0;::::1;20088:73;;;::::0;-1:-1:-1;;;20088:73:0;;15964:2:1;20088:73:0::1;::::0;::::1;15946:21:1::0;16003:2;15983:18;;;15976:30;16042:34;16022:18;;;16015:62;-1:-1:-1;;;16093:18:1;;;16086:36;16139:19;;20088:73:0::1;15762:402:1::0;20088:73:0::1;20172:28;20191:8;20172:18;:28::i;19266:132::-:0;19174:6;;-1:-1:-1;;;;;19174:6:0;792:10;19330:23;19322:68;;;;-1:-1:-1;;;19322:68:0;;16371:2:1;19322:68:0;;;16353:21:1;;;16390:18;;;16383:30;16449:34;16429:18;;;16422:62;16501:18;;19322:68:0;16169:356:1;65545:337:0;-1:-1:-1;;;;;65638:19:0;;65630:68;;;;-1:-1:-1;;;65630:68:0;;16732:2:1;65630:68:0;;;16714:21:1;16771:2;16751:18;;;16744:30;16810:34;16790:18;;;16783:62;-1:-1:-1;;;16861:18:1;;;16854:34;16905:19;;65630:68:0;16530:400:1;65630:68:0;-1:-1:-1;;;;;65717:21:0;;65709:68;;;;-1:-1:-1;;;65709:68:0;;17137:2:1;65709:68:0;;;17119:21:1;17176:2;17156:18;;;17149:30;17215:34;17195:18;;;17188:62;-1:-1:-1;;;17266:18:1;;;17259:32;17308:19;;65709:68:0;16935:398:1;65709:68:0;-1:-1:-1;;;;;65790:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;65842:32;;1798:25:1;;;65842:32:0;;1771:18:1;65842:32:0;;;;;;;65545:337;;;:::o;65890:1234::-;-1:-1:-1;;;;;66012:18:0;;66004:68;;;;-1:-1:-1;;;66004:68:0;;17540:2:1;66004:68:0;;;17522:21:1;17579:2;17559:18;;;17552:30;17618:34;17598:18;;;17591:62;-1:-1:-1;;;17669:18:1;;;17662:35;17714:19;;66004:68:0;17338:401:1;66004:68:0;-1:-1:-1;;;;;66091:16:0;;66083:64;;;;-1:-1:-1;;;66083:64:0;;17946:2:1;66083:64:0;;;17928:21:1;17985:2;17965:18;;;17958:30;18024:34;18004:18;;;17997:62;-1:-1:-1;;;18075:18:1;;;18068:33;18118:19;;66083:64:0;17744:399:1;66083:64:0;66175:1;66166:6;:10;66158:64;;;;-1:-1:-1;;;66158:64:0;;18350:2:1;66158:64:0;;;18332:21:1;18389:2;18369:18;;;18362:30;18428:34;18408:18;;;18401:62;-1:-1:-1;;;18479:18:1;;;18472:39;18528:19;;66158:64:0;18148:405:1;66158:64:0;19174:6;;-1:-1:-1;;;;;66236:15:0;;;19174:6;;66236:15;;;;:32;;-1:-1:-1;19174:6:0;;-1:-1:-1;;;;;66255:13:0;;;19174:6;;66255:13;;66236:32;66233:125;;;66301:12;;66291:6;:22;;66283:75;;;;-1:-1:-1;;;66283:75:0;;18760:2:1;66283:75:0;;;18742:21:1;18799:2;18779:18;;;18772:30;18838:34;18818:18;;;18811:62;-1:-1:-1;;;18889:18:1;;;18882:38;18937:19;;66283:75:0;18558:404:1;66283:75:0;66371:28;66402:24;66420:4;66402:9;:24::i;:::-;66371:55;;66437:23;66463:48;66507:3;66463:39;66481:20;;66463:13;-1:-1:-1;;;49111:28:0;54220:95;66463:13;:17;;:39::i;:::-;:43;;:48::i;:::-;66437:74;-1:-1:-1;66552:39:0;;;;;;;;66620:53;;-1:-1:-1;66657:16:0;;-1:-1:-1;;;66657:16:0;;;;66656:17;66620:53;:91;;;;-1:-1:-1;66698:13:0;;-1:-1:-1;;;;;66690:21:0;;;66698:13;;66690:21;;66620:91;:129;;;;-1:-1:-1;66728:21:0;;-1:-1:-1;;;66728:21:0;;;;66620:129;66602:289;;;66799:15;66776:38;;66843:36;66858:20;66843:14;:36::i;:::-;-1:-1:-1;;;;;66965:24:0;;66912:12;66965:24;;;:18;:24;;;;;;66927:4;;66965:24;;;:50;;-1:-1:-1;;;;;;66993:22:0;;;;;;:18;:22;;;;;;;;66965:50;66962:96;;;-1:-1:-1;67041:5:0;66962:96;67078:38;67093:4;67098:2;67101:6;67108:7;67078:14;:38::i;28667:240::-;28787:7;28848:12;28840:6;;;;28832:29;;;;-1:-1:-1;;;28832:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;28883:5:0;;;28667:240::o;63564:163::-;63605:7;63626:15;63643;63662:19;:17;:19::i;:::-;63625:56;;-1:-1:-1;63625:56:0;-1:-1:-1;63699:20:0;63625:56;;27525:98;27583:7;27610:5;27614:1;27610;:5;:::i;26388:98::-;26446:7;26473:5;26477:1;26473;:5;:::i;26769:98::-;26827:7;26854:5;26858:1;26854;:5;:::i;62362:419::-;62421:7;62430;62439;62448;62457;62466;62487:23;62512:12;62526:18;62548:20;62560:7;62548:11;:20::i;:::-;62486:82;;;;;;62580:15;62597:23;62622:12;62638:50;62650:7;62659:4;62665:10;62677;:8;:10::i;:::-;62638:11;:50::i;:::-;62579:109;;;;-1:-1:-1;62579:109:0;;-1:-1:-1;62739:15:0;;-1:-1:-1;62756:4:0;;-1:-1:-1;62762:10:0;;-1:-1:-1;62362:419:0;;-1:-1:-1;;;;;62362:419:0:o;20368:191::-;20461:6;;;-1:-1:-1;;;;;20478:17:0;;;-1:-1:-1;;;;;;20478:17:0;;;;;;;20511:40;;20461:6;;;20478:17;20461:6;;20511:40;;20442:16;;20511:40;20431:128;20368:191;:::o;65015:250::-;65061:7;;:12;:34;;;;-1:-1:-1;65077:13:0;;:18;65061:34;65058:46;;;65015:250::o;65058:46::-;65142:7;;;65124:15;:25;65184:13;;;65160:21;:37;-1:-1:-1;65218:11:0;;;;65240:17;65015:250::o;27126:98::-;27184:7;27211:5;27215:1;27211;:5;:::i;67132:670::-;50441:16;:23;;-1:-1:-1;;;;50441:23:0;-1:-1:-1;;;50441:23:0;;;67240:20;67296:21:::1;67363:30;67240:20:::0;67363:16:::1;:30::i;:::-;67406:18;67427:41;:21;67453:14:::0;67427:25:::1;:41::i;:::-;67406:62;;67479:22;67504:44;67544:3;67504:35;67519:19;;67504:10;:14;;:35;;;;:::i;:44::-;67567:15;::::0;67559:49:::1;::::0;67479:69;;-1:-1:-1;;;;;;67567:15:0::1;::::0;67559:49;::::1;;;::::0;67479:69;;67567:15:::1;67559:49:::0;67567:15;67559:49;67479:69;67567:15;67559:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;67619:28:0::1;67633:14:::0;67619:28;::::1;:::i;:::-;;;67695:38;67708:12;67722:10;67695:12;:38::i;:::-;67751:43;::::0;;19177:25:1;;;19233:2;19218:18;;19211:34;;;-1:-1:-1;19261:18:1;;;19254:34;67751:43:0;;::::1;::::0;;;;19165:2:1;67751:43:0;;::::1;-1:-1:-1::0;;50487:16:0;:24;;-1:-1:-1;;;;50487:24:0;;;-1:-1:-1;;;67132:670:0:o;68667:905::-;68778:8;;;;;;;68774:67;;19174:6;;-1:-1:-1;;;;;68810:17:0;;;19174:6;;68810:17;68802:26;;;;;;-1:-1:-1;;;;;68864:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;68886:21:0;;;;;;:10;:21;;;;;;;;68864:43;68861:126;;;68931:12;;;;68923:52;;;;-1:-1:-1;;;68923:52:0;;19501:2:1;68923:52:0;;;19483:21:1;19540:2;19520:18;;;19513:30;19579:29;19559:18;;;19552:57;19626:18;;68923:52:0;19299:351:1;68923:52:0;69011:7;69007:40;;69033:14;:12;:14::i;:::-;-1:-1:-1;;;;;69072:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;69096:22:0;;;;;;:11;:22;;;;;;;;69095:23;69072:46;69068:435;;;69131:48;69153:6;69161:9;69172:6;69131:21;:48::i;:::-;69068:435;;;-1:-1:-1;;;;;69198:19:0;;;;;;:11;:19;;;;;;;;69197:20;:46;;;;-1:-1:-1;;;;;;69221:22:0;;;;;;:11;:22;;;;;;;;69197:46;69193:310;;;69256:46;69276:6;69284:9;69295:6;69256:19;:46::i;69193:310::-;-1:-1:-1;;;;;69320:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;69343:22:0;;;;;;:11;:22;;;;;;;;69320:45;69316:187;;;69378:48;69400:6;69408:9;69419:6;69378:21;:48::i;69316:187::-;69451:44;69469:6;69477:9;69488:6;69451:17;:44::i;:::-;69527:7;69523:41;;69549:15;65331;;65321:7;:25;65373:21;;65357:13;:37;65277:125;69549:15;68667:905;;;;:::o;63735:561::-;63832:7;;63785;;;;-1:-1:-1;;;63785:7:0;63892:289;63916:9;:16;63912:20;;63892:289;;;63982:7;63958;:21;63966:9;63976:1;63966:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;63966:12:0;63958:21;;;;;;;;;;;;;:31;;:66;;;64017:7;63993;:21;64001:9;64011:1;64001:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;64001:12:0;63993:21;;;;;;;;;;;;;:31;63958:66;63954:97;;;-1:-1:-1;;64034:7:0;;;-1:-1:-1;;;49111:28:0;-1:-1:-1;63735:561:0;-1:-1:-1;;63735:561:0:o;63954:97::-;64076:34;64088:7;:21;64096:9;64106:1;64096:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;64096:12:0;64088:21;;;;;;;;;;;;;64076:7;;:11;:34::i;:::-;64066:44;;64135:34;64147:7;:21;64155:9;64165:1;64155:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;64155:12:0;64147:21;;;;;;;;;;;;;64135:7;;:11;:34::i;:::-;64125:44;-1:-1:-1;63934:3:0;;;;:::i;:::-;;;;63892:289;;;-1:-1:-1;64205:7:0;;:20;;-1:-1:-1;;;64205:11:0;:20::i;:::-;64195:7;:30;64191:61;;;-1:-1:-1;;64235:7:0;;;-1:-1:-1;;;49111:28:0;-1:-1:-1;63735:561:0;-1:-1:-1;63735:561:0:o;64191:61::-;64271:7;;64280;;-1:-1:-1;63735:561:0;-1:-1:-1;63735:561:0:o;62789:330::-;62849:7;62858;62867;62887:12;62902:24;62918:7;62902:15;:24::i;:::-;62887:39;;62937:18;62958:30;62980:7;62958:21;:30::i;:::-;62937:51;-1:-1:-1;62999:23:0;63025:33;62937:51;63025:17;:7;63037:4;63025:11;:17::i;:::-;:21;;:33::i;:::-;62999:59;63094:4;;-1:-1:-1;63100:10:0;;-1:-1:-1;62789:330:0;;-1:-1:-1;;;62789:330:0:o;63127:429::-;63242:7;;;;63298:24;:7;63310:11;63298;:24::i;:::-;63280:42;-1:-1:-1;63333:12:0;63348:21;:4;63357:11;63348:8;:21::i;:::-;63333:36;-1:-1:-1;63380:18:0;63401:27;:10;63416:11;63401:14;:27::i;:::-;63380:48;-1:-1:-1;63439:23:0;63465:33;63380:48;63465:17;:7;63477:4;63465:11;:17::i;:33::-;63517:7;;;;-1:-1:-1;63543:4:0;;-1:-1:-1;63127:429:0;;-1:-1:-1;;;;;;;63127:429:0:o;67810:476::-;67900:16;;;67914:1;67900:16;;;;;;;;67876:21;;67900:16;;;;;;;;;;-1:-1:-1;67900:16:0;67876:40;;67945:4;67927;67932:1;67927:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;67927:23:0;;;:7;;;;;;;;;;:23;;;;67971:15;;:22;;;-1:-1:-1;;;67971:22:0;;;;:15;;;;;:20;;:22;;;;;67927:7;;67971:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67961:4;67966:1;67961:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;67961:32:0;;;:7;;;;;;;;;:32;68038:15;;68006:62;;68023:4;;68038:15;68056:11;68006:8;:62::i;:::-;68081:15;;:197;;-1:-1:-1;;;68081:197:0;;-1:-1:-1;;;;;68081:15:0;;;;:66;;:197;;68162:11;;68081:15;;68205:4;;68232;;68252:15;;68081:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67865:421;67810:476;:::o;68294:364::-;68407:15;;68375:62;;68392:4;;-1:-1:-1;;;;;68407:15:0;68425:11;68375:8;:62::i;:::-;68450:15;;-1:-1:-1;;;;;68450:15:0;:31;68489:9;68522:4;68542:11;68450:15;;68602:7;19174:6;;-1:-1:-1;;;;;19174:6:0;;19101:87;68602:7;68624:15;68450:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;70684:566::-;70787:15;70804:23;70829:12;70843:23;70868:12;70882:18;70904:19;70915:7;70904:10;:19::i;:::-;-1:-1:-1;;;;;70952:15:0;;;;;;:7;:15;;;;;;70786:137;;-1:-1:-1;70786:137:0;;-1:-1:-1;70786:137:0;;-1:-1:-1;70786:137:0;-1:-1:-1;70786:137:0;-1:-1:-1;70786:137:0;-1:-1:-1;70952:28:0;;70972:7;70952:19;:28::i;:::-;-1:-1:-1;;;;;70934:15:0;;;;;;:7;:15;;;;;;;;:46;;;;71009:7;:15;;;;:28;;71029:7;71009:19;:28::i;:::-;-1:-1:-1;;;;;70991:15:0;;;;;;;:7;:15;;;;;;:46;;;;71069:18;;;;;;;:39;;71092:15;71069:22;:39::i;:::-;-1:-1:-1;;;;;71048:18:0;;;;;;:7;:18;;;;;:60;71122:26;71137:10;71122:14;:26::i;:::-;71159:23;71171:4;71177;71159:11;:23::i;:::-;71215:9;-1:-1:-1;;;;;71198:44:0;71207:6;-1:-1:-1;;;;;71198:44:0;;71226:15;71198:44;;;;1798:25:1;;1786:2;1771:18;;1652:177;71198:44:0;;;;;;;;70775:475;;;;;;70684:566;;;:::o;70090:586::-;70191:15;70208:23;70233:12;70247:23;70272:12;70286:18;70308:19;70319:7;70308:10;:19::i;:::-;-1:-1:-1;;;;;70356:15:0;;;;;;:7;:15;;;;;;70190:137;;-1:-1:-1;70190:137:0;;-1:-1:-1;70190:137:0;;-1:-1:-1;70190:137:0;-1:-1:-1;70190:137:0;-1:-1:-1;70190:137:0;-1:-1:-1;70356:28:0;;70190:137;70356:19;:28::i;:::-;-1:-1:-1;;;;;70338:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;70416:18;;;;;:7;:18;;;;;:39;;70439:15;70416:22;:39::i;:::-;-1:-1:-1;;;;;70395:18:0;;;;;;:7;:18;;;;;;;;:60;;;;70487:7;:18;;;;:39;;70510:15;70487:22;:39::i;58767:642::-;58870:15;58887:23;58912:12;58926:23;58951:12;58965:18;58987:19;58998:7;58987:10;:19::i;:::-;-1:-1:-1;;;;;59035:15:0;;;;;;:7;:15;;;;;;58869:137;;-1:-1:-1;58869:137:0;;-1:-1:-1;58869:137:0;;-1:-1:-1;58869:137:0;-1:-1:-1;58869:137:0;-1:-1:-1;58869:137:0;-1:-1:-1;59035:28:0;;59055:7;59035:19;:28::i;:::-;-1:-1:-1;;;;;59017:15:0;;;;;;:7;:15;;;;;;;;:46;;;;59092:7;:15;;;;:28;;59112:7;59092:19;:28::i;69580:502::-;69679:15;69696:23;69721:12;69735:23;69760:12;69774:18;69796:19;69807:7;69796:10;:19::i;:::-;-1:-1:-1;;;;;69844:15:0;;;;;;:7;:15;;;;;;69678:137;;-1:-1:-1;69678:137:0;;-1:-1:-1;69678:137:0;;-1:-1:-1;69678:137:0;-1:-1:-1;69678:137:0;-1:-1:-1;69678:137:0;-1:-1:-1;69844:28:0;;69678:137;69844:19;:28::i;64675:154::-;64739:7;64766:55;64805:5;64766:20;64778:7;;64766;:11;;:20;;;;:::i;64837:166::-;64907:7;64934:61;64979:5;64934:26;64946:13;;64934:7;:11;;:26;;;;:::i;64308:355::-;64371:19;64394:10;:8;:10::i;:::-;64371:33;-1:-1:-1;64415:18:0;64436:27;:10;64371:33;64436:14;:27::i;:::-;64515:4;64499:22;;;;:7;:22;;;;;;64415:48;;-1:-1:-1;64499:38:0;;64415:48;64499:26;:38::i;:::-;64490:4;64474:22;;;;:7;:22;;;;;;;;:63;;;;64551:11;:26;;;;;;64548:107;;;64633:4;64617:22;;;;:7;:22;;;;;;:38;;64644:10;64617:26;:38::i;:::-;64608:4;64592:22;;;;:7;:22;;;;;:63;64360:303;;64308:355;:::o;62207:147::-;62285:7;;:17;;62297:4;62285:11;:17::i;:::-;62275:7;:27;62326:10;;:20;;62341:4;62326:14;:20::i;:::-;62313:10;:33;-1:-1:-1;;62207:147:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:180::-;461:6;514:2;502:9;493:7;489:23;485:32;482:52;;;530:1;527;520:12;482:52;-1:-1:-1;553:23:1;;402:180;-1:-1:-1;402:180:1:o;587:548::-;699:4;728:2;757;746:9;739:21;789:6;783:13;832:6;827:2;816:9;812:18;805:34;857:1;867:140;881:6;878:1;875:13;867:140;;;976:14;;;972:23;;966:30;942:17;;;961:2;938:26;931:66;896:10;;867:140;;;871:3;1056:1;1051:2;1042:6;1031:9;1027:22;1023:31;1016:42;1126:2;1119;1115:7;1110:2;1102:6;1098:15;1094:29;1083:9;1079:45;1075:54;1067:62;;;;587:548;;;;:::o;1140:315::-;1208:6;1216;1269:2;1257:9;1248:7;1244:23;1240:32;1237:52;;;1285:1;1282;1275:12;1237:52;1324:9;1311:23;1343:31;1368:5;1343:31;:::i;:::-;1393:5;1445:2;1430:18;;;;1417:32;;-1:-1:-1;;;1140:315:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2719:401::-;2800:6;2808;2861:2;2849:9;2840:7;2836:23;2832:32;2829:52;;;2877:1;2874;2867:12;2829:52;2916:9;2903:23;2935:31;2960:5;2935:31;:::i;:::-;2985:5;-1:-1:-1;3042:2:1;3027:18;;3014:32;3055:33;3014:32;3055:33;:::i;:::-;3107:7;3097:17;;;2719:401;;;;;:::o;3125:118::-;3211:5;3204:13;3197:21;3190:5;3187:32;3177:60;;3233:1;3230;3223:12;3248:309;3313:6;3321;3374:2;3362:9;3353:7;3349:23;3345:32;3342:52;;;3390:1;3387;3380:12;3342:52;3426:9;3413:23;3403:33;;3486:2;3475:9;3471:18;3458:32;3499:28;3521:5;3499:28;:::i;4030:241::-;4086:6;4139:2;4127:9;4118:7;4114:23;4110:32;4107:52;;;4155:1;4152;4145:12;4107:52;4194:9;4181:23;4213:28;4235:5;4213:28;:::i;4276:521::-;4371:6;4379;4387;4395;4403;4456:3;4444:9;4435:7;4431:23;4427:33;4424:53;;;4473:1;4470;4463:12;4424:53;4509:9;4496:23;4486:33;;4566:2;4555:9;4551:18;4538:32;4528:42;;4617:2;4606:9;4602:18;4589:32;4579:42;;4671:2;4660:9;4656:18;4643:32;4684:31;4709:5;4684:31;:::i;:::-;4276:521;;;;-1:-1:-1;4276:521:1;;4786:3;4771:19;4758:33;;4276:521;-1:-1:-1;;4276:521:1:o;4802:367::-;4865:8;4875:6;4929:3;4922:4;4914:6;4910:17;4906:27;4896:55;;4947:1;4944;4937:12;4896:55;-1:-1:-1;4970:20:1;;5013:18;5002:30;;4999:50;;;5045:1;5042;5035:12;4999:50;5082:4;5074:6;5070:17;5058:29;;5142:3;5135:4;5125:6;5122:1;5118:14;5110:6;5106:27;5102:38;5099:47;5096:67;;;5159:1;5156;5149:12;5096:67;4802:367;;;;;:::o;5174:773::-;5296:6;5304;5312;5320;5373:2;5361:9;5352:7;5348:23;5344:32;5341:52;;;5389:1;5386;5379:12;5341:52;5429:9;5416:23;5458:18;5499:2;5491:6;5488:14;5485:34;;;5515:1;5512;5505:12;5485:34;5554:70;5616:7;5607:6;5596:9;5592:22;5554:70;:::i;:::-;5643:8;;-1:-1:-1;5528:96:1;-1:-1:-1;5731:2:1;5716:18;;5703:32;;-1:-1:-1;5747:16:1;;;5744:36;;;5776:1;5773;5766:12;5744:36;;5815:72;5879:7;5868:8;5857:9;5853:24;5815:72;:::i;:::-;5174:773;;;;-1:-1:-1;5906:8:1;-1:-1:-1;;;;5174:773:1:o;7887:127::-;7948:10;7943:3;7939:20;7936:1;7929:31;7979:4;7976:1;7969:15;8003:4;8000:1;7993:15;8019:127;8080:10;8075:3;8071:20;8068:1;8061:31;8111:4;8108:1;8101:15;8135:4;8132:1;8125:15;8151:128;8218:9;;;8239:11;;;8236:37;;;8253:18;;:::i;8284:127::-;8345:10;8340:3;8336:20;8333:1;8326:31;8376:4;8373:1;8366:15;8400:4;8397:1;8390:15;8416:135;8455:3;8476:17;;;8473:43;;8496:18;;:::i;:::-;-1:-1:-1;8543:1:1;8532:13;;8416:135::o;8556:188::-;8635:13;;-1:-1:-1;;;;;8677:42:1;;8667:53;;8657:81;;8734:1;8731;8724:12;8657:81;8556:188;;;:::o;8749:450::-;8836:6;8844;8852;8905:2;8893:9;8884:7;8880:23;8876:32;8873:52;;;8921:1;8918;8911:12;8873:52;8944:40;8974:9;8944:40;:::i;:::-;8934:50;;9003:49;9048:2;9037:9;9033:18;9003:49;:::i;:::-;8993:59;;9095:2;9084:9;9080:18;9074:25;9139:10;9132:5;9128:22;9121:5;9118:33;9108:61;;9165:1;9162;9155:12;9108:61;9188:5;9178:15;;;8749:450;;;;;:::o;9606:184::-;9676:6;9729:2;9717:9;9708:7;9704:23;9700:32;9697:52;;;9745:1;9742;9735:12;9697:52;-1:-1:-1;9768:16:1;;9606:184;-1:-1:-1;9606:184:1:o;10074:245::-;10141:6;10194:2;10182:9;10173:7;10169:23;10165:32;10162:52;;;10210:1;10207;10200:12;10162:52;10242:9;10236:16;10261:28;10283:5;10261:28;:::i;10737:401::-;10939:2;10921:21;;;10978:2;10958:18;;;10951:30;11017:34;11012:2;10997:18;;10990:62;-1:-1:-1;;;11083:2:1;11068:18;;11061:35;11128:3;11113:19;;10737:401::o;11552:125::-;11617:9;;;11638:10;;;11635:36;;;11651:18;;:::i;11682:607::-;-1:-1:-1;;;;;12041:15:1;;;12023:34;;12088:2;12073:18;;12066:34;;;;12131:2;12116:18;;12109:34;;;;12174:2;12159:18;;12152:34;;;;12223:15;;;12217:3;12202:19;;12195:44;12003:3;12255:19;;12248:35;;;;11972:3;11957:19;;11682:607::o;12294:245::-;12373:6;12381;12434:2;12422:9;12413:7;12409:23;12405:32;12402:52;;;12450:1;12447;12440:12;12402:52;-1:-1:-1;;12473:16:1;;12529:2;12514:18;;;12508:25;12473:16;;12508:25;;-1:-1:-1;12294:245:1:o;13919:306::-;14007:6;14015;14023;14076:2;14064:9;14055:7;14051:23;14047:32;14044:52;;;14092:1;14089;14082:12;14044:52;14121:9;14115:16;14105:26;;14171:2;14160:9;14156:18;14150:25;14140:35;;14215:2;14204:9;14200:18;14194:25;14184:35;;13919:306;;;;;:::o;14987:168::-;15060:9;;;15091;;15108:15;;;15102:22;;15088:37;15078:71;;15129:18;;:::i;15160:217::-;15200:1;15226;15216:132;;15270:10;15265:3;15261:20;15258:1;15251:31;15305:4;15302:1;15295:15;15333:4;15330:1;15323:15;15216:132;-1:-1:-1;15362:9:1;;15160:217::o;19787:251::-;19857:6;19910:2;19898:9;19889:7;19885:23;19881:32;19878:52;;;19926:1;19923;19916:12;19878:52;19958:9;19952:16;19977:31;20002:5;19977:31;:::i;20043:980::-;20305:4;20353:3;20342:9;20338:19;20384:6;20373:9;20366:25;20410:2;20448:6;20443:2;20432:9;20428:18;20421:34;20491:3;20486:2;20475:9;20471:18;20464:31;20515:6;20550;20544:13;20581:6;20573;20566:22;20619:3;20608:9;20604:19;20597:26;;20658:2;20650:6;20646:15;20632:29;;20679:1;20689:195;20703:6;20700:1;20697:13;20689:195;;;20768:13;;-1:-1:-1;;;;;20764:39:1;20752:52;;20859:15;;;;20824:12;;;;20800:1;20718:9;20689:195;;;-1:-1:-1;;;;;;;20940:32:1;;;;20935:2;20920:18;;20913:60;-1:-1:-1;;;21004:3:1;20989:19;20982:35;20901:3;20043:980;-1:-1:-1;;;20043:980:1:o
Swarm Source
ipfs://6263de8d8a175518772009f11d356e5a776af88df821aa3e72340a027949c344
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.