Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 29 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Update Swap Enab... | 17773806 | 960 days ago | IN | 0 ETH | 0.00054533 | ||||
| Approve | 17773677 | 960 days ago | IN | 0 ETH | 0.00091232 | ||||
| Enable Trading | 17773623 | 960 days ago | IN | 0 ETH | 0.00105911 | ||||
| Approve | 17773492 | 960 days ago | IN | 0 ETH | 0.00109935 | ||||
| Transfer | 17773455 | 960 days ago | IN | 0 ETH | 0.00139152 | ||||
| Transfer | 17773451 | 960 days ago | IN | 0 ETH | 0.001312 | ||||
| Transfer | 17773448 | 960 days ago | IN | 0 ETH | 0.0013731 | ||||
| Transfer | 17773444 | 960 days ago | IN | 0 ETH | 0.00137838 | ||||
| Transfer | 17773441 | 960 days ago | IN | 0 ETH | 0.00147837 | ||||
| Transfer | 17773438 | 960 days ago | IN | 0 ETH | 0.00157306 | ||||
| Transfer | 17773406 | 960 days ago | IN | 0 ETH | 0.00182528 | ||||
| Transfer | 17773398 | 960 days ago | IN | 0 ETH | 0.00181895 | ||||
| Transfer | 17773394 | 960 days ago | IN | 0 ETH | 0.00186921 | ||||
| Transfer | 17773388 | 960 days ago | IN | 0 ETH | 0.00207531 | ||||
| Transfer | 17773383 | 960 days ago | IN | 0 ETH | 0.0017333 | ||||
| Transfer | 17773372 | 960 days ago | IN | 0 ETH | 0.00183076 | ||||
| Transfer | 17773361 | 960 days ago | IN | 0 ETH | 0.00197369 | ||||
| Transfer | 17773352 | 960 days ago | IN | 0 ETH | 0.00197066 | ||||
| Transfer | 17773347 | 960 days ago | IN | 0 ETH | 0.00192019 | ||||
| Transfer | 17773342 | 960 days ago | IN | 0 ETH | 0.00189271 | ||||
| Transfer | 17773338 | 960 days ago | IN | 0 ETH | 0.00197562 | ||||
| Transfer | 17773330 | 960 days ago | IN | 0 ETH | 0.00187396 | ||||
| Transfer | 17773326 | 960 days ago | IN | 0 ETH | 0.0019753 | ||||
| Transfer | 17773320 | 960 days ago | IN | 0 ETH | 0.00211161 | ||||
| Transfer | 17773316 | 960 days ago | IN | 0 ETH | 0.00225632 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 4 internal transactions
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SUS
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-07-25
*/
/**
* https://twitter.com/suscoineth
* https://t.me/susportal
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
/* pragma solidity ^0.8.0; */
/* import "../utils/Context.sol"; */
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
/* pragma solidity ^0.8.0; */
/* import "../IERC20.sol"; */
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
/* pragma solidity ^0.8.0; */
/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)
/* pragma solidity ^0.8.0; */
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Pair {
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
event Transfer(address indexed from, address indexed to, uint256 value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint256);
function balanceOf(address owner) external view returns (uint256);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint256);
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
event Burn(
address indexed sender,
uint256 amount0,
uint256 amount1,
address indexed to
);
event Swap(
address indexed sender,
uint256 amount0In,
uint256 amount1In,
uint256 amount0Out,
uint256 amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint256);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves()
external
view
returns (
uint112 reserve0,
uint112 reserve1,
uint32 blockTimestampLast
);
function price0CumulativeLast() external view returns (uint256);
function price1CumulativeLast() external view returns (uint256);
function kLast() external view returns (uint256);
function mint(address to) external returns (uint256 liquidity);
function burn(address to)
external
returns (uint256 amount0, uint256 amount1);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
/* pragma solidity >=0.8.10; */
/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */
contract SUS is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
bool private swapping;
address public marketingWallet;
address public devWallet;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
uint256 public percentForLPBurn = 25; // 25 = .25%
bool public lpBurnEnabled = true;
uint256 public lpBurnFrequency = 3600 seconds;
uint256 public lastLpBurnTime;
uint256 public manualBurnFrequency = 30 minutes;
uint256 public lastManualLpBurnTime;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
// Anti-bot and anti-whale mappings and variables
mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
bool public transferDelayEnabled = true;
uint256 public buyTotalFees;
uint256 public buyMarketingFee;
uint256 public buyLiquidityFee;
uint256 public buyDevFee;
uint256 public sellTotalFees;
uint256 public sellMarketingFee;
uint256 public sellLiquidityFee;
uint256 public sellDevFee;
uint256 public tokensForMarketing;
uint256 public tokensForLiquidity;
uint256 public tokensForDev;
/******************/
// deadblock
uint256 public deadBlock;
uint256 public constant feeDuration = 13;
bool public isFeeUpdated = false;
/******************/
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping(address => bool) public automatedMarketMakerPairs;
event UpdateUniswapV2Router(
address indexed newAddress,
address indexed oldAddress
);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event marketingWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event devWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
event AutoNukeLP();
event ManualNukeLP();
constructor() ERC20("SUS", unicode"SUS") {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
excludeFromMaxTransaction(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
uint256 _buyMarketingFee = 0;
uint256 _buyLiquidityFee = 1;
uint256 _buyDevFee = 99;
uint256 _sellMarketingFee = 0;
uint256 _sellLiquidityFee = 1;
uint256 _sellDevFee = 99;
uint256 totalSupply = 1_000_000_000 * 1e18;
maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
maxWallet = 20_000_000 * 1e18; // 3% from total supply maxWallet
swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet
buyMarketingFee = _buyMarketingFee;
buyLiquidityFee = _buyLiquidityFee;
buyDevFee = _buyDevFee;
buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
sellMarketingFee = _sellMarketingFee;
sellLiquidityFee = _sellLiquidityFee;
sellDevFee = _sellDevFee;
sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
marketingWallet = address(0xaDAD207d675342981f4cb1403776282Ec2c5b6a5); // set as marketing wallet
devWallet = address(0xBF58D40a0e139cCBf0e1f2f13b31Af7508986CB4); // set as dev wallet
deadBlock = block.number; // set the initial deadblock
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(0xdead), true);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(msg.sender, totalSupply);
}
receive() external payable {}
// once enabled, can never be turned off
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
lastLpBurnTime = block.timestamp;
}
// remove limits after token is stable
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
// disable Transfer delay - cannot be reenabled
function disableTransferDelay() external onlyOwner returns (bool) {
transferDelayEnabled = false;
return true;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount)
external
onlyOwner
returns (bool)
{
require(
newAmount >= (totalSupply() * 1) / 100000,
"Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 5) / 1000,
"Swap amount cannot be higher than 0.5% total supply."
);
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 1) / 1000) / 1e18,
"Cannot set maxTransactionAmount lower than 0.1%"
);
maxTransactionAmount = newNum * (10**18);
}
function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 5) / 1000) / 1e18,
"Cannot set maxWallet lower than 0.5%"
);
maxWallet = newNum * (10**18);
}
function excludeFromMaxTransaction(address updAds, bool isEx)
public
onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
function updateBuyFees(
uint256 _marketingFee,
uint256 _liquidityFee,
uint256 _devFee
) external onlyOwner {
isFeeUpdated = true;
buyMarketingFee = _marketingFee;
buyLiquidityFee = _liquidityFee;
buyDevFee = _devFee;
buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
require(buyTotalFees <= 20, "Must keep fees at 20% or less");
}
function updateSellFees(
uint256 _marketingFee,
uint256 _liquidityFee,
uint256 _devFee
) external onlyOwner {
isFeeUpdated = true;
sellMarketingFee = _marketingFee;
sellLiquidityFee = _liquidityFee;
sellDevFee = _devFee;
sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
require(sellTotalFees <= 20, "Must keep fees at 20% or less");
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function setAutomatedMarketMakerPair(address pair, bool value)
public
onlyOwner
{
require(
pair != uniswapV2Pair,
"The pair cannot be removed from automatedMarketMakerPairs"
);
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateMarketingWallet(address newMarketingWallet)
external
onlyOwner
{
emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
marketingWallet = newMarketingWallet;
}
function updateDevWallet(address newWallet) external onlyOwner {
emit devWalletUpdated(newWallet, devWallet);
devWallet = newWallet;
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
event BoughtEarly(address indexed sniper);
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
if (transferDelayEnabled) {
if (
to != owner() &&
to != address(uniswapV2Router) &&
to != address(uniswapV2Pair)
) {
require(
_holderLastTransferTimestamp[tx.origin] <
block.number,
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
);
_holderLastTransferTimestamp[tx.origin] = block.number;
}
}
//when buy
if (
automatedMarketMakerPairs[from] &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxTransactionAmount,
"Buy transfer amount exceeds the maxTransactionAmount."
);
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] &&
!_isExcludedMaxTransactionAmount[from]
) {
require(
amount <= maxTransactionAmount,
"Sell transfer amount exceeds the maxTransactionAmount."
);
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
if (
!swapping &&
automatedMarketMakerPairs[to] &&
lpBurnEnabled &&
block.timestamp >= lastLpBurnTime + lpBurnFrequency &&
!_isExcludedFromFees[from]
) {
autoBurnLiquidityPairTokens();
}
bool takeFee = !swapping;
// set deadblock when add initial lp
if(automatedMarketMakerPairs[to] && from == owner()){
deadBlock = block.number;
}
// check if we are in a fee period and adjust fee accordingly
if(!isFeeUpdated){
// until fee is updated
if (block.number >= (deadBlock + feeDuration)) {
buyMarketingFee = 0;
buyLiquidityFee = 1;
buyDevFee = 29;
buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
sellMarketingFee = 0;
sellLiquidityFee = 1;
sellDevFee = 98;
sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
}
}
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
tokensForDev += (fees * sellDevFee) / sellTotalFees;
tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
tokensForDev += (fees * buyDevFee) / buyTotalFees;
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
deadAddress,
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity +
tokensForMarketing +
tokensForDev;
bool success;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
// Halve the amount of liquidity tokens
uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
totalTokensToSwap /
2;
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
totalTokensToSwap
);
uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
tokensForLiquidity = 0;
tokensForMarketing = 0;
tokensForDev = 0;
(success, ) = address(devWallet).call{value: ethForDev}("");
if (liquidityTokens > 0 && ethForLiquidity > 0) {
addLiquidity(liquidityTokens, ethForLiquidity);
emit SwapAndLiquify(
amountToSwapForETH,
ethForLiquidity,
tokensForLiquidity
);
}
(success, ) = address(marketingWallet).call{
value: address(this).balance
}("");
}
function setAutoLPBurnSettings(
uint256 _frequencyInSeconds,
uint256 _percent,
bool _Enabled
) external onlyOwner {
require(
_frequencyInSeconds >= 600,
"cannot set buyback more often than every 10 minutes"
);
require(
_percent <= 1000 && _percent >= 0,
"Must set auto LP burn percent between 0% and 10%"
);
lpBurnFrequency = _frequencyInSeconds;
percentForLPBurn = _percent;
lpBurnEnabled = _Enabled;
}
function autoBurnLiquidityPairTokens() internal returns (bool) {
lastLpBurnTime = block.timestamp;
// get balance of liquidity pair
uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
// calculate amount to burn
uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
10000
);
// pull tokens from pancakePair liquidity and move to dead address permanently
if (amountToBurn > 0) {
super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
}
//sync price since this is not in a swap transaction!
IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
pair.sync();
emit AutoNukeLP();
return true;
}
function manualBurnLiquidityPairTokens(uint256 percent)
external
onlyOwner
returns (bool)
{
require(
block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
"Must wait for cooldown to finish"
);
require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
lastManualLpBurnTime = block.timestamp;
// get balance of liquidity pair
uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
// calculate amount to burn
uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);
// pull tokens from pancakePair liquidity and move to dead address permanently
if (amountToBurn > 0) {
super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
}
//sync price since this is not in a swap transaction!
IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
pair.sync();
emit ManualNukeLP();
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeUpdated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff0219169083151502179055506000602060006101000a81548160ff021916908315150217905550348015620000c457600080fd5b506040518060400160405280600381526020017f53555300000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f535553000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200014992919062000b37565b5080600490805190602001906200016292919062000b37565b5050506200018562000179620005f760201b60201c565b620005ff60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001b1816001620006c560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000231573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000257919062000c51565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002bf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e5919062000c51565b6040518363ffffffff1660e01b81526004016200030492919062000c94565b6020604051808303816000875af115801562000324573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034a919062000c51565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200039260a0516001620006c560201b60201c565b620003a760a0516001620007af60201b60201c565b600080600190506000606390506000806001905060006063905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a8262000408919062000cfa565b62000414919062000d8a565b60098190555086601581905550856016819055508460178190555060175460165460155462000444919062000dc2565b62000450919062000dc2565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000480919062000dc2565b6200048c919062000dc2565b60188190555073adad207d675342981f4cb1403776282ec2c5b6a5600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bf58d40a0e139ccbf0e1f2f13b31af7508986cb4600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043601f8190555062000565620005576200085060201b60201c565b60016200087a60201b60201c565b620005783060016200087a60201b60201c565b6200058d61dead60016200087a60201b60201c565b620005af620005a16200085060201b60201c565b6001620006c560201b60201c565b620005c2306001620006c560201b60201c565b620005d761dead6001620006c560201b60201c565b620005e93382620009b460201b60201c565b505050505050505062000fe1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006d5620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006fb6200085060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000754576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074b9062000e80565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200088a620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008b06200085060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000909576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009009062000e80565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009a8919062000ebf565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a1e9062000f2c565b60405180910390fd5b62000a3b6000838362000b2d60201b60201c565b806002600082825462000a4f919062000dc2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000aa6919062000dc2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b0d919062000f5f565b60405180910390a362000b296000838362000b3260201b60201c565b5050565b505050565b505050565b82805462000b459062000fab565b90600052602060002090601f01602090048101928262000b69576000855562000bb5565b82601f1062000b8457805160ff191683800117855562000bb5565b8280016001018555821562000bb5579182015b8281111562000bb457825182559160200191906001019062000b97565b5b50905062000bc4919062000bc8565b5090565b5b8082111562000be357600081600090555060010162000bc9565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c198262000bec565b9050919050565b62000c2b8162000c0c565b811462000c3757600080fd5b50565b60008151905062000c4b8162000c20565b92915050565b60006020828403121562000c6a5762000c6962000be7565b5b600062000c7a8482850162000c3a565b91505092915050565b62000c8e8162000c0c565b82525050565b600060408201905062000cab600083018562000c83565b62000cba602083018462000c83565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d078262000cc1565b915062000d148362000cc1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d505762000d4f62000ccb565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d978262000cc1565b915062000da48362000cc1565b92508262000db75762000db662000d5b565b5b828204905092915050565b600062000dcf8262000cc1565b915062000ddc8362000cc1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e145762000e1362000ccb565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e6860208362000e1f565b915062000e758262000e30565b602082019050919050565b6000602082019050818103600083015262000e9b8162000e59565b9050919050565b60008115159050919050565b62000eb98162000ea2565b82525050565b600060208201905062000ed6600083018462000eae565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f14601f8362000e1f565b915062000f218262000edc565b602082019050919050565b6000602082019050818103600083015262000f478162000f05565b9050919050565b62000f598162000cc1565b82525050565b600060208201905062000f76600083018462000f4e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fc457607f821691505b6020821081141562000fdb5762000fda62000f7c565b5b50919050565b60805160a051615dfb620010696000396000818161149501528181611cd80152818161283d015281816128f40152818161292101528181612f65015281816141a20152818161425b015261428801526000818161103301528181612f0d015281816143fe015281816144df01528181614506015281816145a201526145c90152615dfb6000f3fe6080604052600436106103d25760003560e01c8063877f4de5116101fd578063b62496f511610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610e7a578063f2fde38b14610ea5578063f637434214610ece578063f8b45b0514610ef9578063fe72b27a14610f24576103d9565b8063d85ba06314610dbc578063dd62ed3e14610de7578063e2f4560514610e24578063e884f26014610e4f576103d9565b8063c18bc195116100e7578063c18bc19514610d00578063c876d0b914610d29578063c8c8ebe414610d54578063d257b34f14610d7f576103d9565b8063b62496f514610c46578063bbc0c74214610c83578063c024666814610cae578063c17b5b8c14610cd7576103d9565b80639c3b4fdc11610190578063a457c2d71161015f578063a457c2d714610b78578063a4c82a0014610bb5578063a9059cbb14610be0578063aacebbe314610c1d576103d9565b80639c3b4fdc14610acc5780639ec22c0e14610af75780639fccce3214610b22578063a0d82dc514610b4d576103d9565b806392136913116101cc5780639213691314610a24578063924de9b714610a4f57806395d89b4114610a785780639a7a23d614610aa3576103d9565b8063877f4de51461098c5780638a8c523c146109b75780638da5cb5b146109ce5780638ea5220f146109f9576103d9565b806332ef9c87116102ed578063715018a61161028057806375f0a8741161024f57806375f0a874146108e25780637bce5a041461090d5780637c7d09ff146109385780638095d56414610963576103d9565b8063715018a61461084e578063730c188814610865578063751039fc1461088e5780637571336a146108b9576103d9565b80634fbee193116102bc5780634fbee1931461077e5780636a486a8e146107bb5780636ddd1713146107e657806370a0823114610811576103d9565b806332ef9c87146106c057806339509351146106eb57806349bd5a5e146107285780634a62bb6514610753576103d9565b80631a8145bb1161036557806327c8f8351161033457806327c8f835146106145780632c3e486c1461063f5780632e82f1a01461066a578063313ce56714610695576103d9565b80631a8145bb146105585780631f3fed8f14610583578063203e727e146105ae57806323b872dd146105d7576103d9565b806318160ddd116103a157806318160ddd146104ae5780631816467f146104d9578063184c16c514610502578063199ffc721461052d576103d9565b806306fdde03146103de578063095ea7b31461040957806310d5de53146104465780631694505e14610483576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610f61565b6040516104009190614711565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906147cc565b610ff3565b60405161043d9190614827565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190614842565b611011565b60405161047a9190614827565b60405180910390f35b34801561048f57600080fd5b50610498611031565b6040516104a591906148ce565b60405180910390f35b3480156104ba57600080fd5b506104c3611055565b6040516104d091906148f8565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190614842565b61105f565b005b34801561050e57600080fd5b5061051761119b565b60405161052491906148f8565b60405180910390f35b34801561053957600080fd5b506105426111a1565b60405161054f91906148f8565b60405180910390f35b34801561056457600080fd5b5061056d6111a7565b60405161057a91906148f8565b60405180910390f35b34801561058f57600080fd5b506105986111ad565b6040516105a591906148f8565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190614913565b6111b3565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190614940565b6112c2565b60405161060b9190614827565b60405180910390f35b34801561062057600080fd5b506106296113ba565b60405161063691906149a2565b60405180910390f35b34801561064b57600080fd5b506106546113c0565b60405161066191906148f8565b60405180910390f35b34801561067657600080fd5b5061067f6113c6565b60405161068c9190614827565b60405180910390f35b3480156106a157600080fd5b506106aa6113d9565b6040516106b791906149d9565b60405180910390f35b3480156106cc57600080fd5b506106d56113e2565b6040516106e291906148f8565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906147cc565b6113e7565b60405161071f9190614827565b60405180910390f35b34801561073457600080fd5b5061073d611493565b60405161074a91906149a2565b60405180910390f35b34801561075f57600080fd5b506107686114b7565b6040516107759190614827565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614842565b6114ca565b6040516107b29190614827565b60405180910390f35b3480156107c757600080fd5b506107d0611520565b6040516107dd91906148f8565b60405180910390f35b3480156107f257600080fd5b506107fb611526565b6040516108089190614827565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190614842565b611539565b60405161084591906148f8565b60405180910390f35b34801561085a57600080fd5b50610863611581565b005b34801561087157600080fd5b5061088c60048036038101906108879190614a20565b611609565b005b34801561089a57600080fd5b506108a3611749565b6040516108b09190614827565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190614a73565b6117e9565b005b3480156108ee57600080fd5b506108f76118c0565b60405161090491906149a2565b60405180910390f35b34801561091957600080fd5b506109226118e6565b60405161092f91906148f8565b60405180910390f35b34801561094457600080fd5b5061094d6118ec565b60405161095a9190614827565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190614ab3565b6118ff565b005b34801561099857600080fd5b506109a1611a18565b6040516109ae91906148f8565b60405180910390f35b3480156109c357600080fd5b506109cc611a1e565b005b3480156109da57600080fd5b506109e3611ad9565b6040516109f091906149a2565b60405180910390f35b348015610a0557600080fd5b50610a0e611b03565b604051610a1b91906149a2565b60405180910390f35b348015610a3057600080fd5b50610a39611b29565b604051610a4691906148f8565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190614b06565b611b2f565b005b348015610a8457600080fd5b50610a8d611bc8565b604051610a9a9190614711565b60405180910390f35b348015610aaf57600080fd5b50610aca6004803603810190610ac59190614a73565b611c5a565b005b348015610ad857600080fd5b50610ae1611d73565b604051610aee91906148f8565b60405180910390f35b348015610b0357600080fd5b50610b0c611d79565b604051610b1991906148f8565b60405180910390f35b348015610b2e57600080fd5b50610b37611d7f565b604051610b4491906148f8565b60405180910390f35b348015610b5957600080fd5b50610b62611d85565b604051610b6f91906148f8565b60405180910390f35b348015610b8457600080fd5b50610b9f6004803603810190610b9a91906147cc565b611d8b565b604051610bac9190614827565b60405180910390f35b348015610bc157600080fd5b50610bca611e76565b604051610bd791906148f8565b60405180910390f35b348015610bec57600080fd5b50610c076004803603810190610c0291906147cc565b611e7c565b604051610c149190614827565b60405180910390f35b348015610c2957600080fd5b50610c446004803603810190610c3f9190614842565b611e9a565b005b348015610c5257600080fd5b50610c6d6004803603810190610c689190614842565b611fd6565b604051610c7a9190614827565b60405180910390f35b348015610c8f57600080fd5b50610c98611ff6565b604051610ca59190614827565b60405180910390f35b348015610cba57600080fd5b50610cd56004803603810190610cd09190614a73565b612009565b005b348015610ce357600080fd5b50610cfe6004803603810190610cf99190614ab3565b61212e565b005b348015610d0c57600080fd5b50610d276004803603810190610d229190614913565b612248565b005b348015610d3557600080fd5b50610d3e612357565b604051610d4b9190614827565b60405180910390f35b348015610d6057600080fd5b50610d6961236a565b604051610d7691906148f8565b60405180910390f35b348015610d8b57600080fd5b50610da66004803603810190610da19190614913565b612370565b604051610db39190614827565b60405180910390f35b348015610dc857600080fd5b50610dd16124c5565b604051610dde91906148f8565b60405180910390f35b348015610df357600080fd5b50610e0e6004803603810190610e099190614b33565b6124cb565b604051610e1b91906148f8565b60405180910390f35b348015610e3057600080fd5b50610e39612552565b604051610e4691906148f8565b60405180910390f35b348015610e5b57600080fd5b50610e64612558565b604051610e719190614827565b60405180910390f35b348015610e8657600080fd5b50610e8f6125f8565b604051610e9c91906148f8565b60405180910390f35b348015610eb157600080fd5b50610ecc6004803603810190610ec79190614842565b6125fe565b005b348015610eda57600080fd5b50610ee36126f6565b604051610ef091906148f8565b60405180910390f35b348015610f0557600080fd5b50610f0e6126fc565b604051610f1b91906148f8565b60405180910390f35b348015610f3057600080fd5b50610f4b6004803603810190610f469190614913565b612702565b604051610f589190614827565b60405180910390f35b606060038054610f7090614ba2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90614ba2565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b60006110076110006129da565b84846129e2565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6110676129da565b73ffffffffffffffffffffffffffffffffffffffff16611085611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614c20565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111bb6129da565b73ffffffffffffffffffffffffffffffffffffffff166111d9611ad9565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690614c20565b60405180910390fd5b670de0b6b3a76400006103e86001611245611055565b61124f9190614c6f565b6112599190614cf8565b6112639190614cf8565b8110156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90614d9b565b60405180910390fd5b670de0b6b3a7640000816112b99190614c6f565b60088190555050565b60006112cf848484612bad565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061131a6129da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190614e2d565b60405180910390fd5b6113ae856113a66129da565b8584036129e2565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600d81565b60006114896113f46129da565b8484600160006114026129da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114849190614e4d565b6129e2565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115896129da565b73ffffffffffffffffffffffffffffffffffffffff166115a7611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490614c20565b60405180910390fd5b6116076000613a7e565b565b6116116129da565b73ffffffffffffffffffffffffffffffffffffffff1661162f611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90614c20565b60405180910390fd5b6102588310156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614f15565b60405180910390fd5b6103e882111580156116dd575060008210155b61171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390614fa7565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117536129da565b73ffffffffffffffffffffffffffffffffffffffff16611771611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90614c20565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117f16129da565b73ffffffffffffffffffffffffffffffffffffffff1661180f611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614c20565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b602060009054906101000a900460ff1681565b6119076129da565b73ffffffffffffffffffffffffffffffffffffffff16611925611ad9565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290614c20565b60405180910390fd5b6001602060006101000a81548160ff0219169083151502179055508260158190555081601681905550806017819055506017546016546015546119be9190614e4d565b6119c89190614e4d565b601481905550601480541115611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90615013565b60405180910390fd5b505050565b601f5481565b611a266129da565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614c20565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611b376129da565b73ffffffffffffffffffffffffffffffffffffffff16611b55611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614c20565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bd790614ba2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0390614ba2565b8015611c505780601f10611c2557610100808354040283529160200191611c50565b820191906000526020600020905b815481529060010190602001808311611c3357829003601f168201915b5050505050905090565b611c626129da565b73ffffffffffffffffffffffffffffffffffffffff16611c80611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90614c20565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c906150a5565b60405180910390fd5b611d6f8282613b44565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d9a6129da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90615137565b60405180910390fd5b611e6b611e626129da565b858584036129e2565b600191505092915050565b600e5481565b6000611e90611e896129da565b8484612bad565b6001905092915050565b611ea26129da565b73ffffffffffffffffffffffffffffffffffffffff16611ec0611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90614c20565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6120116129da565b73ffffffffffffffffffffffffffffffffffffffff1661202f611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c90614c20565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121229190614827565b60405180910390a25050565b6121366129da565b73ffffffffffffffffffffffffffffffffffffffff16612154611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146121aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a190614c20565b60405180910390fd5b6001602060006101000a81548160ff0219169083151502179055508260198190555081601a8190555080601b81905550601b54601a546019546121ed9190614e4d565b6121f79190614e4d565b60188190555060146018541115612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90615013565b60405180910390fd5b505050565b6122506129da565b73ffffffffffffffffffffffffffffffffffffffff1661226e611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb90614c20565b60405180910390fd5b670de0b6b3a76400006103e860056122da611055565b6122e49190614c6f565b6122ee9190614cf8565b6122f89190614cf8565b81101561233a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612331906151c9565b60405180910390fd5b670de0b6b3a76400008161234e9190614c6f565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061237a6129da565b73ffffffffffffffffffffffffffffffffffffffff16612398611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614c20565b60405180910390fd5b620186a060016123fc611055565b6124069190614c6f565b6124109190614cf8565b821015612452576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124499061525b565b60405180910390fd5b6103e8600561245f611055565b6124699190614c6f565b6124739190614cf8565b8211156124b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ac906152ed565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125626129da565b73ffffffffffffffffffffffffffffffffffffffff16612580611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd90614c20565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126066129da565b73ffffffffffffffffffffffffffffffffffffffff16612624611ad9565b73ffffffffffffffffffffffffffffffffffffffff161461267a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267190614c20565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e19061537f565b60405180910390fd5b6126f381613a7e565b50565b601a5481565b600a5481565b600061270c6129da565b73ffffffffffffffffffffffffffffffffffffffff1661272a611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614612780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277790614c20565b60405180910390fd5b600f546010546127909190614e4d565b42116127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c8906153eb565b60405180910390fd5b6103e8821115612816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280d9061547d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161287891906149a2565b602060405180830381865afa158015612895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b991906154b2565b905060006128e46127106128d68685613be590919063ffffffff16565b613bfb90919063ffffffff16565b9050600081111561291d5761291c7f000000000000000000000000000000000000000000000000000000000000000061dead83613c11565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561298a57600080fd5b505af115801561299e573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990615551565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab9906155e3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ba091906148f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1490615675565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8490615707565b60405180910390fd5b6000811415612ca757612ca283836000613c11565b613a79565b601160009054906101000a900460ff161561336a57612cc4611ad9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d325750612d02611ad9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d6b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612da5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dbe5750600560149054906101000a900460ff16155b1561336957601160019054906101000a900460ff16612eb857602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e785750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eae90615773565b60405180910390fd5b5b601360009054906101000a900460ff161561308057612ed5611ad9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f5c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fb457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561307f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061303a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130319061582b565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131235750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131ca5760085481111561316d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613164906158bd565b60405180910390fd5b600a5461317983611539565b826131849190614e4d565b11156131c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bc90615929565b60405180910390fd5b613368565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561326d5750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132bc576008548111156132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae906159bb565b60405180910390fd5b613367565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661336657600a5461331983611539565b826133249190614e4d565b1115613365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335c90615929565b60405180910390fd5b5b5b5b5b5b600061337530611539565b90506000600954821015905080801561339a5750601160029054906101000a900460ff165b80156133b35750600560149054906101000a900460ff16155b80156134095750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561345f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134b55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134f9576001600560146101000a81548160ff0219169083151502179055506134dd613e92565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561355f5750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135775750600c60009054906101000a900460ff165b80156135925750600d54600e5461358e9190614e4d565b4210155b80156135e85750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135f7576135f5614179565b505b6000600560149054906101000a900460ff16159050602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136975750613668611ad9565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b156136a45743601f819055505b602060009054906101000a900460ff1661374557600d601f546136c79190614e4d565b43106137445760006015819055506001601681905550601d6017819055506017546016546015546136f89190614e4d565b6137029190614e4d565b60148190555060006019819055506001601a819055506062601b81905550601b54601a546019546137339190614e4d565b61373d9190614e4d565b6018819055505b5b602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137e65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137f057600090505b60008115613a6957602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561385357506000601854115b1561392057613880606461387260185488613be590919063ffffffff16565b613bfb90919063ffffffff16565b9050601854601a54826138939190614c6f565b61389d9190614cf8565b601d60008282546138ae9190614e4d565b92505081905550601854601b54826138c69190614c6f565b6138d09190614cf8565b601e60008282546138e19190614e4d565b92505081905550601854601954826138f99190614c6f565b6139039190614cf8565b601c60008282546139149190614e4d565b92505081905550613a45565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561397b57506000601454115b15613a44576139a8606461399a60145488613be590919063ffffffff16565b613bfb90919063ffffffff16565b9050601454601654826139bb9190614c6f565b6139c59190614cf8565b601d60008282546139d69190614e4d565b92505081905550601454601754826139ee9190614c6f565b6139f89190614cf8565b601e6000828254613a099190614e4d565b9250508190555060145460155482613a219190614c6f565b613a2b9190614cf8565b601c6000828254613a3c9190614e4d565b925050819055505b5b6000811115613a5a57613a59873083613c11565b5b8085613a6691906159db565b94505b613a74878787613c11565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613bf39190614c6f565b905092915050565b60008183613c099190614cf8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c7890615675565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce890615707565b60405180910390fd5b613cfc83838361433f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7990615a81565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e159190614e4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e7991906148f8565b60405180910390a3613e8c848484614344565b50505050565b6000613e9d30611539565b90506000601e54601c54601d54613eb49190614e4d565b613ebe9190614e4d565b9050600080831480613ed05750600082145b15613edd57505050614177565b6014600954613eec9190614c6f565b831115613f05576014600954613f029190614c6f565b92505b6000600283601d5486613f189190614c6f565b613f229190614cf8565b613f2c9190614cf8565b90506000613f43828661434990919063ffffffff16565b90506000479050613f538261435f565b6000613f68824761434990919063ffffffff16565b90506000613f9387613f85601c5485613be590919063ffffffff16565b613bfb90919063ffffffff16565b90506000613fbe88613fb0601e5486613be590919063ffffffff16565b613bfb90919063ffffffff16565b90506000818385613fcf91906159db565b613fd991906159db565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161403990615ad2565b60006040518083038185875af1925050503d8060008114614076576040519150601f19603f3d011682016040523d82523d6000602084013e61407b565b606091505b5050809850506000871180156140915750600081115b156140de576140a0878261459c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140d593929190615ae7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161412490615ad2565b60006040518083038185875af1925050503d8060008114614161576040519150601f19603f3d011682016040523d82523d6000602084013e614166565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141dd91906149a2565b602060405180830381865afa1580156141fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061421e91906154b2565b9050600061424b61271061423d600b5485613be590919063ffffffff16565b613bfb90919063ffffffff16565b90506000811115614284576142837f000000000000000000000000000000000000000000000000000000000000000061dead83613c11565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142f157600080fd5b505af1158015614305573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361435791906159db565b905092915050565b6000600267ffffffffffffffff81111561437c5761437b615b1e565b5b6040519080825280602002602001820160405280156143aa5781602001602082028036833780820191505090505b50905030816000815181106143c2576143c1615b4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614467573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061448b9190615b91565b8160018151811061449f5761449e615b4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614504307f0000000000000000000000000000000000000000000000000000000000000000846129e2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614566959493929190615cb7565b600060405180830381600087803b15801561458057600080fd5b505af1158015614594573d6000803e3d6000fd5b505050505050565b6145c7307f0000000000000000000000000000000000000000000000000000000000000000846129e2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161462e96959493929190615d11565b60606040518083038185885af115801561464c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146719190615d72565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146b2578082015181840152602081019050614697565b838111156146c1576000848401525b50505050565b6000601f19601f8301169050919050565b60006146e382614678565b6146ed8185614683565b93506146fd818560208601614694565b614706816146c7565b840191505092915050565b6000602082019050818103600083015261472b81846146d8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061476382614738565b9050919050565b61477381614758565b811461477e57600080fd5b50565b6000813590506147908161476a565b92915050565b6000819050919050565b6147a981614796565b81146147b457600080fd5b50565b6000813590506147c6816147a0565b92915050565b600080604083850312156147e3576147e2614733565b5b60006147f185828601614781565b9250506020614802858286016147b7565b9150509250929050565b60008115159050919050565b6148218161480c565b82525050565b600060208201905061483c6000830184614818565b92915050565b60006020828403121561485857614857614733565b5b600061486684828501614781565b91505092915050565b6000819050919050565b600061489461488f61488a84614738565b61486f565b614738565b9050919050565b60006148a682614879565b9050919050565b60006148b88261489b565b9050919050565b6148c8816148ad565b82525050565b60006020820190506148e360008301846148bf565b92915050565b6148f281614796565b82525050565b600060208201905061490d60008301846148e9565b92915050565b60006020828403121561492957614928614733565b5b6000614937848285016147b7565b91505092915050565b60008060006060848603121561495957614958614733565b5b600061496786828701614781565b935050602061497886828701614781565b9250506040614989868287016147b7565b9150509250925092565b61499c81614758565b82525050565b60006020820190506149b76000830184614993565b92915050565b600060ff82169050919050565b6149d3816149bd565b82525050565b60006020820190506149ee60008301846149ca565b92915050565b6149fd8161480c565b8114614a0857600080fd5b50565b600081359050614a1a816149f4565b92915050565b600080600060608486031215614a3957614a38614733565b5b6000614a47868287016147b7565b9350506020614a58868287016147b7565b9250506040614a6986828701614a0b565b9150509250925092565b60008060408385031215614a8a57614a89614733565b5b6000614a9885828601614781565b9250506020614aa985828601614a0b565b9150509250929050565b600080600060608486031215614acc57614acb614733565b5b6000614ada868287016147b7565b9350506020614aeb868287016147b7565b9250506040614afc868287016147b7565b9150509250925092565b600060208284031215614b1c57614b1b614733565b5b6000614b2a84828501614a0b565b91505092915050565b60008060408385031215614b4a57614b49614733565b5b6000614b5885828601614781565b9250506020614b6985828601614781565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bba57607f821691505b60208210811415614bce57614bcd614b73565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c0a602083614683565b9150614c1582614bd4565b602082019050919050565b60006020820190508181036000830152614c3981614bfd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7a82614796565b9150614c8583614796565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cbe57614cbd614c40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d0382614796565b9150614d0e83614796565b925082614d1e57614d1d614cc9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d85602f83614683565b9150614d9082614d29565b604082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614e17602883614683565b9150614e2282614dbb565b604082019050919050565b60006020820190508181036000830152614e4681614e0a565b9050919050565b6000614e5882614796565b9150614e6383614796565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e9857614e97614c40565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614eff603383614683565b9150614f0a82614ea3565b604082019050919050565b60006020820190508181036000830152614f2e81614ef2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f91603083614683565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614ffd601d83614683565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061508f603983614683565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615121602583614683565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006151b3602483614683565b91506151be82615157565b604082019050919050565b600060208201905081810360008301526151e2816151a6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615245603583614683565b9150615250826151e9565b604082019050919050565b6000602082019050818103600083015261527481615238565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006152d7603483614683565b91506152e28261527b565b604082019050919050565b60006020820190508181036000830152615306816152ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615369602683614683565b91506153748261530d565b604082019050919050565b600060208201905081810360008301526153988161535c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006153d5602083614683565b91506153e08261539f565b602082019050919050565b60006020820190508181036000830152615404816153c8565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615467602a83614683565b91506154728261540b565b604082019050919050565b600060208201905081810360008301526154968161545a565b9050919050565b6000815190506154ac816147a0565b92915050565b6000602082840312156154c8576154c7614733565b5b60006154d68482850161549d565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061553b602483614683565b9150615546826154df565b604082019050919050565b6000602082019050818103600083015261556a8161552e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155cd602283614683565b91506155d882615571565b604082019050919050565b600060208201905081810360008301526155fc816155c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061565f602583614683565b915061566a82615603565b604082019050919050565b6000602082019050818103600083015261568e81615652565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156f1602383614683565b91506156fc82615695565b604082019050919050565b60006020820190508181036000830152615720816156e4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061575d601683614683565b915061576882615727565b602082019050919050565b6000602082019050818103600083015261578c81615750565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615815604983614683565b915061582082615793565b606082019050919050565b6000602082019050818103600083015261584481615808565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006158a7603583614683565b91506158b28261584b565b604082019050919050565b600060208201905081810360008301526158d68161589a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615913601383614683565b915061591e826158dd565b602082019050919050565b6000602082019050818103600083015261594281615906565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006159a5603683614683565b91506159b082615949565b604082019050919050565b600060208201905081810360008301526159d481615998565b9050919050565b60006159e682614796565b91506159f183614796565b925082821015615a0457615a03614c40565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615a6b602683614683565b9150615a7682615a0f565b604082019050919050565b60006020820190508181036000830152615a9a81615a5e565b9050919050565b600081905092915050565b50565b6000615abc600083615aa1565b9150615ac782615aac565b600082019050919050565b6000615add82615aaf565b9150819050919050565b6000606082019050615afc60008301866148e9565b615b0960208301856148e9565b615b1660408301846148e9565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b8b8161476a565b92915050565b600060208284031215615ba757615ba6614733565b5b6000615bb584828501615b7c565b91505092915050565b6000819050919050565b6000615be3615bde615bd984615bbe565b61486f565b614796565b9050919050565b615bf381615bc8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c2e81614758565b82525050565b6000615c408383615c25565b60208301905092915050565b6000602082019050919050565b6000615c6482615bf9565b615c6e8185615c04565b9350615c7983615c15565b8060005b83811015615caa578151615c918882615c34565b9750615c9c83615c4c565b925050600181019050615c7d565b5085935050505092915050565b600060a082019050615ccc60008301886148e9565b615cd96020830187615bea565b8181036040830152615ceb8186615c59565b9050615cfa6060830185614993565b615d0760808301846148e9565b9695505050505050565b600060c082019050615d266000830189614993565b615d3360208301886148e9565b615d406040830187615bea565b615d4d6060830186615bea565b615d5a6080830185614993565b615d6760a08301846148e9565b979650505050505050565b600080600060608486031215615d8b57615d8a614733565b5b6000615d998682870161549d565b9350506020615daa8682870161549d565b9250506040615dbb8682870161549d565b915050925092509256fea26469706673582212203fbe70a2924df7613a4d1b96b9935465925e7ba34512a99c088f9d1eaae2732564736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103d25760003560e01c8063877f4de5116101fd578063b62496f511610118578063d85ba063116100ab578063f11a24d31161007a578063f11a24d314610e7a578063f2fde38b14610ea5578063f637434214610ece578063f8b45b0514610ef9578063fe72b27a14610f24576103d9565b8063d85ba06314610dbc578063dd62ed3e14610de7578063e2f4560514610e24578063e884f26014610e4f576103d9565b8063c18bc195116100e7578063c18bc19514610d00578063c876d0b914610d29578063c8c8ebe414610d54578063d257b34f14610d7f576103d9565b8063b62496f514610c46578063bbc0c74214610c83578063c024666814610cae578063c17b5b8c14610cd7576103d9565b80639c3b4fdc11610190578063a457c2d71161015f578063a457c2d714610b78578063a4c82a0014610bb5578063a9059cbb14610be0578063aacebbe314610c1d576103d9565b80639c3b4fdc14610acc5780639ec22c0e14610af75780639fccce3214610b22578063a0d82dc514610b4d576103d9565b806392136913116101cc5780639213691314610a24578063924de9b714610a4f57806395d89b4114610a785780639a7a23d614610aa3576103d9565b8063877f4de51461098c5780638a8c523c146109b75780638da5cb5b146109ce5780638ea5220f146109f9576103d9565b806332ef9c87116102ed578063715018a61161028057806375f0a8741161024f57806375f0a874146108e25780637bce5a041461090d5780637c7d09ff146109385780638095d56414610963576103d9565b8063715018a61461084e578063730c188814610865578063751039fc1461088e5780637571336a146108b9576103d9565b80634fbee193116102bc5780634fbee1931461077e5780636a486a8e146107bb5780636ddd1713146107e657806370a0823114610811576103d9565b806332ef9c87146106c057806339509351146106eb57806349bd5a5e146107285780634a62bb6514610753576103d9565b80631a8145bb1161036557806327c8f8351161033457806327c8f835146106145780632c3e486c1461063f5780632e82f1a01461066a578063313ce56714610695576103d9565b80631a8145bb146105585780631f3fed8f14610583578063203e727e146105ae57806323b872dd146105d7576103d9565b806318160ddd116103a157806318160ddd146104ae5780631816467f146104d9578063184c16c514610502578063199ffc721461052d576103d9565b806306fdde03146103de578063095ea7b31461040957806310d5de53146104465780631694505e14610483576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610f61565b6040516104009190614711565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906147cc565b610ff3565b60405161043d9190614827565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190614842565b611011565b60405161047a9190614827565b60405180910390f35b34801561048f57600080fd5b50610498611031565b6040516104a591906148ce565b60405180910390f35b3480156104ba57600080fd5b506104c3611055565b6040516104d091906148f8565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190614842565b61105f565b005b34801561050e57600080fd5b5061051761119b565b60405161052491906148f8565b60405180910390f35b34801561053957600080fd5b506105426111a1565b60405161054f91906148f8565b60405180910390f35b34801561056457600080fd5b5061056d6111a7565b60405161057a91906148f8565b60405180910390f35b34801561058f57600080fd5b506105986111ad565b6040516105a591906148f8565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190614913565b6111b3565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190614940565b6112c2565b60405161060b9190614827565b60405180910390f35b34801561062057600080fd5b506106296113ba565b60405161063691906149a2565b60405180910390f35b34801561064b57600080fd5b506106546113c0565b60405161066191906148f8565b60405180910390f35b34801561067657600080fd5b5061067f6113c6565b60405161068c9190614827565b60405180910390f35b3480156106a157600080fd5b506106aa6113d9565b6040516106b791906149d9565b60405180910390f35b3480156106cc57600080fd5b506106d56113e2565b6040516106e291906148f8565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906147cc565b6113e7565b60405161071f9190614827565b60405180910390f35b34801561073457600080fd5b5061073d611493565b60405161074a91906149a2565b60405180910390f35b34801561075f57600080fd5b506107686114b7565b6040516107759190614827565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190614842565b6114ca565b6040516107b29190614827565b60405180910390f35b3480156107c757600080fd5b506107d0611520565b6040516107dd91906148f8565b60405180910390f35b3480156107f257600080fd5b506107fb611526565b6040516108089190614827565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190614842565b611539565b60405161084591906148f8565b60405180910390f35b34801561085a57600080fd5b50610863611581565b005b34801561087157600080fd5b5061088c60048036038101906108879190614a20565b611609565b005b34801561089a57600080fd5b506108a3611749565b6040516108b09190614827565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190614a73565b6117e9565b005b3480156108ee57600080fd5b506108f76118c0565b60405161090491906149a2565b60405180910390f35b34801561091957600080fd5b506109226118e6565b60405161092f91906148f8565b60405180910390f35b34801561094457600080fd5b5061094d6118ec565b60405161095a9190614827565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190614ab3565b6118ff565b005b34801561099857600080fd5b506109a1611a18565b6040516109ae91906148f8565b60405180910390f35b3480156109c357600080fd5b506109cc611a1e565b005b3480156109da57600080fd5b506109e3611ad9565b6040516109f091906149a2565b60405180910390f35b348015610a0557600080fd5b50610a0e611b03565b604051610a1b91906149a2565b60405180910390f35b348015610a3057600080fd5b50610a39611b29565b604051610a4691906148f8565b60405180910390f35b348015610a5b57600080fd5b50610a766004803603810190610a719190614b06565b611b2f565b005b348015610a8457600080fd5b50610a8d611bc8565b604051610a9a9190614711565b60405180910390f35b348015610aaf57600080fd5b50610aca6004803603810190610ac59190614a73565b611c5a565b005b348015610ad857600080fd5b50610ae1611d73565b604051610aee91906148f8565b60405180910390f35b348015610b0357600080fd5b50610b0c611d79565b604051610b1991906148f8565b60405180910390f35b348015610b2e57600080fd5b50610b37611d7f565b604051610b4491906148f8565b60405180910390f35b348015610b5957600080fd5b50610b62611d85565b604051610b6f91906148f8565b60405180910390f35b348015610b8457600080fd5b50610b9f6004803603810190610b9a91906147cc565b611d8b565b604051610bac9190614827565b60405180910390f35b348015610bc157600080fd5b50610bca611e76565b604051610bd791906148f8565b60405180910390f35b348015610bec57600080fd5b50610c076004803603810190610c0291906147cc565b611e7c565b604051610c149190614827565b60405180910390f35b348015610c2957600080fd5b50610c446004803603810190610c3f9190614842565b611e9a565b005b348015610c5257600080fd5b50610c6d6004803603810190610c689190614842565b611fd6565b604051610c7a9190614827565b60405180910390f35b348015610c8f57600080fd5b50610c98611ff6565b604051610ca59190614827565b60405180910390f35b348015610cba57600080fd5b50610cd56004803603810190610cd09190614a73565b612009565b005b348015610ce357600080fd5b50610cfe6004803603810190610cf99190614ab3565b61212e565b005b348015610d0c57600080fd5b50610d276004803603810190610d229190614913565b612248565b005b348015610d3557600080fd5b50610d3e612357565b604051610d4b9190614827565b60405180910390f35b348015610d6057600080fd5b50610d6961236a565b604051610d7691906148f8565b60405180910390f35b348015610d8b57600080fd5b50610da66004803603810190610da19190614913565b612370565b604051610db39190614827565b60405180910390f35b348015610dc857600080fd5b50610dd16124c5565b604051610dde91906148f8565b60405180910390f35b348015610df357600080fd5b50610e0e6004803603810190610e099190614b33565b6124cb565b604051610e1b91906148f8565b60405180910390f35b348015610e3057600080fd5b50610e39612552565b604051610e4691906148f8565b60405180910390f35b348015610e5b57600080fd5b50610e64612558565b604051610e719190614827565b60405180910390f35b348015610e8657600080fd5b50610e8f6125f8565b604051610e9c91906148f8565b60405180910390f35b348015610eb157600080fd5b50610ecc6004803603810190610ec79190614842565b6125fe565b005b348015610eda57600080fd5b50610ee36126f6565b604051610ef091906148f8565b60405180910390f35b348015610f0557600080fd5b50610f0e6126fc565b604051610f1b91906148f8565b60405180910390f35b348015610f3057600080fd5b50610f4b6004803603810190610f469190614913565b612702565b604051610f589190614827565b60405180910390f35b606060038054610f7090614ba2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9c90614ba2565b8015610fe95780601f10610fbe57610100808354040283529160200191610fe9565b820191906000526020600020905b815481529060010190602001808311610fcc57829003601f168201915b5050505050905090565b60006110076110006129da565b84846129e2565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6110676129da565b73ffffffffffffffffffffffffffffffffffffffff16611085611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290614c20565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111bb6129da565b73ffffffffffffffffffffffffffffffffffffffff166111d9611ad9565b73ffffffffffffffffffffffffffffffffffffffff161461122f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122690614c20565b60405180910390fd5b670de0b6b3a76400006103e86001611245611055565b61124f9190614c6f565b6112599190614cf8565b6112639190614cf8565b8110156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90614d9b565b60405180910390fd5b670de0b6b3a7640000816112b99190614c6f565b60088190555050565b60006112cf848484612bad565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061131a6129da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190614e2d565b60405180910390fd5b6113ae856113a66129da565b8584036129e2565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600d81565b60006114896113f46129da565b8484600160006114026129da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114849190614e4d565b6129e2565b6001905092915050565b7f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a81565b601160009054906101000a900460ff1681565b6000602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115896129da565b73ffffffffffffffffffffffffffffffffffffffff166115a7611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490614c20565b60405180910390fd5b6116076000613a7e565b565b6116116129da565b73ffffffffffffffffffffffffffffffffffffffff1661162f611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90614c20565b60405180910390fd5b6102588310156116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190614f15565b60405180910390fd5b6103e882111580156116dd575060008210155b61171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390614fa7565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117536129da565b73ffffffffffffffffffffffffffffffffffffffff16611771611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90614c20565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6117f16129da565b73ffffffffffffffffffffffffffffffffffffffff1661180f611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c90614c20565b60405180910390fd5b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b602060009054906101000a900460ff1681565b6119076129da565b73ffffffffffffffffffffffffffffffffffffffff16611925611ad9565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197290614c20565b60405180910390fd5b6001602060006101000a81548160ff0219169083151502179055508260158190555081601681905550806017819055506017546016546015546119be9190614e4d565b6119c89190614e4d565b601481905550601480541115611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90615013565b60405180910390fd5b505050565b601f5481565b611a266129da565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9190614c20565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611b376129da565b73ffffffffffffffffffffffffffffffffffffffff16611b55611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614c20565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611bd790614ba2565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0390614ba2565b8015611c505780601f10611c2557610100808354040283529160200191611c50565b820191906000526020600020905b815481529060010190602001808311611c3357829003601f168201915b5050505050905090565b611c626129da565b73ffffffffffffffffffffffffffffffffffffffff16611c80611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd90614c20565b60405180910390fd5b7f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c906150a5565b60405180910390fd5b611d6f8282613b44565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611d9a6129da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90615137565b60405180910390fd5b611e6b611e626129da565b858584036129e2565b600191505092915050565b600e5481565b6000611e90611e896129da565b8484612bad565b6001905092915050565b611ea26129da565b73ffffffffffffffffffffffffffffffffffffffff16611ec0611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90614c20565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60236020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6120116129da565b73ffffffffffffffffffffffffffffffffffffffff1661202f611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c90614c20565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516121229190614827565b60405180910390a25050565b6121366129da565b73ffffffffffffffffffffffffffffffffffffffff16612154611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146121aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a190614c20565b60405180910390fd5b6001602060006101000a81548160ff0219169083151502179055508260198190555081601a8190555080601b81905550601b54601a546019546121ed9190614e4d565b6121f79190614e4d565b60188190555060146018541115612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90615013565b60405180910390fd5b505050565b6122506129da565b73ffffffffffffffffffffffffffffffffffffffff1661226e611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb90614c20565b60405180910390fd5b670de0b6b3a76400006103e860056122da611055565b6122e49190614c6f565b6122ee9190614cf8565b6122f89190614cf8565b81101561233a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612331906151c9565b60405180910390fd5b670de0b6b3a76400008161234e9190614c6f565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061237a6129da565b73ffffffffffffffffffffffffffffffffffffffff16612398611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146123ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e590614c20565b60405180910390fd5b620186a060016123fc611055565b6124069190614c6f565b6124109190614cf8565b821015612452576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124499061525b565b60405180910390fd5b6103e8600561245f611055565b6124699190614c6f565b6124739190614cf8565b8211156124b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ac906152ed565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125626129da565b73ffffffffffffffffffffffffffffffffffffffff16612580611ad9565b73ffffffffffffffffffffffffffffffffffffffff16146125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd90614c20565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126066129da565b73ffffffffffffffffffffffffffffffffffffffff16612624611ad9565b73ffffffffffffffffffffffffffffffffffffffff161461267a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267190614c20565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e19061537f565b60405180910390fd5b6126f381613a7e565b50565b601a5481565b600a5481565b600061270c6129da565b73ffffffffffffffffffffffffffffffffffffffff1661272a611ad9565b73ffffffffffffffffffffffffffffffffffffffff1614612780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277790614c20565b60405180910390fd5b600f546010546127909190614e4d565b42116127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c8906153eb565b60405180910390fd5b6103e8821115612816576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280d9061547d565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a6040518263ffffffff1660e01b815260040161287891906149a2565b602060405180830381865afa158015612895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b991906154b2565b905060006128e46127106128d68685613be590919063ffffffff16565b613bfb90919063ffffffff16565b9050600081111561291d5761291c7f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a61dead83613c11565b5b60007f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561298a57600080fd5b505af115801561299e573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4990615551565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab9906155e3565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612ba091906148f8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1490615675565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8490615707565b60405180910390fd5b6000811415612ca757612ca283836000613c11565b613a79565b601160009054906101000a900460ff161561336a57612cc4611ad9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612d325750612d02611ad9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d6b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612da5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dbe5750600560149054906101000a900460ff16155b1561336957601160019054906101000a900460ff16612eb857602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e785750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eae90615773565b60405180910390fd5b5b601360009054906101000a900460ff161561308057612ed5611ad9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612f5c57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fb457507f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561307f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061303a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130319061582b565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131235750602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131ca5760085481111561316d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613164906158bd565b60405180910390fd5b600a5461317983611539565b826131849190614e4d565b11156131c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131bc90615929565b60405180910390fd5b613368565b602360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561326d5750602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132bc576008548111156132b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ae906159bb565b60405180910390fd5b613367565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661336657600a5461331983611539565b826133249190614e4d565b1115613365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335c90615929565b60405180910390fd5b5b5b5b5b5b600061337530611539565b90506000600954821015905080801561339a5750601160029054906101000a900460ff165b80156133b35750600560149054906101000a900460ff16155b80156134095750602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561345f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134b55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134f9576001600560146101000a81548160ff0219169083151502179055506134dd613e92565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561355f5750602360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156135775750600c60009054906101000a900460ff165b80156135925750600d54600e5461358e9190614e4d565b4210155b80156135e85750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156135f7576135f5614179565b505b6000600560149054906101000a900460ff16159050602360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156136975750613668611ad9565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b156136a45743601f819055505b602060009054906101000a900460ff1661374557600d601f546136c79190614e4d565b43106137445760006015819055506001601681905550601d6017819055506017546016546015546136f89190614e4d565b6137029190614e4d565b60148190555060006019819055506001601a819055506062601b81905550601b54601a546019546137339190614e4d565b61373d9190614e4d565b6018819055505b5b602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137e65750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156137f057600090505b60008115613a6957602360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561385357506000601854115b1561392057613880606461387260185488613be590919063ffffffff16565b613bfb90919063ffffffff16565b9050601854601a54826138939190614c6f565b61389d9190614cf8565b601d60008282546138ae9190614e4d565b92505081905550601854601b54826138c69190614c6f565b6138d09190614cf8565b601e60008282546138e19190614e4d565b92505081905550601854601954826138f99190614c6f565b6139039190614cf8565b601c60008282546139149190614e4d565b92505081905550613a45565b602360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561397b57506000601454115b15613a44576139a8606461399a60145488613be590919063ffffffff16565b613bfb90919063ffffffff16565b9050601454601654826139bb9190614c6f565b6139c59190614cf8565b601d60008282546139d69190614e4d565b92505081905550601454601754826139ee9190614c6f565b6139f89190614cf8565b601e6000828254613a099190614e4d565b9250508190555060145460155482613a219190614c6f565b613a2b9190614cf8565b601c6000828254613a3c9190614e4d565b925050819055505b5b6000811115613a5a57613a59873083613c11565b5b8085613a6691906159db565b94505b613a74878787613c11565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613bf39190614c6f565b905092915050565b60008183613c099190614cf8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c7890615675565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ce890615707565b60405180910390fd5b613cfc83838361433f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d7990615a81565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e159190614e4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613e7991906148f8565b60405180910390a3613e8c848484614344565b50505050565b6000613e9d30611539565b90506000601e54601c54601d54613eb49190614e4d565b613ebe9190614e4d565b9050600080831480613ed05750600082145b15613edd57505050614177565b6014600954613eec9190614c6f565b831115613f05576014600954613f029190614c6f565b92505b6000600283601d5486613f189190614c6f565b613f229190614cf8565b613f2c9190614cf8565b90506000613f43828661434990919063ffffffff16565b90506000479050613f538261435f565b6000613f68824761434990919063ffffffff16565b90506000613f9387613f85601c5485613be590919063ffffffff16565b613bfb90919063ffffffff16565b90506000613fbe88613fb0601e5486613be590919063ffffffff16565b613bfb90919063ffffffff16565b90506000818385613fcf91906159db565b613fd991906159db565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161403990615ad2565b60006040518083038185875af1925050503d8060008114614076576040519150601f19603f3d011682016040523d82523d6000602084013e61407b565b606091505b5050809850506000871180156140915750600081115b156140de576140a0878261459c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516140d593929190615ae7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161412490615ad2565b60006040518083038185875af1925050503d8060008114614161576040519150601f19603f3d011682016040523d82523d6000602084013e614166565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a6040518263ffffffff1660e01b81526004016141dd91906149a2565b602060405180830381865afa1580156141fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061421e91906154b2565b9050600061424b61271061423d600b5485613be590919063ffffffff16565b613bfb90919063ffffffff16565b90506000811115614284576142837f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a61dead83613c11565b5b60007f000000000000000000000000af5377cc7d63a4d56eedfeb4620e3f5de563056a90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156142f157600080fd5b505af1158015614305573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361435791906159db565b905092915050565b6000600267ffffffffffffffff81111561437c5761437b615b1e565b5b6040519080825280602002602001820160405280156143aa5781602001602082028036833780820191505090505b50905030816000815181106143c2576143c1615b4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614467573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061448b9190615b91565b8160018151811061449f5761449e615b4d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050614504307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129e2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614566959493929190615cb7565b600060405180830381600087803b15801561458057600080fd5b505af1158015614594573d6000803e3d6000fd5b505050505050565b6145c7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846129e2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161462e96959493929190615d11565b60606040518083038185885af115801561464c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146719190615d72565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156146b2578082015181840152602081019050614697565b838111156146c1576000848401525b50505050565b6000601f19601f8301169050919050565b60006146e382614678565b6146ed8185614683565b93506146fd818560208601614694565b614706816146c7565b840191505092915050565b6000602082019050818103600083015261472b81846146d8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061476382614738565b9050919050565b61477381614758565b811461477e57600080fd5b50565b6000813590506147908161476a565b92915050565b6000819050919050565b6147a981614796565b81146147b457600080fd5b50565b6000813590506147c6816147a0565b92915050565b600080604083850312156147e3576147e2614733565b5b60006147f185828601614781565b9250506020614802858286016147b7565b9150509250929050565b60008115159050919050565b6148218161480c565b82525050565b600060208201905061483c6000830184614818565b92915050565b60006020828403121561485857614857614733565b5b600061486684828501614781565b91505092915050565b6000819050919050565b600061489461488f61488a84614738565b61486f565b614738565b9050919050565b60006148a682614879565b9050919050565b60006148b88261489b565b9050919050565b6148c8816148ad565b82525050565b60006020820190506148e360008301846148bf565b92915050565b6148f281614796565b82525050565b600060208201905061490d60008301846148e9565b92915050565b60006020828403121561492957614928614733565b5b6000614937848285016147b7565b91505092915050565b60008060006060848603121561495957614958614733565b5b600061496786828701614781565b935050602061497886828701614781565b9250506040614989868287016147b7565b9150509250925092565b61499c81614758565b82525050565b60006020820190506149b76000830184614993565b92915050565b600060ff82169050919050565b6149d3816149bd565b82525050565b60006020820190506149ee60008301846149ca565b92915050565b6149fd8161480c565b8114614a0857600080fd5b50565b600081359050614a1a816149f4565b92915050565b600080600060608486031215614a3957614a38614733565b5b6000614a47868287016147b7565b9350506020614a58868287016147b7565b9250506040614a6986828701614a0b565b9150509250925092565b60008060408385031215614a8a57614a89614733565b5b6000614a9885828601614781565b9250506020614aa985828601614a0b565b9150509250929050565b600080600060608486031215614acc57614acb614733565b5b6000614ada868287016147b7565b9350506020614aeb868287016147b7565b9250506040614afc868287016147b7565b9150509250925092565b600060208284031215614b1c57614b1b614733565b5b6000614b2a84828501614a0b565b91505092915050565b60008060408385031215614b4a57614b49614733565b5b6000614b5885828601614781565b9250506020614b6985828601614781565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614bba57607f821691505b60208210811415614bce57614bcd614b73565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c0a602083614683565b9150614c1582614bd4565b602082019050919050565b60006020820190508181036000830152614c3981614bfd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c7a82614796565b9150614c8583614796565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614cbe57614cbd614c40565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d0382614796565b9150614d0e83614796565b925082614d1e57614d1d614cc9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614d85602f83614683565b9150614d9082614d29565b604082019050919050565b60006020820190508181036000830152614db481614d78565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614e17602883614683565b9150614e2282614dbb565b604082019050919050565b60006020820190508181036000830152614e4681614e0a565b9050919050565b6000614e5882614796565b9150614e6383614796565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e9857614e97614c40565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614eff603383614683565b9150614f0a82614ea3565b604082019050919050565b60006020820190508181036000830152614f2e81614ef2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614f91603083614683565b9150614f9c82614f35565b604082019050919050565b60006020820190508181036000830152614fc081614f84565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614ffd601d83614683565b915061500882614fc7565b602082019050919050565b6000602082019050818103600083015261502c81614ff0565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061508f603983614683565b915061509a82615033565b604082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615121602583614683565b915061512c826150c5565b604082019050919050565b6000602082019050818103600083015261515081615114565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006151b3602483614683565b91506151be82615157565b604082019050919050565b600060208201905081810360008301526151e2816151a6565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615245603583614683565b9150615250826151e9565b604082019050919050565b6000602082019050818103600083015261527481615238565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006152d7603483614683565b91506152e28261527b565b604082019050919050565b60006020820190508181036000830152615306816152ca565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615369602683614683565b91506153748261530d565b604082019050919050565b600060208201905081810360008301526153988161535c565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006153d5602083614683565b91506153e08261539f565b602082019050919050565b60006020820190508181036000830152615404816153c8565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615467602a83614683565b91506154728261540b565b604082019050919050565b600060208201905081810360008301526154968161545a565b9050919050565b6000815190506154ac816147a0565b92915050565b6000602082840312156154c8576154c7614733565b5b60006154d68482850161549d565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061553b602483614683565b9150615546826154df565b604082019050919050565b6000602082019050818103600083015261556a8161552e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155cd602283614683565b91506155d882615571565b604082019050919050565b600060208201905081810360008301526155fc816155c0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061565f602583614683565b915061566a82615603565b604082019050919050565b6000602082019050818103600083015261568e81615652565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156f1602383614683565b91506156fc82615695565b604082019050919050565b60006020820190508181036000830152615720816156e4565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061575d601683614683565b915061576882615727565b602082019050919050565b6000602082019050818103600083015261578c81615750565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615815604983614683565b915061582082615793565b606082019050919050565b6000602082019050818103600083015261584481615808565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006158a7603583614683565b91506158b28261584b565b604082019050919050565b600060208201905081810360008301526158d68161589a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615913601383614683565b915061591e826158dd565b602082019050919050565b6000602082019050818103600083015261594281615906565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006159a5603683614683565b91506159b082615949565b604082019050919050565b600060208201905081810360008301526159d481615998565b9050919050565b60006159e682614796565b91506159f183614796565b925082821015615a0457615a03614c40565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615a6b602683614683565b9150615a7682615a0f565b604082019050919050565b60006020820190508181036000830152615a9a81615a5e565b9050919050565b600081905092915050565b50565b6000615abc600083615aa1565b9150615ac782615aac565b600082019050919050565b6000615add82615aaf565b9150819050919050565b6000606082019050615afc60008301866148e9565b615b0960208301856148e9565b615b1660408301846148e9565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b8b8161476a565b92915050565b600060208284031215615ba757615ba6614733565b5b6000615bb584828501615b7c565b91505092915050565b6000819050919050565b6000615be3615bde615bd984615bbe565b61486f565b614796565b9050919050565b615bf381615bc8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615c2e81614758565b82525050565b6000615c408383615c25565b60208301905092915050565b6000602082019050919050565b6000615c6482615bf9565b615c6e8185615c04565b9350615c7983615c15565b8060005b83811015615caa578151615c918882615c34565b9750615c9c83615c4c565b925050600181019050615c7d565b5085935050505092915050565b600060a082019050615ccc60008301886148e9565b615cd96020830187615bea565b8181036040830152615ceb8186615c59565b9050615cfa6060830185614993565b615d0760808301846148e9565b9695505050505050565b600060c082019050615d266000830189614993565b615d3360208301886148e9565b615d406040830187615bea565b615d4d6060830186615bea565b615d5a6080830185614993565b615d6760a08301846148e9565b979650505050505050565b600080600060608486031215615d8b57615d8a614733565b5b6000615d998682870161549d565b9350506020615daa8682870161549d565b9250506040615dbb8682870161549d565b915050925092509256fea26469706673582212203fbe70a2924df7613a4d1b96b9935465925e7ba34512a99c088f9d1eaae2732564736f6c634300080a0033
Deployed Bytecode Sourcemap
32776:20506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9604:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11771:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34565:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32849:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10724:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41838:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33414:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33229:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34184:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34144;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39090:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12422:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32952:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33324:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33285:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10566:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34337:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13323:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32907:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42003:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33999:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33592:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10895:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2839:103;;;;;;;;;;;;;:::i;:::-;;50864:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38198:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39637:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33044:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33892;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34384:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40008:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34306:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37991:155;;;;;;;;;;;;;:::i;:::-;;2188:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33081:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34034:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39900:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9823:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41093:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33966:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33468:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34224:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34110:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14041:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33376:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11235:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41599:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34786:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33552:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40903:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40451:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39373:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33810:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33114:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38585:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33858:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11473:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33156:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38380:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33929:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3097:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34072:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33196:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52223:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9604:100;9658:13;9691:5;9684:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9604:100;:::o;11771:169::-;11854:4;11871:39;11880:12;:10;:12::i;:::-;11894:7;11903:6;11871:8;:39::i;:::-;11928:4;11921:11;;11771:169;;;;:::o;34565:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32849:51::-;;;:::o;10724:108::-;10785:7;10812:12;;10805:19;;10724:108;:::o;41838:157::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41945:9:::1;;;;;;;;;;;41917:38;;41934:9;41917:38;;;;;;;;;;;;41978:9;41966;;:21;;;;;;;;;;;;;;;;;;41838:157:::0;:::o;33414:47::-;;;;:::o;33229:36::-;;;;:::o;34184:33::-;;;;:::o;34144:::-;;;;:::o;39090:275::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39227:4:::1;39219;39214:1;39198:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39197:26;;;;:::i;:::-;39196:35;;;;:::i;:::-;39186:6;:45;;39164:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39350:6;39340;:17;;;;:::i;:::-;39317:20;:40;;;;39090:275:::0;:::o;12422:492::-;12562:4;12579:36;12589:6;12597:9;12608:6;12579:9;:36::i;:::-;12628:24;12655:11;:19;12667:6;12655:19;;;;;;;;;;;;;;;:33;12675:12;:10;:12::i;:::-;12655:33;;;;;;;;;;;;;;;;12628:60;;12727:6;12707:16;:26;;12699:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12814:57;12823:6;12831:12;:10;:12::i;:::-;12864:6;12845:16;:25;12814:8;:57::i;:::-;12902:4;12895:11;;;12422:492;;;;;:::o;32952:53::-;32998:6;32952:53;:::o;33324:45::-;;;;:::o;33285:32::-;;;;;;;;;;;;;:::o;10566:93::-;10624:5;10649:2;10642:9;;10566:93;:::o;34337:40::-;34375:2;34337:40;:::o;13323:215::-;13411:4;13428:80;13437:12;:10;:12::i;:::-;13451:7;13497:10;13460:11;:25;13472:12;:10;:12::i;:::-;13460:25;;;;;;;;;;;;;;;:34;13486:7;13460:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13428:8;:80::i;:::-;13526:4;13519:11;;13323:215;;;;:::o;32907:38::-;;;:::o;33512:33::-;;;;;;;;;;;;;:::o;42003:126::-;42069:4;42093:19;:28;42113:7;42093:28;;;;;;;;;;;;;;;;;;;;;;;;;42086:35;;42003:126;;;:::o;33999:28::-;;;;:::o;33592:31::-;;;;;;;;;;;;;:::o;10895:127::-;10969:7;10996:9;:18;11006:7;10996:18;;;;;;;;;;;;;;;;10989:25;;10895:127;;;:::o;2839:103::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2904:30:::1;2931:1;2904:18;:30::i;:::-;2839:103::o:0;50864:555::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51066:3:::1;51043:19;:26;;51021:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;51193:4;51181:8;:16;;:33;;;;;51213:1;51201:8;:13;;51181:33;51159:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;51319:19;51301:15;:37;;;;51368:8;51349:16;:27;;;;51403:8;51387:13;;:24;;;;;;;;;;;;;;;;;;50864:555:::0;;;:::o;38198:121::-;38250:4;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38284:5:::1;38267:14;;:22;;;;;;;;;;;;;;;;;;38307:4;38300:11;;38198:121:::0;:::o;39637:167::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39792:4:::1;39750:31;:39;39782:6;39750:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39637:167:::0;;:::o;33044:30::-;;;;;;;;;;;;;:::o;33892:::-;;;;:::o;34384:32::-;;;;;;;;;;;;;:::o;40008:435::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40173:4:::1;40158:12;;:19;;;;;;;;;;;;;;;;;;40208:13;40190:15;:31;;;;40250:13;40232:15;:31;;;;40286:7;40274:9;:19;;;;40355:9;;40337:15;;40319;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40304:12;:60;;;;40399:2;40383:12:::0;::::1;:18;;40375:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40008:435:::0;;;:::o;34306:24::-;;;;:::o;37991:155::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38062:4:::1;38046:13;;:20;;;;;;;;;;;;;;;;;;38091:4;38077:11;;:18;;;;;;;;;;;;;;;;;;38123:15;38106:14;:32;;;;37991:155::o:0;2188:87::-;2234:7;2261:6;;;;;;;;;;;2254:13;;2188:87;:::o;33081:24::-;;;;;;;;;;;;;:::o;34034:31::-;;;;:::o;39900:100::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39985:7:::1;39971:11;;:21;;;;;;;;;;;;;;;;;;39900:100:::0;:::o;9823:104::-;9879:13;9912:7;9905:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9823:104;:::o;41093:304::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41237:13:::1;41229:21;;:4;:21;;;;41207:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41348:41;41377:4;41383:5;41348:28;:41::i;:::-;41093:304:::0;;:::o;33966:24::-;;;;:::o;33468:35::-;;;;:::o;34224:27::-;;;;:::o;34110:25::-;;;;:::o;14041:413::-;14134:4;14151:24;14178:11;:25;14190:12;:10;:12::i;:::-;14178:25;;;;;;;;;;;;;;;:34;14204:7;14178:34;;;;;;;;;;;;;;;;14151:61;;14251:15;14231:16;:35;;14223:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14344:67;14353:12;:10;:12::i;:::-;14367:7;14395:15;14376:16;:34;14344:8;:67::i;:::-;14442:4;14435:11;;;14041:413;;;;:::o;33376:29::-;;;;:::o;11235:175::-;11321:4;11338:42;11348:12;:10;:12::i;:::-;11362:9;11373:6;11338:9;:42::i;:::-;11398:4;11391:11;;11235:175;;;;:::o;41599:231::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41759:15:::1;;;;;;;;;;;41716:59;;41739:18;41716:59;;;;;;;;;;;;41804:18;41786:15;;:36;;;;;;;;;;;;;;;;;;41599:231:::0;:::o;34786:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33552:33::-;;;;;;;;;;;;;:::o;40903:182::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41019:8:::1;40988:19;:28;41008:7;40988:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41059:7;41043:34;;;41068:8;41043:34;;;;;;:::i;:::-;;;;;;;;40903:182:::0;;:::o;40451:444::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40617:4:::1;40602:12;;:19;;;;;;;;;;;;;;;;;;40653:13;40634:16;:32;;;;40696:13;40677:16;:32;;;;40733:7;40720:10;:20;;;;40805:10;;40786:16;;40767;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40751:13;:64;;;;40851:2;40834:13;;:19;;40826:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40451:444:::0;;;:::o;39373:256::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39513:4:::1;39505;39500:1;39484:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39483:26;;;;:::i;:::-;39482:35;;;;:::i;:::-;39472:6;:45;;39450:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39614:6;39604;:17;;;;:::i;:::-;39592:9;:29;;;;39373:256:::0;:::o;33810:39::-;;;;;;;;;;;;;:::o;33114:35::-;;;;:::o;38585:497::-;38693:4;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38772:6:::1;38767:1;38751:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38750:28;;;;:::i;:::-;38737:9;:41;;38715:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38927:4;38922:1;38906:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38905:26;;;;:::i;:::-;38892:9;:39;;38870:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39043:9;39022:18;:30;;;;39070:4;39063:11;;38585:497:::0;;;:::o;33858:27::-;;;;:::o;11473:151::-;11562:7;11589:11;:18;11601:5;11589:18;;;;;;;;;;;;;;;:27;11608:7;11589:27;;;;;;;;;;;;;;;;11582:34;;11473:151;;;;:::o;33156:33::-;;;;:::o;38380:135::-;38440:4;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38480:5:::1;38457:20;;:28;;;;;;;;;;;;;;;;;;38503:4;38496:11;;38380:135:::0;:::o;33929:30::-;;;;:::o;3097:201::-;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3206:1:::1;3186:22;;:8;:22;;;;3178:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3262:28;3281:8;3262:18;:28::i;:::-;3097:201:::0;:::o;34072:31::-;;;;:::o;33196:24::-;;;;:::o;52223:1056::-;52334:4;2419:12;:10;:12::i;:::-;2408:23;;:7;:5;:7::i;:::-;:23;;;2400:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52419:19:::1;;52396:20;;:42;;;;:::i;:::-;52378:15;:60;52356:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52528:4;52517:7;:15;;52509:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52613:15;52590:20;:38;;;;52683:28;52714:4;:14;;;52729:13;52714:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52683:60;;52793:20;52816:44;52854:5;52816:33;52841:7;52816:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;52793:67;;52980:1;52965:12;:16;52961:110;;;52998:61;53014:13;53037:6;53046:12;52998:15;:61::i;:::-;52961:110;53146:19;53183:13;53146:51;;53208:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53235:14;;;;;;;;;;53267:4;53260:11;;;;;52223:1056:::0;;;:::o;861:98::-;914:7;941:10;934:17;;861:98;:::o;17725:380::-;17878:1;17861:19;;:5;:19;;;;17853:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17959:1;17940:21;;:7;:21;;;;17932:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18043:6;18013:11;:18;18025:5;18013:18;;;;;;;;;;;;;;;:27;18032:7;18013:27;;;;;;;;;;;;;;;:36;;;;18081:7;18065:32;;18074:5;18065:32;;;18090:6;18065:32;;;;;;:::i;:::-;;;;;;;;17725:380;;;:::o;42187:5783::-;42335:1;42319:18;;:4;:18;;;;42311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42412:1;42398:16;;:2;:16;;;;42390:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42481:1;42471:6;:11;42467:93;;;42499:28;42515:4;42521:2;42525:1;42499:15;:28::i;:::-;42542:7;;42467:93;42576:14;;;;;;;;;;;42572:2487;;;42637:7;:5;:7::i;:::-;42629:15;;:4;:15;;;;:49;;;;;42671:7;:5;:7::i;:::-;42665:13;;:2;:13;;;;42629:49;:86;;;;;42713:1;42699:16;;:2;:16;;;;42629:86;:128;;;;;42750:6;42736:21;;:2;:21;;;;42629:128;:158;;;;;42779:8;;;;;;;;;;;42778:9;42629:158;42607:2441;;;42827:13;;;;;;;;;;;42822:223;;42899:19;:25;42919:4;42899:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42928:19;:23;42948:2;42928:23;;;;;;;;;;;;;;;;;;;;;;;;;42899:52;42865:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42822:223;43201:20;;;;;;;;;;;43197:641;;;43282:7;:5;:7::i;:::-;43276:13;;:2;:13;;;;:72;;;;;43332:15;43318:30;;:2;:30;;;;43276:72;:129;;;;;43391:13;43377:28;;:2;:28;;;;43276:129;43246:573;;;43569:12;43494:28;:39;43523:9;43494:39;;;;;;;;;;;;;;;;:87;43456:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43783:12;43741:28;:39;43770:9;43741:39;;;;;;;;;;;;;;;:54;;;;43246:573;43197:641;43912:25;:31;43938:4;43912:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43969:31;:35;44001:2;43969:35;;;;;;;;;;;;;;;;;;;;;;;;;43968:36;43912:92;43886:1147;;;44091:20;;44081:6;:30;;44047:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44299:9;;44282:13;44292:2;44282:9;:13::i;:::-;44273:6;:22;;;;:::i;:::-;:35;;44239:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43886:1147;;;44477:25;:29;44503:2;44477:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44532:31;:37;44564:4;44532:37;;;;;;;;;;;;;;;;;;;;;;;;;44531:38;44477:92;44451:582;;;44656:20;;44646:6;:30;;44612:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44451:582;;;44813:31;:35;44845:2;44813:35;;;;;;;;;;;;;;;;;;;;;;;;;44808:225;;44933:9;;44916:13;44926:2;44916:9;:13::i;:::-;44907:6;:22;;;;:::i;:::-;:35;;44873:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44808:225;44451:582;43886:1147;42607:2441;42572:2487;45071:28;45102:24;45120:4;45102:9;:24::i;:::-;45071:55;;45139:12;45178:18;;45154:20;:42;;45139:57;;45227:7;:35;;;;;45251:11;;;;;;;;;;;45227:35;:61;;;;;45280:8;;;;;;;;;;;45279:9;45227:61;:110;;;;;45306:25;:31;45332:4;45306:31;;;;;;;;;;;;;;;;;;;;;;;;;45305:32;45227:110;:153;;;;;45355:19;:25;45375:4;45355:25;;;;;;;;;;;;;;;;;;;;;;;;;45354:26;45227:153;:194;;;;;45398:19;:23;45418:2;45398:23;;;;;;;;;;;;;;;;;;;;;;;;;45397:24;45227:194;45209:326;;;45459:4;45448:8;;:15;;;;;;;;;;;;;;;;;;45480:10;:8;:10::i;:::-;45518:5;45507:8;;:16;;;;;;;;;;;;;;;;;;45209:326;45566:8;;;;;;;;;;;45565:9;:55;;;;;45591:25;:29;45617:2;45591:29;;;;;;;;;;;;;;;;;;;;;;;;;45565:55;:85;;;;;45637:13;;;;;;;;;;;45565:85;:153;;;;;45703:15;;45686:14;;:32;;;;:::i;:::-;45667:15;:51;;45565:153;:196;;;;;45736:19;:25;45756:4;45736:25;;;;;;;;;;;;;;;;;;;;;;;;;45735:26;45565:196;45547:282;;;45788:29;:27;:29::i;:::-;;45547:282;45841:12;45857:8;;;;;;;;;;;45856:9;45841:24;;45927:25;:29;45953:2;45927:29;;;;;;;;;;;;;;;;;;;;;;;;;:48;;;;;45968:7;:5;:7::i;:::-;45960:15;;:4;:15;;;45927:48;45924:103;;;46003:12;45991:9;:24;;;;45924:103;46114:12;;;;;;;;;;;46110:528;;34375:2;46200:9;;:23;;;;:::i;:::-;46183:12;:41;46179:448;;46263:1;46245:15;:19;;;;46301:1;46283:15;:19;;;;46333:2;46321:9;:14;;;;46405:9;;46387:15;;46369;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;46354:12;:60;;;;46454:1;46435:16;:20;;;;46493:1;46474:16;:20;;;;46526:2;46513:10;:15;;;;46601:10;;46582:16;;46563;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;46547:13;:64;;;;46179:448;46110:528;46739:19;:25;46759:4;46739:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46768:19;:23;46788:2;46768:23;;;;;;;;;;;;;;;;;;;;;;;;;46739:52;46735:100;;;46818:5;46808:15;;46735:100;46847:12;46952:7;46948:969;;;47004:25;:29;47030:2;47004:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;47053:1;47037:13;;:17;47004:50;47000:768;;;47082:34;47112:3;47082:25;47093:13;;47082:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;47075:41;;47185:13;;47165:16;;47158:4;:23;;;;:::i;:::-;47157:41;;;;:::i;:::-;47135:18;;:63;;;;;;;:::i;:::-;;;;;;;;47255:13;;47241:10;;47234:4;:17;;;;:::i;:::-;47233:35;;;;:::i;:::-;47217:12;;:51;;;;;;;:::i;:::-;;;;;;;;47337:13;;47317:16;;47310:4;:23;;;;:::i;:::-;47309:41;;;;:::i;:::-;47287:18;;:63;;;;;;;:::i;:::-;;;;;;;;47000:768;;;47412:25;:31;47438:4;47412:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;47462:1;47447:12;;:16;47412:51;47408:360;;;47491:33;47520:3;47491:24;47502:12;;47491:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;47484:40;;47592:12;;47573:15;;47566:4;:22;;;;:::i;:::-;47565:39;;;;:::i;:::-;47543:18;;:61;;;;;;;:::i;:::-;;;;;;;;47660:12;;47647:9;;47640:4;:16;;;;:::i;:::-;47639:33;;;;:::i;:::-;47623:12;;:49;;;;;;;:::i;:::-;;;;;;;;47740:12;;47721:15;;47714:4;:22;;;;:::i;:::-;47713:39;;;;:::i;:::-;47691:18;;:61;;;;;;;:::i;:::-;;;;;;;;47408:360;47000:768;47795:1;47788:4;:8;47784:91;;;47817:42;47833:4;47847;47854;47817:15;:42::i;:::-;47784:91;47901:4;47891:14;;;;;:::i;:::-;;;46948:969;47929:33;47945:4;47951:2;47955:6;47929:15;:33::i;:::-;42300:5670;;;;42187:5783;;;;:::o;3458:191::-;3532:16;3551:6;;;;;;;;;;;3532:25;;3577:8;3568:6;;:17;;;;;;;;;;;;;;;;;;3632:8;3601:40;;3622:8;3601:40;;;;;;;;;;;;3521:128;3458:191;:::o;41405:186::-;41522:5;41488:25;:31;41514:4;41488:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41577:5;41543:40;;41571:4;41543:40;;;;;;;;;;;;41405:186;;:::o;23178:98::-;23236:7;23267:1;23263;:5;;;;:::i;:::-;23256:12;;23178:98;;;;:::o;23577:::-;23635:7;23666:1;23662;:5;;;;:::i;:::-;23655:12;;23577:98;;;;:::o;14944:733::-;15102:1;15084:20;;:6;:20;;;;15076:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15186:1;15165:23;;:9;:23;;;;15157:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15241:47;15262:6;15270:9;15281:6;15241:20;:47::i;:::-;15301:21;15325:9;:17;15335:6;15325:17;;;;;;;;;;;;;;;;15301:41;;15378:6;15361:13;:23;;15353:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15499:6;15483:13;:22;15463:9;:17;15473:6;15463:17;;;;;;;;;;;;;;;:42;;;;15551:6;15527:9;:20;15537:9;15527:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15592:9;15575:35;;15584:6;15575:35;;;15603:6;15575:35;;;;;;:::i;:::-;;;;;;;;15623:46;15643:6;15651:9;15662:6;15623:19;:46::i;:::-;15065:612;14944:733;;;:::o;49100:1756::-;49139:23;49165:24;49183:4;49165:9;:24::i;:::-;49139:50;;49200:25;49296:12;;49262:18;;49228;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;49200:108;;49319:12;49367:1;49348:15;:20;:46;;;;49393:1;49372:17;:22;49348:46;49344:85;;;49411:7;;;;;49344:85;49484:2;49463:18;;:23;;;;:::i;:::-;49445:15;:41;49441:115;;;49542:2;49521:18;;:23;;;;:::i;:::-;49503:41;;49441:115;49617:23;49730:1;49697:17;49662:18;;49644:15;:36;;;;:::i;:::-;49643:71;;;;:::i;:::-;:88;;;;:::i;:::-;49617:114;;49742:26;49771:36;49791:15;49771;:19;;:36;;;;:::i;:::-;49742:65;;49820:25;49848:21;49820:49;;49882:36;49899:18;49882:16;:36::i;:::-;49931:18;49952:44;49978:17;49952:21;:25;;:44;;;;:::i;:::-;49931:65;;50009:23;50035:81;50088:17;50035:34;50050:18;;50035:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;50009:107;;50127:17;50147:51;50180:17;50147:28;50162:12;;50147:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;50127:71;;50211:23;50268:9;50250:15;50237:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;50211:66;;50311:1;50290:18;:22;;;;50344:1;50323:18;:22;;;;50371:1;50356:12;:16;;;;50407:9;;;;;;;;;;;50399:23;;50430:9;50399:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50385:59;;;;;50479:1;50461:15;:19;:42;;;;;50502:1;50484:15;:19;50461:42;50457:278;;;50520:46;50533:15;50550;50520:12;:46::i;:::-;50586:137;50619:18;50656:15;50690:18;;50586:137;;;;;;;;:::i;:::-;;;;;;;;50457:278;50769:15;;;;;;;;;;;50761:29;;50812:21;50761:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50747:101;;;;;49128:1728;;;;;;;;;;49100:1756;:::o;51427:788::-;51484:4;51518:15;51501:14;:32;;;;51588:28;51619:4;:14;;;51634:13;51619:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51588:60;;51698:20;51721:77;51782:5;51721:42;51746:16;;51721:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;51698:100;;51918:1;51903:12;:16;51899:110;;;51936:61;51952:13;51975:6;51984:12;51936:15;:61::i;:::-;51899:110;52084:19;52121:13;52084:51;;52146:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52173:12;;;;;;;;;;52203:4;52196:11;;;;;51427:788;:::o;18705:125::-;;;;:::o;19434:124::-;;;;:::o;22821:98::-;22879:7;22910:1;22906;:5;;;;:::i;:::-;22899:12;;22821:98;;;;:::o;47978:589::-;48104:21;48142:1;48128:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48104:40;;48173:4;48155;48160:1;48155:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;48199:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48189:4;48194:1;48189:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48234:62;48251:4;48266:15;48284:11;48234:8;:62::i;:::-;48335:15;:66;;;48416:11;48442:1;48486:4;48513;48533:15;48335:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48033:534;47978:589;:::o;48575:517::-;48723:62;48740:4;48755:15;48773:11;48723:8;:62::i;:::-;48828:15;:31;;;48867:9;48900:4;48920:11;48946:1;48989;32998:6;49058:15;48828:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48575:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:223::-;19756:34;19752:1;19744:6;19740:14;19733:58;19825:6;19820:2;19812:6;19808:15;19801:31;19616:223;:::o;19845:366::-;19987:3;20008:67;20072:2;20067:3;20008:67;:::i;:::-;20001:74;;20084:93;20173:3;20084:93;:::i;:::-;20202:2;20197:3;20193:12;20186:19;;19845:366;;;:::o;20217:419::-;20383:4;20421:2;20410:9;20406:18;20398:26;;20470:9;20464:4;20460:20;20456:1;20445:9;20441:17;20434:47;20498:131;20624:4;20498:131;:::i;:::-;20490:139;;20217:419;;;:::o;20642:240::-;20782:34;20778:1;20770:6;20766:14;20759:58;20851:23;20846:2;20838:6;20834:15;20827:48;20642:240;:::o;20888:366::-;21030:3;21051:67;21115:2;21110:3;21051:67;:::i;:::-;21044:74;;21127:93;21216:3;21127:93;:::i;:::-;21245:2;21240:3;21236:12;21229:19;;20888:366;;;:::o;21260:419::-;21426:4;21464:2;21453:9;21449:18;21441:26;;21513:9;21507:4;21503:20;21499:1;21488:9;21484:17;21477:47;21541:131;21667:4;21541:131;:::i;:::-;21533:139;;21260:419;;;:::o;21685:239::-;21825:34;21821:1;21813:6;21809:14;21802:58;21894:22;21889:2;21881:6;21877:15;21870:47;21685:239;:::o;21930:366::-;22072:3;22093:67;22157:2;22152:3;22093:67;:::i;:::-;22086:74;;22169:93;22258:3;22169:93;:::i;:::-;22287:2;22282:3;22278:12;22271:19;;21930:366;;;:::o;22302:419::-;22468:4;22506:2;22495:9;22491:18;22483:26;;22555:9;22549:4;22545:20;22541:1;22530:9;22526:17;22519:47;22583:131;22709:4;22583:131;:::i;:::-;22575:139;;22302:419;;;:::o;22727:225::-;22867:34;22863:1;22855:6;22851:14;22844:58;22936:8;22931:2;22923:6;22919:15;22912:33;22727:225;:::o;22958:366::-;23100:3;23121:67;23185:2;23180:3;23121:67;:::i;:::-;23114:74;;23197:93;23286:3;23197:93;:::i;:::-;23315:2;23310:3;23306:12;23299:19;;22958:366;;;:::o;23330:419::-;23496:4;23534:2;23523:9;23519:18;23511:26;;23583:9;23577:4;23573:20;23569:1;23558:9;23554:17;23547:47;23611:131;23737:4;23611:131;:::i;:::-;23603:139;;23330:419;;;:::o;23755:182::-;23895:34;23891:1;23883:6;23879:14;23872:58;23755:182;:::o;23943:366::-;24085:3;24106:67;24170:2;24165:3;24106:67;:::i;:::-;24099:74;;24182:93;24271:3;24182:93;:::i;:::-;24300:2;24295:3;24291:12;24284:19;;23943:366;;;:::o;24315:419::-;24481:4;24519:2;24508:9;24504:18;24496:26;;24568:9;24562:4;24558:20;24554:1;24543:9;24539:17;24532:47;24596:131;24722:4;24596:131;:::i;:::-;24588:139;;24315:419;;;:::o;24740:229::-;24880:34;24876:1;24868:6;24864:14;24857:58;24949:12;24944:2;24936:6;24932:15;24925:37;24740:229;:::o;24975:366::-;25117:3;25138:67;25202:2;25197:3;25138:67;:::i;:::-;25131:74;;25214:93;25303:3;25214:93;:::i;:::-;25332:2;25327:3;25323:12;25316:19;;24975:366;;;:::o;25347:419::-;25513:4;25551:2;25540:9;25536:18;25528:26;;25600:9;25594:4;25590:20;25586:1;25575:9;25571:17;25564:47;25628:131;25754:4;25628:131;:::i;:::-;25620:139;;25347:419;;;:::o;25772:143::-;25829:5;25860:6;25854:13;25845:22;;25876:33;25903:5;25876:33;:::i;:::-;25772:143;;;;:::o;25921:351::-;25991:6;26040:2;26028:9;26019:7;26015:23;26011:32;26008:119;;;26046:79;;:::i;:::-;26008:119;26166:1;26191:64;26247:7;26238:6;26227:9;26223:22;26191:64;:::i;:::-;26181:74;;26137:128;25921:351;;;;:::o;26278:223::-;26418:34;26414:1;26406:6;26402:14;26395:58;26487:6;26482:2;26474:6;26470:15;26463:31;26278:223;:::o;26507:366::-;26649:3;26670:67;26734:2;26729:3;26670:67;:::i;:::-;26663:74;;26746:93;26835:3;26746:93;:::i;:::-;26864:2;26859:3;26855:12;26848:19;;26507:366;;;:::o;26879:419::-;27045:4;27083:2;27072:9;27068:18;27060:26;;27132:9;27126:4;27122:20;27118:1;27107:9;27103:17;27096:47;27160:131;27286:4;27160:131;:::i;:::-;27152:139;;26879:419;;;:::o;27304:221::-;27444:34;27440:1;27432:6;27428:14;27421:58;27513:4;27508:2;27500:6;27496:15;27489:29;27304:221;:::o;27531:366::-;27673:3;27694:67;27758:2;27753:3;27694:67;:::i;:::-;27687:74;;27770:93;27859:3;27770:93;:::i;:::-;27888:2;27883:3;27879:12;27872:19;;27531:366;;;:::o;27903:419::-;28069:4;28107:2;28096:9;28092:18;28084:26;;28156:9;28150:4;28146:20;28142:1;28131:9;28127:17;28120:47;28184:131;28310:4;28184:131;:::i;:::-;28176:139;;27903:419;;;:::o;28328:224::-;28468:34;28464:1;28456:6;28452:14;28445:58;28537:7;28532:2;28524:6;28520:15;28513:32;28328:224;:::o;28558:366::-;28700:3;28721:67;28785:2;28780:3;28721:67;:::i;:::-;28714:74;;28797:93;28886:3;28797:93;:::i;:::-;28915:2;28910:3;28906:12;28899:19;;28558:366;;;:::o;28930:419::-;29096:4;29134:2;29123:9;29119:18;29111:26;;29183:9;29177:4;29173:20;29169:1;29158:9;29154:17;29147:47;29211:131;29337:4;29211:131;:::i;:::-;29203:139;;28930:419;;;:::o;29355:222::-;29495:34;29491:1;29483:6;29479:14;29472:58;29564:5;29559:2;29551:6;29547:15;29540:30;29355:222;:::o;29583:366::-;29725:3;29746:67;29810:2;29805:3;29746:67;:::i;:::-;29739:74;;29822:93;29911:3;29822:93;:::i;:::-;29940:2;29935:3;29931:12;29924:19;;29583:366;;;:::o;29955:419::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:172::-;30520:24;30516:1;30508:6;30504:14;30497:48;30380:172;:::o;30558:366::-;30700:3;30721:67;30785:2;30780:3;30721:67;:::i;:::-;30714:74;;30797:93;30886:3;30797:93;:::i;:::-;30915:2;30910:3;30906:12;30899:19;;30558:366;;;:::o;30930:419::-;31096:4;31134:2;31123:9;31119:18;31111:26;;31183:9;31177:4;31173:20;31169:1;31158:9;31154:17;31147:47;31211:131;31337:4;31211:131;:::i;:::-;31203:139;;30930:419;;;:::o;31355:297::-;31495:34;31491:1;31483:6;31479:14;31472:58;31564:34;31559:2;31551:6;31547:15;31540:59;31633:11;31628:2;31620:6;31616:15;31609:36;31355:297;:::o;31658:366::-;31800:3;31821:67;31885:2;31880:3;31821:67;:::i;:::-;31814:74;;31897:93;31986:3;31897:93;:::i;:::-;32015:2;32010:3;32006:12;31999:19;;31658:366;;;:::o;32030:419::-;32196:4;32234:2;32223:9;32219:18;32211:26;;32283:9;32277:4;32273:20;32269:1;32258:9;32254:17;32247:47;32311:131;32437:4;32311:131;:::i;:::-;32303:139;;32030:419;;;:::o;32455:240::-;32595:34;32591:1;32583:6;32579:14;32572:58;32664:23;32659:2;32651:6;32647:15;32640:48;32455:240;:::o;32701:366::-;32843:3;32864:67;32928:2;32923:3;32864:67;:::i;:::-;32857:74;;32940:93;33029:3;32940:93;:::i;:::-;33058:2;33053:3;33049:12;33042:19;;32701:366;;;:::o;33073:419::-;33239:4;33277:2;33266:9;33262:18;33254:26;;33326:9;33320:4;33316:20;33312:1;33301:9;33297:17;33290:47;33354:131;33480:4;33354:131;:::i;:::-;33346:139;;33073:419;;;:::o;33498:169::-;33638:21;33634:1;33626:6;33622:14;33615:45;33498:169;:::o;33673:366::-;33815:3;33836:67;33900:2;33895:3;33836:67;:::i;:::-;33829:74;;33912:93;34001:3;33912:93;:::i;:::-;34030:2;34025:3;34021:12;34014:19;;33673:366;;;:::o;34045:419::-;34211:4;34249:2;34238:9;34234:18;34226:26;;34298:9;34292:4;34288:20;34284:1;34273:9;34269:17;34262:47;34326:131;34452:4;34326:131;:::i;:::-;34318:139;;34045:419;;;:::o;34470:241::-;34610:34;34606:1;34598:6;34594:14;34587:58;34679:24;34674:2;34666:6;34662:15;34655:49;34470:241;:::o;34717:366::-;34859:3;34880:67;34944:2;34939:3;34880:67;:::i;:::-;34873:74;;34956:93;35045:3;34956:93;:::i;:::-;35074:2;35069:3;35065:12;35058:19;;34717:366;;;:::o;35089:419::-;35255:4;35293:2;35282:9;35278:18;35270:26;;35342:9;35336:4;35332:20;35328:1;35317:9;35313:17;35306:47;35370:131;35496:4;35370:131;:::i;:::-;35362:139;;35089:419;;;:::o;35514:191::-;35554:4;35574:20;35592:1;35574:20;:::i;:::-;35569:25;;35608:20;35626:1;35608:20;:::i;:::-;35603:25;;35647:1;35644;35641:8;35638:34;;;35652:18;;:::i;:::-;35638:34;35697:1;35694;35690:9;35682:17;;35514:191;;;;:::o;35711:225::-;35851:34;35847:1;35839:6;35835:14;35828:58;35920:8;35915:2;35907:6;35903:15;35896:33;35711:225;:::o;35942:366::-;36084:3;36105:67;36169:2;36164:3;36105:67;:::i;:::-;36098:74;;36181:93;36270:3;36181:93;:::i;:::-;36299:2;36294:3;36290:12;36283:19;;35942:366;;;:::o;36314:419::-;36480:4;36518:2;36507:9;36503:18;36495:26;;36567:9;36561:4;36557:20;36553:1;36542:9;36538:17;36531:47;36595:131;36721:4;36595:131;:::i;:::-;36587:139;;36314:419;;;:::o;36739:147::-;36840:11;36877:3;36862:18;;36739:147;;;;:::o;36892:114::-;;:::o;37012:398::-;37171:3;37192:83;37273:1;37268:3;37192:83;:::i;:::-;37185:90;;37284:93;37373:3;37284:93;:::i;:::-;37402:1;37397:3;37393:11;37386:18;;37012:398;;;:::o;37416:379::-;37600:3;37622:147;37765:3;37622:147;:::i;:::-;37615:154;;37786:3;37779:10;;37416:379;;;:::o;37801:442::-;37950:4;37988:2;37977:9;37973:18;37965:26;;38001:71;38069:1;38058:9;38054:17;38045:6;38001:71;:::i;:::-;38082:72;38150:2;38139:9;38135:18;38126:6;38082:72;:::i;:::-;38164;38232:2;38221:9;38217:18;38208:6;38164:72;:::i;:::-;37801:442;;;;;;:::o;38249:180::-;38297:77;38294:1;38287:88;38394:4;38391:1;38384:15;38418:4;38415:1;38408:15;38435:180;38483:77;38480:1;38473:88;38580:4;38577:1;38570:15;38604:4;38601:1;38594:15;38621:143;38678:5;38709:6;38703:13;38694:22;;38725:33;38752:5;38725:33;:::i;:::-;38621:143;;;;:::o;38770:351::-;38840:6;38889:2;38877:9;38868:7;38864:23;38860:32;38857:119;;;38895:79;;:::i;:::-;38857:119;39015:1;39040:64;39096:7;39087:6;39076:9;39072:22;39040:64;:::i;:::-;39030:74;;38986:128;38770:351;;;;:::o;39127:85::-;39172:7;39201:5;39190:16;;39127:85;;;:::o;39218:158::-;39276:9;39309:61;39327:42;39336:32;39362:5;39336:32;:::i;:::-;39327:42;:::i;:::-;39309:61;:::i;:::-;39296:74;;39218:158;;;:::o;39382:147::-;39477:45;39516:5;39477:45;:::i;:::-;39472:3;39465:58;39382:147;;:::o;39535:114::-;39602:6;39636:5;39630:12;39620:22;;39535:114;;;:::o;39655:184::-;39754:11;39788:6;39783:3;39776:19;39828:4;39823:3;39819:14;39804:29;;39655:184;;;;:::o;39845:132::-;39912:4;39935:3;39927:11;;39965:4;39960:3;39956:14;39948:22;;39845:132;;;:::o;39983:108::-;40060:24;40078:5;40060:24;:::i;:::-;40055:3;40048:37;39983:108;;:::o;40097:179::-;40166:10;40187:46;40229:3;40221:6;40187:46;:::i;:::-;40265:4;40260:3;40256:14;40242:28;;40097:179;;;;:::o;40282:113::-;40352:4;40384;40379:3;40375:14;40367:22;;40282:113;;;:::o;40431:732::-;40550:3;40579:54;40627:5;40579:54;:::i;:::-;40649:86;40728:6;40723:3;40649:86;:::i;:::-;40642:93;;40759:56;40809:5;40759:56;:::i;:::-;40838:7;40869:1;40854:284;40879:6;40876:1;40873:13;40854:284;;;40955:6;40949:13;40982:63;41041:3;41026:13;40982:63;:::i;:::-;40975:70;;41068:60;41121:6;41068:60;:::i;:::-;41058:70;;40914:224;40901:1;40898;40894:9;40889:14;;40854:284;;;40858:14;41154:3;41147:10;;40555:608;;;40431:732;;;;:::o;41169:831::-;41432:4;41470:3;41459:9;41455:19;41447:27;;41484:71;41552:1;41541:9;41537:17;41528:6;41484:71;:::i;:::-;41565:80;41641:2;41630:9;41626:18;41617:6;41565:80;:::i;:::-;41692:9;41686:4;41682:20;41677:2;41666:9;41662:18;41655:48;41720:108;41823:4;41814:6;41720:108;:::i;:::-;41712:116;;41838:72;41906:2;41895:9;41891:18;41882:6;41838:72;:::i;:::-;41920:73;41988:3;41977:9;41973:19;41964:6;41920:73;:::i;:::-;41169:831;;;;;;;;:::o;42006:807::-;42255:4;42293:3;42282:9;42278:19;42270:27;;42307:71;42375:1;42364:9;42360:17;42351:6;42307:71;:::i;:::-;42388:72;42456:2;42445:9;42441:18;42432:6;42388:72;:::i;:::-;42470:80;42546:2;42535:9;42531:18;42522:6;42470:80;:::i;:::-;42560;42636:2;42625:9;42621:18;42612:6;42560:80;:::i;:::-;42650:73;42718:3;42707:9;42703:19;42694:6;42650:73;:::i;:::-;42733;42801:3;42790:9;42786:19;42777:6;42733:73;:::i;:::-;42006:807;;;;;;;;;:::o;42819:663::-;42907:6;42915;42923;42972:2;42960:9;42951:7;42947:23;42943:32;42940:119;;;42978:79;;:::i;:::-;42940:119;43098:1;43123:64;43179:7;43170:6;43159:9;43155:22;43123:64;:::i;:::-;43113:74;;43069:128;43236:2;43262:64;43318:7;43309:6;43298:9;43294:22;43262:64;:::i;:::-;43252:74;;43207:129;43375:2;43401:64;43457:7;43448:6;43437:9;43433:22;43401:64;:::i;:::-;43391:74;;43346:129;42819:663;;;;;:::o
Swarm Source
ipfs://3fbe70a2924df7613a4d1b96b9935465925e7ba34512a99c088f9d1eaae27325
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.