Overview
ETH Balance
ETH Value
$0.00
Cross-Chain Transactions
Contract Source Code (Solidity)
/**
*Submitted for verification at Nova.Arbiscan.io on 2023-05-02
*/
// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
require(_initializing || !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
}
// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.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 ContextUpgradeable is Initializable {
function __Context_init() internal initializer {
__Context_init_unchained();
}
function __Context_init_unchained() internal initializer {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
uint256[50] private __gap;
}
// File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal initializer {
__Context_init_unchained();
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal initializer {
_setOwner(_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 {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
uint256[49] private __gap;
}
// File: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @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);
}
// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20MetadataUpgradeable is IERC20Upgradeable {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
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.
*/
function __ERC20_init(string memory name_, string memory symbol_) internal initializer {
__Context_init_unchained();
__ERC20_init_unchained(name_, symbol_);
}
function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer {
_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 {}
uint256[45] private __gap;
}
// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-IERC20PermitUpgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20PermitUpgradeable {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// File: @openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSAUpgradeable {
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return recover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return recover(hash, r, vs);
} else {
revert("ECDSA: invalid signature length");
}
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
bytes32 s;
uint8 v;
assembly {
s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
v := add(shr(255, vs), 27)
}
return recover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
require(
uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
"ECDSA: invalid signature 's' value"
);
require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
require(signer != address(0), "ECDSA: invalid signature");
return signer;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}
// File: @openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
* they need in their contracts using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* _Available since v3.4._
*/
abstract contract EIP712Upgradeable is Initializable {
/* solhint-disable var-name-mixedcase */
bytes32 private _HASHED_NAME;
bytes32 private _HASHED_VERSION;
bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
/* solhint-enable var-name-mixedcase */
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
function __EIP712_init(string memory name, string memory version) internal initializer {
__EIP712_init_unchained(name, version);
}
function __EIP712_init_unchained(string memory name, string memory version) internal initializer {
bytes32 hashedName = keccak256(bytes(name));
bytes32 hashedVersion = keccak256(bytes(version));
_HASHED_NAME = hashedName;
_HASHED_VERSION = hashedVersion;
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
return _buildDomainSeparator(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash());
}
function _buildDomainSeparator(
bytes32 typeHash,
bytes32 nameHash,
bytes32 versionHash
) private view returns (bytes32) {
return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash);
}
/**
* @dev The hash of the name parameter for the EIP712 domain.
*
* NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
* are a concern.
*/
function _EIP712NameHash() internal virtual view returns (bytes32) {
return _HASHED_NAME;
}
/**
* @dev The hash of the version parameter for the EIP712 domain.
*
* NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs
* are a concern.
*/
function _EIP712VersionHash() internal virtual view returns (bytes32) {
return _HASHED_VERSION;
}
uint256[50] private __gap;
}
// File: @openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library CountersUpgradeable {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-ERC20PermitUpgradeable.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* _Available since v3.4._
*/
abstract contract ERC20PermitUpgradeable is Initializable, ERC20Upgradeable, IERC20PermitUpgradeable, EIP712Upgradeable {
using CountersUpgradeable for CountersUpgradeable.Counter;
mapping(address => CountersUpgradeable.Counter) private _nonces;
// solhint-disable-next-line var-name-mixedcase
bytes32 private _PERMIT_TYPEHASH;
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
function __ERC20Permit_init(string memory name) internal initializer {
__Context_init_unchained();
__EIP712_init_unchained(name, "1");
__ERC20Permit_init_unchained(name);
}
function __ERC20Permit_init_unchained(string memory name) internal initializer {
_PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");}
/**
* @dev See {IERC20Permit-permit}.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual override {
require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSAUpgradeable.recover(hash, v, r, s);
require(signer == owner, "ERC20Permit: invalid signature");
_approve(owner, spender, value);
}
/**
* @dev See {IERC20Permit-nonces}.
*/
function nonces(address owner) public view virtual override returns (uint256) {
return _nonces[owner].current();
}
/**
* @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view override returns (bytes32) {
return _domainSeparatorV4();
}
/**
* @dev "Consume a nonce": return the current value and increment.
*
* _Available since v4.1._
*/
function _useNonce(address owner) internal virtual returns (uint256 current) {
CountersUpgradeable.Counter storage nonce = _nonces[owner];
current = nonce.current();
nonce.increment();
}
uint256[49] private __gap;
}
// File: contracts/Tether/WithBlockedList.sol
pragma solidity 0.8.4;
/*
Copyright Tether.to 2020
Author Will Harborne
Licensed under the Apache License, Version 2.0
http://www.apache.org/licenses/LICENSE-2.0
*/
contract WithBlockedList is OwnableUpgradeable {
/**
* @dev Reverts if called by a blocked account
*/
modifier onlyNotBlocked() {
require(!isBlocked[_msgSender()], "Blocked: transfers are blocked for user");
_;
}
mapping (address => bool) public isBlocked;
function addToBlockedList (address _user) public onlyOwner {
isBlocked[_user] = true;
emit BlockPlaced(_user);
}
function removeFromBlockedList (address _user) public onlyOwner {
isBlocked[_user] = false;
emit BlockReleased(_user);
}
event BlockPlaced(address indexed _user);
event BlockReleased(address indexed _user);
}
// File: contracts/Tether/TetherToken.sol
pragma solidity 0.8.4;
/*
Copyright Tether.to 2020
Author Will Harborne
Licensed under the Apache License, Version 2.0
http://www.apache.org/licenses/LICENSE-2.0
*/
contract TetherToken is Initializable, ERC20PermitUpgradeable, OwnableUpgradeable, WithBlockedList {
uint8 private tetherDecimals;
function initialize(
string memory _name,
string memory _symbol,
uint8 _decimals
) public initializer {
tetherDecimals = _decimals;
__Ownable_init();
__ERC20_init(_name, _symbol);
__ERC20Permit_init(_name);
}
function decimals() public view virtual override returns (uint8) {
return tetherDecimals;
}
function transfer(address _recipient, uint256 _amount) public virtual override onlyNotBlocked returns (bool) {
require(_recipient != address(this), "ERC20: transfer to the contract address");
return super.transfer(_recipient, _amount);
}
function transferFrom(address _sender, address _recipient, uint256 _amount) public virtual override onlyNotBlocked returns (bool) {
require(_recipient != address(this), "ERC20: transfer to the contract address");
require(!isBlocked[_sender]);
return super.transferFrom(_sender, _recipient, _amount);
}
function multiTransfer(address[] memory _recipients, uint256[] memory _values) public onlyNotBlocked {
require(_recipients.length == _values.length , "ERC20: multiTransfer mismatch");
for (uint256 i = 0; i < _recipients.length; i++) {
transfer(_recipients[i], _values[i]);
}
}
function mint(address _destination, uint256 _amount) public onlyOwner {
_mint(_destination, _amount);
emit Mint(_destination, _amount);
}
function redeem(uint256 _amount) public onlyOwner {
_burn(owner(), _amount);
emit Redeem(_amount);
}
function destroyBlockedFunds (address _blockedUser) public onlyOwner {
require(isBlocked[_blockedUser]);
uint blockedFunds = balanceOf(_blockedUser);
_burn(_blockedUser, blockedFunds);
emit DestroyedBlockedFunds(_blockedUser, blockedFunds);
}
event Mint(address indexed _destination, uint _amount);
event Redeem(uint _amount);
event DestroyedBlockedFunds(address indexed _blockedUser, uint _balance);
}
// File: contracts/Wrappers/ArbitrumExtension.sol
pragma solidity 0.8.4;
/*
Copyright Tether.to 2020
Author Will Harborne
Licensed under the Apache License, Version 2.0
http://www.apache.org/licenses/LICENSE-2.0
*/
interface IArbToken {
/**
* @notice should increase token supply by amount, and should (probably) only be callable by the L1 bridge.
*/
function bridgeMint(address account, uint256 amount) external;
/**
* @notice should decrease token supply by amount, and should (probably) only be callable by the L1 bridge.
*/
function bridgeBurn(address account, uint256 amount) external;
/**
* @return address of layer 1 token
*/
function l1Address() external view returns (address);
}
contract ArbitrumExtension is TetherToken, IArbToken {
address public l2Gateway;
address public override l1Address;
modifier onlyGateway {
require(msg.sender == l2Gateway, "ONLY_GATEWAY");
_;
}
function initialize(
string memory _name,
string memory _symbol,
uint8 _decimals,
address _l2Gateway,
address _l1Counterpart
) public initializer {
require(_l2Gateway != address(0), "INVALID_GATEWAY");
require(l2Gateway == address(0), "ALREADY_INIT");
l2Gateway = _l2Gateway;
l1Address = _l1Counterpart;
TetherToken.initialize(_name, _symbol, _decimals);
}
/**
* @notice Mint tokens on L2. Callable path is L1Gateway depositToken (which handles L1 escrow), which triggers L2Gateway, which calls this
* @param account recipient of tokens
* @param amount amount of tokens minted
*/
function bridgeMint(address account, uint256 amount) external virtual override onlyGateway {
_mint(account, amount);
emit Mint(account, amount);
}
/**
* @notice Burn tokens on L2.
* @dev only the token bridge can call this
* @param account owner of tokens
* @param amount amount of tokens burnt
*/
function bridgeBurn(address account, uint256 amount) external virtual override onlyGateway {
_burn(account, amount);
emit Redeem(amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"}],"name":"BlockPlaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"}],"name":"BlockReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_blockedUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"DestroyedBlockedFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addToBlockedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"bridgeMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_blockedUser","type":"address"}],"name":"destroyBlockedFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"address","name":"_l2Gateway","type":"address"},{"internalType":"address","name":"_l1Counterpart","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"l2Gateway","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlockedList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50612c3b806100206000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806374f4f54711610104578063a9059cbb116100a2578063db006a7511610071578063db006a75146103f6578063dd62ed3e14610409578063f2fde38b14610442578063fbac39511461045557600080fd5b8063a9059cbb146103a9578063c2eeeebd146103bc578063c820f146146103d0578063d505accf146103e357600080fd5b80638da5cb5b116100de5780638da5cb5b146103515780638fa74a0e1461037657806395d89b411461038e578063a457c2d71461039657600080fd5b806374f4f547146103185780637ecebe001461032b5780638c2a993e1461033e57600080fd5b806323b872dd1161017c5780633c7c9b901161014b5780633c7c9b90146102c157806340c10f19146102d457806370a08231146102e7578063715018a61461031057600080fd5b806323b872dd14610280578063313ce567146102935780633644e515146102a657806339509351146102ae57600080fd5b80631624f6c6116101b85780631624f6c61461023557806318160ddd146102485780631a14f4491461025a5780631e89d5451461026d57600080fd5b806306fdde03146101df578063095ea7b3146101fd5780630e27a38514610220575b600080fd5b6101e7610478565b6040516101f49190612a0d565b60405180910390f35b61021061020b366004612807565b61050a565b60405190151581526020016101f4565b61023361022e366004612717565b610520565b005b6102336102433660046128f1565b61060e565b6035545b6040519081526020016101f4565b610233610268366004612717565b61071a565b61023361027b366004612830565b6107db565b61021061028e366004612763565b610960565b60ff8054604051911681526020016101f4565b61024c610a9e565b6102106102bc366004612807565b610aad565b6102336102cf366004612717565b610ae9565b6102336102e2366004612807565b610bad565b61024c6102f5366004612717565b6001600160a01b031660009081526033602052604090205490565b610233610c4c565b610233610326366004612807565b610cb2565b61024c610339366004612717565b610d52565b61023361034c366004612807565b610d72565b60cc546001600160a01b03165b6040516001600160a01b0390911681526020016101f4565b60ff5461035e9061010090046001600160a01b031681565b6101e7610dd1565b6102106103a4366004612807565b610de0565b6102106103b7366004612807565b610e91565b6101005461035e906001600160a01b031681565b6102336103de366004612962565b610fa7565b6102336103f136600461279e565b611194565b6102336104043660046129f5565b6112da565b61024c610417366004612731565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610233610450366004612717565b611385565b610210610463366004612717565b60fe6020526000908152604090205460ff1681565b60606036805461048790612b20565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390612b20565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b6000610517338484611467565b50600192915050565b60cc546001600160a01b0316331461057f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116600090815260fe602052604090205460ff166105a457600080fd5b6001600160a01b0381166000908152603360205260409020546105c782826115bf565b816001600160a01b03167f6a2859ae7902313752498feb80a014e6e7275fe964c79aa965db815db1c7f1e98260405161060291815260200190565b60405180910390a25050565b600054610100900460ff1680610627575060005460ff16155b6106995760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156106bb576000805461ffff19166101011790555b60ff80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168382161790556106ef611744565b6106f98484611815565b610702846118ea565b8015610714576000805461ff00191690555b50505050565b60cc546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517f665918c9e02eb2fd85acca3969cb054fc84c138e60ec4af22ab6ef2fd4c93c279190a250565b33600090815260fe602052604090205460ff16156108615760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b80518251146108b25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a206d756c74695472616e73666572206d69736d617463680000006044820152606401610576565b60005b825181101561095b576109488382815181106108fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811061093b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610e91565b508061095381612b6e565b9150506108b5565b505050565b33600090815260fe602052604081205460ff16156109e65760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610a655760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038416600090815260fe602052604090205460ff1615610a8b57600080fd5b610a968484846119fd565b949350505050565b6000610aa8611abc565b905090565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610517918590610ae4908690612af1565b611467565b60cc546001600160a01b03163314610b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f406bbf2d8d145125adf1198d2cf8a67c66cc4bb0ab01c37dccd4f7c0aae1e7c79190a250565b60cc546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610c118282611b37565b816001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060291815260200190565b60cc546001600160a01b03163314610ca65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610cb06000611c16565b565b60ff5461010090046001600160a01b03163314610d115760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b610d1b82826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a15050565b6001600160a01b0381166000908152609960205260408120545b92915050565b60ff5461010090046001600160a01b03163314610c075760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b60606037805461048790612b20565b3360009081526034602090815260408083206001600160a01b038616845290915281205482811015610e7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610576565b610e873385858403611467565b5060019392505050565b33600090815260fe602052604081205460ff1615610f175760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610f965760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b610fa08383611c80565b9392505050565b600054610100900460ff1680610fc0575060005460ff16155b6110325760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611054576000805461ffff19166101011790555b6001600160a01b0383166110aa5760405162461bcd60e51b815260206004820152600f60248201527f494e56414c49445f4741544557415900000000000000000000000000000000006044820152606401610576565b60ff5461010090046001600160a01b0316156111085760405162461bcd60e51b815260206004820152600c60248201527f414c52454144595f494e495400000000000000000000000000000000000000006044820152606401610576565b60ff80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0386811682029290921790925581547fffffffffffffffffffffffff00000000000000000000000000000000000000001690841617905561117a86868661060e565b801561118c576000805461ff00191690555b505050505050565b834211156111e45760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610576565b6000609a548888886111f58c611c8d565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061125082611cb5565b9050600061126082878787611d1e565b9050896001600160a01b0316816001600160a01b0316146112c35760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610576565b6112ce8a8a8a611467565b50505050505050505050565b60cc546001600160a01b031633146113345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b61134f61134960cc546001600160a01b031690565b826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a150565b60cc546001600160a01b031633146113df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b03811661145b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610576565b61146481611c16565b50565b6001600160a01b0383166114e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661155e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03821661163b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038216600090815260336020526040902054818110156116ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03831660009081526033602052604081208383039055603580548492906116f9908490612b09565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600054610100900460ff168061175d575060005460ff16155b6117cf5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156117f1576000805461ffff19166101011790555b6117f9611f1b565b611801611fdb565b8015611464576000805461ff001916905550565b600054610100900460ff168061182e575060005460ff16155b6118a05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156118c2576000805461ffff19166101011790555b6118ca611f1b565b6118d48383612091565b801561095b576000805461ff0019169055505050565b600054610100900460ff1680611903575060005460ff16155b6119755760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611997576000805461ffff19166101011790555b61199f611f1b565b6119de826040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525061217c565b6119e78261225c565b80156119f9576000805461ff00191690555b5050565b6000611a0a848484612342565b6001600160a01b038416600090815260346020908152604080832033845290915290205482811015611aa45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610576565b611ab18533858403611467565b506001949350505050565b6000610aa87f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f611aeb60655490565b6066546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6001600160a01b038216611b8d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610576565b8060356000828254611b9f9190612af1565b90915550506001600160a01b03821660009081526033602052604081208054839290611bcc908490612af1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610517338484612342565b6001600160a01b03811660009081526099602052604090208054600181018255905b50919050565b6000610d6c611cc2611abc565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611db65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b8360ff16601b1480611dcb57508360ff16601c145b611e3d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611e91573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b038116611f125760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610576565b95945050505050565b600054610100900460ff1680611f34575060005460ff16155b611fa65760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611801576000805461ffff19166101011790558015611464576000805461ff001916905550565b600054610100900460ff1680611ff4575060005460ff16155b6120665760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612088576000805461ffff19166101011790555b61180133611c16565b600054610100900460ff16806120aa575060005460ff16155b61211c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff1615801561213e576000805461ffff19166101011790555b8251612151906036906020860190612559565b508151612165906037906020850190612559565b50801561095b576000805461ff0019169055505050565b600054610100900460ff1680612195575060005460ff16155b6122075760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612229576000805461ffff19166101011790555b8251602080850191909120835191840191909120606591909155606655801561095b576000805461ff0019169055505050565b600054610100900460ff1680612275575060005460ff16155b6122e75760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612309576000805461ffff19166101011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a5580156119f9576000805461ff00191690555050565b6001600160a01b0383166123be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661243a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316600090815260336020526040902054818110156124c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290612500908490612af1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254c91815260200190565b60405180910390a3610714565b82805461256590612b20565b90600052602060002090601f01602090048101928261258757600085556125cd565b82601f106125a057805160ff19168380011785556125cd565b828001600101855582156125cd579182015b828111156125cd5782518255916020019190600101906125b2565b506125d99291506125dd565b5090565b5b808211156125d957600081556001016125de565b80356001600160a01b038116811461260957600080fd5b919050565b600082601f83011261261e578081fd5b8135602061263361262e83612acd565b612a7e565b80838252828201915082860187848660051b8901011115612652578586fd5b855b8581101561267057813584529284019290840190600101612654565b5090979650505050505050565b600082601f83011261268d578081fd5b813567ffffffffffffffff8111156126a7576126a7612bd6565b6126d860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601612a7e565b8181528460208386010111156126ec578283fd5b816020850160208301379081016020019190915292915050565b803560ff8116811461260957600080fd5b600060208284031215612728578081fd5b610fa0826125f2565b60008060408385031215612743578081fd5b61274c836125f2565b915061275a602084016125f2565b90509250929050565b600080600060608486031215612777578081fd5b612780846125f2565b925061278e602085016125f2565b9150604084013590509250925092565b600080600080600080600060e0888a0312156127b8578283fd5b6127c1886125f2565b96506127cf602089016125f2565b955060408801359450606088013593506127eb60808901612706565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612819578182fd5b612822836125f2565b946020939093013593505050565b60008060408385031215612842578182fd5b823567ffffffffffffffff80821115612859578384fd5b818501915085601f83011261286c578384fd5b8135602061287c61262e83612acd565b8083825282820191508286018a848660051b890101111561289b578889fd5b8896505b848710156128c4576128b0816125f2565b83526001969096019591830191830161289f565b50965050860135925050808211156128da578283fd5b506128e78582860161260e565b9150509250929050565b600080600060608486031215612905578283fd5b833567ffffffffffffffff8082111561291c578485fd5b6129288783880161267d565b9450602086013591508082111561293d578384fd5b5061294a8682870161267d565b92505061295960408501612706565b90509250925092565b600080600080600060a08688031215612979578081fd5b853567ffffffffffffffff80821115612990578283fd5b61299c89838a0161267d565b965060208801359150808211156129b1578283fd5b506129be8882890161267d565b9450506129cd60408701612706565b92506129db606087016125f2565b91506129e9608087016125f2565b90509295509295909350565b600060208284031215612a06578081fd5b5035919050565b6000602080835283518082850152825b81811015612a3957858101830151858201604001528201612a1d565b81811115612a4a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612ac557612ac5612bd6565b604052919050565b600067ffffffffffffffff821115612ae757612ae7612bd6565b5060051b60200190565b60008219821115612b0457612b04612ba7565b500190565b600082821015612b1b57612b1b612ba7565b500390565b600181811c90821680612b3457607f821691505b60208210811415611caf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba057612ba0612ba7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220a2d5ecde39018a25201e428b4f293e96162fcc1f50c806a9d4a9f3e3e81486f464736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806374f4f54711610104578063a9059cbb116100a2578063db006a7511610071578063db006a75146103f6578063dd62ed3e14610409578063f2fde38b14610442578063fbac39511461045557600080fd5b8063a9059cbb146103a9578063c2eeeebd146103bc578063c820f146146103d0578063d505accf146103e357600080fd5b80638da5cb5b116100de5780638da5cb5b146103515780638fa74a0e1461037657806395d89b411461038e578063a457c2d71461039657600080fd5b806374f4f547146103185780637ecebe001461032b5780638c2a993e1461033e57600080fd5b806323b872dd1161017c5780633c7c9b901161014b5780633c7c9b90146102c157806340c10f19146102d457806370a08231146102e7578063715018a61461031057600080fd5b806323b872dd14610280578063313ce567146102935780633644e515146102a657806339509351146102ae57600080fd5b80631624f6c6116101b85780631624f6c61461023557806318160ddd146102485780631a14f4491461025a5780631e89d5451461026d57600080fd5b806306fdde03146101df578063095ea7b3146101fd5780630e27a38514610220575b600080fd5b6101e7610478565b6040516101f49190612a0d565b60405180910390f35b61021061020b366004612807565b61050a565b60405190151581526020016101f4565b61023361022e366004612717565b610520565b005b6102336102433660046128f1565b61060e565b6035545b6040519081526020016101f4565b610233610268366004612717565b61071a565b61023361027b366004612830565b6107db565b61021061028e366004612763565b610960565b60ff8054604051911681526020016101f4565b61024c610a9e565b6102106102bc366004612807565b610aad565b6102336102cf366004612717565b610ae9565b6102336102e2366004612807565b610bad565b61024c6102f5366004612717565b6001600160a01b031660009081526033602052604090205490565b610233610c4c565b610233610326366004612807565b610cb2565b61024c610339366004612717565b610d52565b61023361034c366004612807565b610d72565b60cc546001600160a01b03165b6040516001600160a01b0390911681526020016101f4565b60ff5461035e9061010090046001600160a01b031681565b6101e7610dd1565b6102106103a4366004612807565b610de0565b6102106103b7366004612807565b610e91565b6101005461035e906001600160a01b031681565b6102336103de366004612962565b610fa7565b6102336103f136600461279e565b611194565b6102336104043660046129f5565b6112da565b61024c610417366004612731565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610233610450366004612717565b611385565b610210610463366004612717565b60fe6020526000908152604090205460ff1681565b60606036805461048790612b20565b80601f01602080910402602001604051908101604052809291908181526020018280546104b390612b20565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b6000610517338484611467565b50600192915050565b60cc546001600160a01b0316331461057f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038116600090815260fe602052604090205460ff166105a457600080fd5b6001600160a01b0381166000908152603360205260409020546105c782826115bf565b816001600160a01b03167f6a2859ae7902313752498feb80a014e6e7275fe964c79aa965db815db1c7f1e98260405161060291815260200190565b60405180910390a25050565b600054610100900460ff1680610627575060005460ff16155b6106995760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156106bb576000805461ffff19166101011790555b60ff80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168382161790556106ef611744565b6106f98484611815565b610702846118ea565b8015610714576000805461ff00191690555b50505050565b60cc546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055517f665918c9e02eb2fd85acca3969cb054fc84c138e60ec4af22ab6ef2fd4c93c279190a250565b33600090815260fe602052604090205460ff16156108615760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b80518251146108b25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a206d756c74695472616e73666572206d69736d617463680000006044820152606401610576565b60005b825181101561095b576109488382815181106108fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811061093b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610e91565b508061095381612b6e565b9150506108b5565b505050565b33600090815260fe602052604081205460ff16156109e65760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610a655760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038416600090815260fe602052604090205460ff1615610a8b57600080fd5b610a968484846119fd565b949350505050565b6000610aa8611abc565b905090565b3360008181526034602090815260408083206001600160a01b03871684529091528120549091610517918590610ae4908690612af1565b611467565b60cc546001600160a01b03163314610b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b038116600081815260fe602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055517f406bbf2d8d145125adf1198d2cf8a67c66cc4bb0ab01c37dccd4f7c0aae1e7c79190a250565b60cc546001600160a01b03163314610c075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610c118282611b37565b816001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161060291815260200190565b60cc546001600160a01b03163314610ca65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b610cb06000611c16565b565b60ff5461010090046001600160a01b03163314610d115760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b610d1b82826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a15050565b6001600160a01b0381166000908152609960205260408120545b92915050565b60ff5461010090046001600160a01b03163314610c075760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f4741544557415900000000000000000000000000000000000000006044820152606401610576565b60606037805461048790612b20565b3360009081526034602090815260408083206001600160a01b038616845290915281205482811015610e7a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610576565b610e873385858403611467565b5060019392505050565b33600090815260fe602052604081205460ff1615610f175760405162461bcd60e51b815260206004820152602760248201527f426c6f636b65643a207472616e73666572732061726520626c6f636b6564206660448201527f6f722075736572000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316301415610f965760405162461bcd60e51b815260206004820152602760248201527f45524332303a207472616e7366657220746f2074686520636f6e74726163742060448201527f61646472657373000000000000000000000000000000000000000000000000006064820152608401610576565b610fa08383611c80565b9392505050565b600054610100900460ff1680610fc0575060005460ff16155b6110325760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611054576000805461ffff19166101011790555b6001600160a01b0383166110aa5760405162461bcd60e51b815260206004820152600f60248201527f494e56414c49445f4741544557415900000000000000000000000000000000006044820152606401610576565b60ff5461010090046001600160a01b0316156111085760405162461bcd60e51b815260206004820152600c60248201527f414c52454144595f494e495400000000000000000000000000000000000000006044820152606401610576565b60ff80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff166101006001600160a01b0386811682029290921790925581547fffffffffffffffffffffffff00000000000000000000000000000000000000001690841617905561117a86868661060e565b801561118c576000805461ff00191690555b505050505050565b834211156111e45760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610576565b6000609a548888886111f58c611c8d565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061125082611cb5565b9050600061126082878787611d1e565b9050896001600160a01b0316816001600160a01b0316146112c35760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610576565b6112ce8a8a8a611467565b50505050505050505050565b60cc546001600160a01b031633146113345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b61134f61134960cc546001600160a01b031690565b826115bf565b6040518181527f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449060200160405180910390a150565b60cc546001600160a01b031633146113df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610576565b6001600160a01b03811661145b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610576565b61146481611c16565b50565b6001600160a01b0383166114e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661155e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03821661163b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038216600090815260336020526040902054818110156116ca5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03831660009081526033602052604081208383039055603580548492906116f9908490612b09565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600054610100900460ff168061175d575060005460ff16155b6117cf5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156117f1576000805461ffff19166101011790555b6117f9611f1b565b611801611fdb565b8015611464576000805461ff001916905550565b600054610100900460ff168061182e575060005460ff16155b6118a05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff161580156118c2576000805461ffff19166101011790555b6118ca611f1b565b6118d48383612091565b801561095b576000805461ff0019169055505050565b600054610100900460ff1680611903575060005460ff16155b6119755760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611997576000805461ffff19166101011790555b61199f611f1b565b6119de826040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525061217c565b6119e78261225c565b80156119f9576000805461ff00191690555b5050565b6000611a0a848484612342565b6001600160a01b038416600090815260346020908152604080832033845290915290205482811015611aa45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610576565b611ab18533858403611467565b506001949350505050565b6000610aa87f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f611aeb60655490565b6066546040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090509392505050565b6001600160a01b038216611b8d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610576565b8060356000828254611b9f9190612af1565b90915550506001600160a01b03821660009081526033602052604081208054839290611bcc908490612af1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610517338484612342565b6001600160a01b03811660009081526099602052604090208054600181018255905b50919050565b6000610d6c611cc2611abc565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611db65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b8360ff16601b1480611dcb57508360ff16601c145b611e3d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610576565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611e91573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe001519150506001600160a01b038116611f125760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610576565b95945050505050565b600054610100900460ff1680611f34575060005460ff16155b611fa65760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015611801576000805461ffff19166101011790558015611464576000805461ff001916905550565b600054610100900460ff1680611ff4575060005460ff16155b6120665760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612088576000805461ffff19166101011790555b61180133611c16565b600054610100900460ff16806120aa575060005460ff16155b61211c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff1615801561213e576000805461ffff19166101011790555b8251612151906036906020860190612559565b508151612165906037906020850190612559565b50801561095b576000805461ff0019169055505050565b600054610100900460ff1680612195575060005460ff16155b6122075760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612229576000805461ffff19166101011790555b8251602080850191909120835191840191909120606591909155606655801561095b576000805461ff0019169055505050565b600054610100900460ff1680612275575060005460ff16155b6122e75760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610576565b600054610100900460ff16158015612309576000805461ffff19166101011790555b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9609a5580156119f9576000805461ff00191690555050565b6001600160a01b0383166123be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03821661243a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b038316600090815260336020526040902054818110156124c95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610576565b6001600160a01b03808516600090815260336020526040808220858503905591851681529081208054849290612500908490612af1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161254c91815260200190565b60405180910390a3610714565b82805461256590612b20565b90600052602060002090601f01602090048101928261258757600085556125cd565b82601f106125a057805160ff19168380011785556125cd565b828001600101855582156125cd579182015b828111156125cd5782518255916020019190600101906125b2565b506125d99291506125dd565b5090565b5b808211156125d957600081556001016125de565b80356001600160a01b038116811461260957600080fd5b919050565b600082601f83011261261e578081fd5b8135602061263361262e83612acd565b612a7e565b80838252828201915082860187848660051b8901011115612652578586fd5b855b8581101561267057813584529284019290840190600101612654565b5090979650505050505050565b600082601f83011261268d578081fd5b813567ffffffffffffffff8111156126a7576126a7612bd6565b6126d860207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601612a7e565b8181528460208386010111156126ec578283fd5b816020850160208301379081016020019190915292915050565b803560ff8116811461260957600080fd5b600060208284031215612728578081fd5b610fa0826125f2565b60008060408385031215612743578081fd5b61274c836125f2565b915061275a602084016125f2565b90509250929050565b600080600060608486031215612777578081fd5b612780846125f2565b925061278e602085016125f2565b9150604084013590509250925092565b600080600080600080600060e0888a0312156127b8578283fd5b6127c1886125f2565b96506127cf602089016125f2565b955060408801359450606088013593506127eb60808901612706565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612819578182fd5b612822836125f2565b946020939093013593505050565b60008060408385031215612842578182fd5b823567ffffffffffffffff80821115612859578384fd5b818501915085601f83011261286c578384fd5b8135602061287c61262e83612acd565b8083825282820191508286018a848660051b890101111561289b578889fd5b8896505b848710156128c4576128b0816125f2565b83526001969096019591830191830161289f565b50965050860135925050808211156128da578283fd5b506128e78582860161260e565b9150509250929050565b600080600060608486031215612905578283fd5b833567ffffffffffffffff8082111561291c578485fd5b6129288783880161267d565b9450602086013591508082111561293d578384fd5b5061294a8682870161267d565b92505061295960408501612706565b90509250925092565b600080600080600060a08688031215612979578081fd5b853567ffffffffffffffff80821115612990578283fd5b61299c89838a0161267d565b965060208801359150808211156129b1578283fd5b506129be8882890161267d565b9450506129cd60408701612706565b92506129db606087016125f2565b91506129e9608087016125f2565b90509295509295909350565b600060208284031215612a06578081fd5b5035919050565b6000602080835283518082850152825b81811015612a3957858101830151858201604001528201612a1d565b81811115612a4a5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612ac557612ac5612bd6565b604052919050565b600067ffffffffffffffff821115612ae757612ae7612bd6565b5060051b60200190565b60008219821115612b0457612b04612ba7565b500190565b600082821015612b1b57612b1b612ba7565b500390565b600181811c90821680612b3457607f821691505b60208210811415611caf577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ba057612ba0612ba7565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfea2646970667358221220a2d5ecde39018a25201e428b4f293e96162fcc1f50c806a9d4a9f3e3e81486f464736f6c63430008040033
Deployed Bytecode Sourcemap
43355:1372:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11437:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13604:169;;;;;;:::i;:::-;;:::i;:::-;;;7101:14:1;;7094:22;7076:41;;7064:2;7049:18;13604:169:0;7031:92:1;42110:268:0;;;;;;:::i;:::-;;:::i;:::-;;40585:249;;;;;;:::i;:::-;;:::i;12557:108::-;12645:12;;12557:108;;;7274:25:1;;;7262:2;7247:18;12557:108:0;7229:76:1;39943:143:0;;;;;;:::i;:::-;;:::i;41528:301::-;;;;;;:::i;:::-;;:::i;41203:319::-;;;;;;:::i;:::-;;:::i;40840:101::-;40921:14;;;40840:101;;40921:14;;19104:36:1;;19092:2;19077:18;40840:101:0;19059:87:1;38729:115:0;;;:::i;15156:215::-;;;;;;:::i;:::-;;:::i;39800:135::-;;;;;;:::i;:::-;;:::i;41835:150::-;;;;;;:::i;:::-;;:::i;12728:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12829:18:0;12802:7;12829:18;;;:9;:18;;;;;;;12728:127;4841:94;;;:::i;44570:152::-;;;;;;:::i;:::-;;:::i;38471:128::-;;;;;;:::i;:::-;;:::i;44236:159::-;;;;;;:::i;:::-;;:::i;4190:87::-;4263:6;;-1:-1:-1;;;;;4263:6:0;4190:87;;;-1:-1:-1;;;;;6869:55:1;;;6851:74;;6839:2;6824:18;4190:87:0;6806:125:1;43415:24:0;;;;;;;;-1:-1:-1;;;;;43415:24:0;;;11656:104;;;:::i;15874:413::-;;;;;;:::i;:::-;;:::i;40947:250::-;;;;;;:::i;:::-;;:::i;43444:33::-;;;;;-1:-1:-1;;;;;43444:33:0;;;43580:412;;;;;;:::i;:::-;;:::i;37749:656::-;;;;;;:::i;:::-;;:::i;41991:113::-;;;;;;:::i;:::-;;:::i;13306:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13422:18:0;;;13395:7;13422:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13306:151;5090:192;;;;;;:::i;:::-;;:::i;39749:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11437:100;11491:13;11524:5;11517:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11437:100;:::o;13604:169::-;13687:4;13704:39;2790:10;13727:7;13736:6;13704:8;:39::i;:::-;-1:-1:-1;13761:4:0;13604:169;;;;:::o;42110:268::-;4263:6;;-1:-1:-1;;;;;4263:6:0;2790:10;4410:23;4402:68;;;;-1:-1:-1;;;4402:68:0;;16284:2:1;4402:68:0;;;16266:21:1;;;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;16414:18;;4402:68:0;;;;;;;;;-1:-1:-1;;;;;42195:23:0;::::1;;::::0;;;:9:::1;:23;::::0;;;;;::::1;;42187:32;;;::::0;::::1;;-1:-1:-1::0;;;;;12829:18:0;;42227:17:::1;12829:18:::0;;;:9;:18;;;;;;42278:33:::1;12829:18:::0;;42278:5:::1;:33::i;:::-;42346:12;-1:-1:-1::0;;;;;42324:49:0::1;;42360:12;42324:49;;;;7274:25:1::0;;7262:2;7247:18;;7229:76;42324:49:0::1;;;;;;;;4481:1;42110:268:::0;:::o;40585:249::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;40712:14:::1;:26:::0;;;::::1;::::0;;::::1;;::::0;;40745:16:::1;:14;:16::i;:::-;40768:28;40781:5;40788:7;40768:12;:28::i;:::-;40803:25;40822:5;40803:18;:25::i;:::-;1790:14:::0;1786:68;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;1786:68;40585:249;;;;:::o;39943:143::-;4263:6;;-1:-1:-1;;;;;4263:6:0;2790:10;4410:23;4402:68;;;;-1:-1:-1;;;4402:68:0;;16284:2:1;4402:68:0;;;16266:21:1;;;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;16414:18;;4402:68:0;16256:182:1;4402:68:0;-1:-1:-1;;;;;40018:16:0;::::1;40037:5;40018:16:::0;;;:9:::1;:16;::::0;;;;;:24;;;::::1;::::0;;40058:20;::::1;::::0;40037:5;40058:20:::1;39943:143:::0;:::o;41528:301::-;2790:10;39656:23;;;;:9;:23;;;;;;;;39655:24;39647:76;;;;-1:-1:-1;;;39647:76:0;;15108:2:1;39647:76:0;;;15090:21:1;15147:2;15127:18;;;15120:30;15186:34;15166:18;;;15159:62;15257:9;15237:18;;;15230:37;15284:19;;39647:76:0;15080:229:1;39647:76:0;41666:7:::1;:14;41644:11;:18;:36;41636:79;;;::::0;-1:-1:-1;;;41636:79:0;;17858:2:1;41636:79:0::1;::::0;::::1;17840:21:1::0;17897:2;17877:18;;;17870:30;17936:31;17916:18;;;17909:59;17985:18;;41636:79:0::1;17830:179:1::0;41636:79:0::1;41727:9;41722:102;41746:11;:18;41742:1;:22;41722:102;;;41780:36;41789:11;41801:1;41789:14;;;;;;;;;;;;;;;;;;;;;;41805:7;41813:1;41805:10;;;;;;;;;;;;;;;;;;;;;;41780:8;:36::i;:::-;-1:-1:-1::0;41766:3:0;::::1;::::0;::::1;:::i;:::-;;;;41722:102;;;;41528:301:::0;;:::o;41203:319::-;2790:10;41327:4;39656:23;;;:9;:23;;;;;;;;39655:24;39647:76;;;;-1:-1:-1;;;39647:76:0;;15108:2:1;39647:76:0;;;15090:21:1;15147:2;15127:18;;;15120:30;15186:34;15166:18;;;15159:62;15257:9;15237:18;;;15230:37;15284:19;;39647:76:0;15080:229:1;39647:76:0;-1:-1:-1;;;;;41348:27:0;::::1;41370:4;41348:27;;41340:79;;;::::0;-1:-1:-1;;;41340:79:0;;13538:2:1;41340:79:0::1;::::0;::::1;13520:21:1::0;13577:2;13557:18;;;13550:30;13616:34;13596:18;;;13589:62;13687:9;13667:18;;;13660:37;13714:19;;41340:79:0::1;13510:229:1::0;41340:79:0::1;-1:-1:-1::0;;;;;41435:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;41434:19;41426:28;;;::::0;::::1;;41468:48;41487:7;41496:10;41508:7;41468:18;:48::i;:::-;41461:55:::0;41203:319;-1:-1:-1;;;;41203:319:0:o;38729:115::-;38789:7;38816:20;:18;:20::i;:::-;38809:27;;38729:115;:::o;15156:215::-;2790:10;15244:4;15293:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15293:34:0;;;;;;;;;;15244:4;;15261:80;;15284:7;;15293:47;;15330:10;;15293:47;:::i;:::-;15261:8;:80::i;39800:135::-;4263:6;;-1:-1:-1;;;;;4263:6:0;2790:10;4410:23;4402:68;;;;-1:-1:-1;;;4402:68:0;;16284:2:1;4402:68:0;;;16266:21:1;;;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;16414:18;;4402:68:0;16256:182:1;4402:68:0;-1:-1:-1;;;;;39870:16:0;::::1;;::::0;;;:9:::1;:16;::::0;;;;;:23;;;::::1;39889:4;39870:23;::::0;;39909:18;::::1;::::0;39870:16;39909:18:::1;39800:135:::0;:::o;41835:150::-;4263:6;;-1:-1:-1;;;;;4263:6:0;2790:10;4410:23;4402:68;;;;-1:-1:-1;;;4402:68:0;;16284:2:1;4402:68:0;;;16266:21:1;;;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;16414:18;;4402:68:0;16256:182:1;4402:68:0;41912:28:::1;41918:12;41932:7;41912:5;:28::i;:::-;41957:12;-1:-1:-1::0;;;;;41952:27:0::1;;41971:7;41952:27;;;;7274:25:1::0;;7262:2;7247:18;;7229:76;4841:94:0;4263:6;;-1:-1:-1;;;;;4263:6:0;2790:10;4410:23;4402:68;;;;-1:-1:-1;;;4402:68:0;;16284:2:1;4402:68:0;;;16266:21:1;;;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;16414:18;;4402:68:0;16256:182:1;4402:68:0;4906:21:::1;4924:1;4906:9;:21::i;:::-;4841:94::o:0;44570:152::-;43534:9;;;;;-1:-1:-1;;;;;43534:9:0;43520:10;:23;43512:48;;;;-1:-1:-1;;;43512:48:0;;10878:2:1;43512:48:0;;;10860:21:1;10917:2;10897:18;;;10890:30;10956:14;10936:18;;;10929:42;10988:18;;43512:48:0;10850:162:1;43512:48:0;44668:22:::1;44674:7;44683:6;44668:5;:22::i;:::-;44702:14;::::0;7274:25:1;;;44702:14:0::1;::::0;7262:2:1;7247:18;44702:14:0::1;;;;;;;44570:152:::0;;:::o;38471:128::-;-1:-1:-1;;;;;38567:14:0;;38540:7;38567:14;;;:7;:14;;;;;35504;38567:24;38560:31;38471:128;-1:-1:-1;;38471:128:0:o;44236:159::-;43534:9;;;;;-1:-1:-1;;;;;43534:9:0;43520:10;:23;43512:48;;;;-1:-1:-1;;;43512:48:0;;10878:2:1;43512:48:0;;;10860:21:1;10917:2;10897:18;;;10890:30;10956:14;10936:18;;;10929:42;10988:18;;43512:48:0;10850:162:1;11656:104:0;11712:13;11745:7;11738:14;;;;;:::i;15874:413::-;2790:10;15967:4;16011:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16011:34:0;;;;;;;;;;16064:35;;;;16056:85;;;;-1:-1:-1;;;16056:85:0;;18216:2:1;16056:85:0;;;18198:21:1;18255:2;18235:18;;;18228:30;18294:34;18274:18;;;18267:62;18365:7;18345:18;;;18338:35;18390:19;;16056:85:0;18188:227:1;16056:85:0;16177:67;2790:10;16200:7;16228:15;16209:16;:34;16177:8;:67::i;:::-;-1:-1:-1;16275:4:0;;15874:413;-1:-1:-1;;;15874:413:0:o;40947:250::-;2790:10;41050:4;39656:23;;;:9;:23;;;;;;;;39655:24;39647:76;;;;-1:-1:-1;;;39647:76:0;;15108:2:1;39647:76:0;;;15090:21:1;15147:2;15127:18;;;15120:30;15186:34;15166:18;;;15159:62;15257:9;15237:18;;;15230:37;15284:19;;39647:76:0;15080:229:1;39647:76:0;-1:-1:-1;;;;;41071:27:0;::::1;41093:4;41071:27;;41063:79;;;::::0;-1:-1:-1;;;41063:79:0;;13538:2:1;41063:79:0::1;::::0;::::1;13520:21:1::0;13577:2;13557:18;;;13550:30;13616:34;13596:18;;;13589:62;13687:9;13667:18;;;13660:37;13714:19;;41063:79:0::1;13510:229:1::0;41063:79:0::1;41156:35;41171:10;41183:7;41156:14;:35::i;:::-;41149:42:::0;40947:250;-1:-1:-1;;;40947:250:0:o;43580:412::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;-1:-1:-1;;;;;43769:24:0;::::1;43761:52;;;::::0;-1:-1:-1;;;43761:52:0;;13946:2:1;43761:52:0::1;::::0;::::1;13928:21:1::0;13985:2;13965:18;;;13958:30;14024:17;14004:18;;;13997:45;14059:18;;43761:52:0::1;13918:165:1::0;43761:52:0::1;43828:9;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;43828:9:0::1;:23:::0;43820:48:::1;;;::::0;-1:-1:-1;;;43820:48:0;;12029:2:1;43820:48:0::1;::::0;::::1;12011:21:1::0;12068:2;12048:18;;;12041:30;12107:14;12087:18;;;12080:42;12139:18;;43820:48:0::1;12001:162:1::0;43820:48:0::1;43875:9;:22:::0;;;::::1;;-1:-1:-1::0;;;;;43875:22:0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;43904:26;;;::::1;::::0;;::::1;;::::0;;43937:49:::1;43960:5:::0;43967:7;43976:9;43937:22:::1;:49::i;:::-;1790:14:::0;1786:68;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;1786:68;43580:412;;;;;;:::o;37749:656::-;37993:8;37974:15;:27;;37966:69;;;;-1:-1:-1;;;37966:69:0;;12370:2:1;37966:69:0;;;12352:21:1;12409:2;12389:18;;;12382:30;12448:31;12428:18;;;12421:59;12497:18;;37966:69:0;12342:179:1;37966:69:0;38048:18;38090:16;;38108:5;38115:7;38124:5;38131:16;38141:5;38131:9;:16::i;:::-;38079:79;;;;;;7597:25:1;;;;-1:-1:-1;;;;;7719:15:1;;;7699:18;;;7692:43;7771:15;;;;7751:18;;;7744:43;7803:18;;;7796:34;7846:19;;;7839:35;7890:19;;;7883:35;;;7569:19;;38079:79:0;;;;;;;;;;;;38069:90;;;;;;38048:111;;38172:12;38187:28;38204:10;38187:16;:28::i;:::-;38172:43;;38228:14;38245:39;38270:4;38276:1;38279;38282;38245:24;:39::i;:::-;38228:56;;38313:5;-1:-1:-1;;;;;38303:15:0;:6;-1:-1:-1;;;;;38303:15:0;;38295:58;;;;-1:-1:-1;;;38295:58:0;;15516:2:1;38295:58:0;;;15498:21:1;15555:2;15535:18;;;15528:30;15594:32;15574:18;;;15567:60;15644:18;;38295:58:0;15488:180:1;38295:58:0;38366:31;38375:5;38382:7;38391:5;38366:8;:31::i;:::-;37749:656;;;;;;;;;;:::o;41991:113::-;4263:6;;-1:-1:-1;;;;;4263:6:0;2790:10;4410:23;4402:68;;;;-1:-1:-1;;;4402:68:0;;16284:2:1;4402:68:0;;;16266:21:1;;;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;16414:18;;4402:68:0;16256:182:1;4402:68:0;42048:23:::1;42054:7;4263:6:::0;;-1:-1:-1;;;;;4263:6:0;;4190:87;42054:7:::1;42063;42048:5;:23::i;:::-;42083:15;::::0;7274:25:1;;;42083:15:0::1;::::0;7262:2:1;7247:18;42083:15:0::1;;;;;;;41991:113:::0;:::o;5090:192::-;4263:6;;-1:-1:-1;;;;;4263:6:0;2790:10;4410:23;4402:68;;;;-1:-1:-1;;;4402:68:0;;16284:2:1;4402:68:0;;;16266:21:1;;;16303:18;;;16296:30;16362:34;16342:18;;;16335:62;16414:18;;4402:68:0;16256:182:1;4402:68:0;-1:-1:-1;;;;;5179:22:0;::::1;5171:73;;;::::0;-1:-1:-1;;;5171:73:0;;11219:2:1;5171:73:0::1;::::0;::::1;11201:21:1::0;11258:2;11238:18;;;11231:30;11297:34;11277:18;;;11270:62;11368:8;11348:18;;;11341:36;11394:19;;5171:73:0::1;11191:228:1::0;5171:73:0::1;5255:19;5265:8;5255:9;:19::i;:::-;5090:192:::0;:::o;19558:380::-;-1:-1:-1;;;;;19694:19:0;;19686:68;;;;-1:-1:-1;;;19686:68:0;;17453:2:1;19686:68:0;;;17435:21:1;17492:2;17472:18;;;17465:30;17531:34;17511:18;;;17504:62;17602:6;17582:18;;;17575:34;17626:19;;19686:68:0;17425:226:1;19686:68:0;-1:-1:-1;;;;;19773:21:0;;19765:68;;;;-1:-1:-1;;;19765:68:0;;11626:2:1;19765:68:0;;;11608:21:1;11665:2;11645:18;;;11638:30;11704:34;11684:18;;;11677:62;11775:4;11755:18;;;11748:32;11797:19;;19765:68:0;11598:224:1;19765:68:0;-1:-1:-1;;;;;19846:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19898:32;;7274:25:1;;;19898:32:0;;7247:18:1;19898:32:0;;;;;;;19558:380;;;:::o;18529:591::-;-1:-1:-1;;;;;18613:21:0;;18605:67;;;;-1:-1:-1;;;18605:67:0;;16645:2:1;18605:67:0;;;16627:21:1;16684:2;16664:18;;;16657:30;16723:34;16703:18;;;16696:62;16794:3;16774:18;;;16767:31;16815:19;;18605:67:0;16617:223:1;18605:67:0;-1:-1:-1;;;;;18772:18:0;;18747:22;18772:18;;;:9;:18;;;;;;18809:24;;;;18801:71;;;;-1:-1:-1;;;18801:71:0;;10475:2:1;18801:71:0;;;10457:21:1;10514:2;10494:18;;;10487:30;10553:34;10533:18;;;10526:62;10624:4;10604:18;;;10597:32;10646:19;;18801:71:0;10447:224:1;18801:71:0;-1:-1:-1;;;;;18908:18:0;;;;;;:9;:18;;;;;18929:23;;;18908:44;;18974:12;:22;;18946:6;;18908:18;18974:22;;18946:6;;18974:22;:::i;:::-;;;;-1:-1:-1;;19014:37:0;;7274:25:1;;;19040:1:0;;-1:-1:-1;;;;;19014:37:0;;;;;7262:2:1;7247:18;19014:37:0;;;;;;;41722:102:::1;41528:301:::0;;:::o;3873:129::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;3931:26:::1;:24;:26::i;:::-;3968;:24;:26::i;:::-;1790:14:::0;1786:68;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;3873:129;:::o;11021:181::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;11119:26:::1;:24;:26::i;:::-;11156:38;11179:5;11186:7;11156:22;:38::i;:::-;1790:14:::0;1786:68;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;11021:181;;;:::o;37265:204::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;37345:26:::1;:24;:26::i;:::-;37382:34;37406:4;37382:34;;;;;;;;;;;;;;;;::::0;:23:::1;:34::i;:::-;37427;37456:4;37427:28;:34::i;:::-;1790:14:::0;1786:68;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;1786:68;37265:204;;:::o;14255:492::-;14395:4;14412:36;14422:6;14430:9;14441:6;14412:9;:36::i;:::-;-1:-1:-1;;;;;14488:19:0;;14461:24;14488:19;;;:11;:19;;;;;;;;2790:10;14488:33;;;;;;;;14540:26;;;;14532:79;;;;-1:-1:-1;;;14532:79:0;;15875:2:1;14532:79:0;;;15857:21:1;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;16024:10;16004:18;;;15997:38;16052:19;;14532:79:0;15847:230:1;14532:79:0;14647:57;14656:6;2790:10;14697:6;14678:16;:25;14647:8;:57::i;:::-;-1:-1:-1;14735:4:0;;14255:492;-1:-1:-1;;;;14255:492:0:o;32566:162::-;32619:7;32646:74;31299:95;32680:17;34148:12;;;34063:105;32680:17;34503:15;;32917:73;;;;;;8188:25:1;;;8229:18;;;8222:34;;;8272:18;;;8265:34;;;32961:13:0;8315:18:1;;;8308:34;32984:4:0;8358:19:1;;;8351:84;32880:7:0;;8160:19:1;;32917:73:0;;;;;;;;;;;;32907:84;;;;;;32900:91;;32736:263;;;;;;17797:399;-1:-1:-1;;;;;17881:21:0;;17873:65;;;;-1:-1:-1;;;17873:65:0;;18622:2:1;17873:65:0;;;18604:21:1;18661:2;18641:18;;;18634:30;18700:33;18680:18;;;18673:61;18751:18;;17873:65:0;18594:181:1;17873:65:0;18029:6;18013:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;18046:18:0;;;;;;:9;:18;;;;;:28;;18068:6;;18046:18;:28;;18068:6;;18046:28;:::i;:::-;;;;-1:-1:-1;;18090:37:0;;7274:25:1;;;-1:-1:-1;;;;;18090:37:0;;;18107:1;;18090:37;;7262:2:1;7247:18;18090:37:0;;;;;;;37265:204;;:::o;5290:173::-;5365:6;;;-1:-1:-1;;;;;5382:17:0;;;;;;;;;;;5415:40;;5365:6;;;5382:17;5365:6;;5415:40;;5346:16;;5415:40;5290:173;;:::o;13068:175::-;13154:4;13171:42;2790:10;13195:9;13206:6;13171:9;:42::i;38982:218::-;-1:-1:-1;;;;;39114:14:0;;39042:15;39114:14;;;:7;:14;;;;;35504;;35641:1;35623:19;;;;35504:14;39175:17;38982:218;;;;:::o;33641:178::-;33718:7;33745:66;33778:20;:18;:20::i;:::-;33800:10;29721:57;;6526:66:1;29721:57:0;;;6514:79:1;6609:11;;;6602:27;;;6645:12;;;6638:28;;;29684:7:0;;6682:12:1;;29721:57:0;;;;;;;;;;;;29711:68;;;;;;29704:75;;29591:196;;;;;27160:1512;27288:7;28227:66;28213:80;;;28191:164;;;;-1:-1:-1;;;28191:164:0;;13135:2:1;28191:164:0;;;13117:21:1;13174:2;13154:18;;;13147:30;13213:34;13193:18;;;13186:62;13284:4;13264:18;;;13257:32;13306:19;;28191:164:0;13107:224:1;28191:164:0;28374:1;:7;;28379:2;28374:7;:18;;;;28385:1;:7;;28390:2;28385:7;28374:18;28366:65;;;;-1:-1:-1;;;28366:65:0;;14705:2:1;28366:65:0;;;14687:21:1;14744:2;14724:18;;;14717:30;14783:34;14763:18;;;14756:62;14854:4;14834:18;;;14827:32;14876:19;;28366:65:0;14677:224:1;28366:65:0;28546:24;;;28529:14;28546:24;;;;;;;;;8673:25:1;;;8746:4;8734:17;;8714:18;;;8707:45;;;;8768:18;;;8761:34;;;8811:18;;;8804:34;;;28546:24:0;;8645:19:1;;28546:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28546:24:0;;;;;;-1:-1:-1;;;;;;;28589:20:0;;28581:57;;;;-1:-1:-1;;;28581:57:0;;9718:2:1;28581:57:0;;;9700:21:1;9757:2;9737:18;;;9730:30;9796:26;9776:18;;;9769:54;9840:18;;28581:57:0;9690:174:1;28581:57:0;28658:6;27160:1512;-1:-1:-1;;;;;27160:1512:0:o;2639:65::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1786:68;;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;2639:65;:::o;4010:99::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;4078:23:::1;2790:10:::0;4078:9:::1;:23::i;11210:157::-:0;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;11318:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;11342:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1790:14:::0;1786:68;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;11210:157;;;:::o;32178:297::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;32307:22;;::::1;::::0;;::::1;::::0;;;;32364:25;;;;::::1;::::0;;;;32400:12:::1;:25:::0;;;;32436:15:::1;:31:::0;1786:68;;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;32178:297;;;:::o;37477:206::-;1518:13;;;;;;;;:30;;-1:-1:-1;1536:12:0;;;;1535:13;1518:30;1510:89;;;;-1:-1:-1;;;1510:89:0;;14290:2:1;1510:89:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:16;14419:18;;;14412:44;14473:19;;1510:89:0;14262:236:1;1510:89:0;1612:19;1635:13;;;;;;1634:14;1659:101;;;;1694:13;:20;;-1:-1:-1;;1729:19:0;;;;;1659:101;37586:95:::1;37567:16;:114:::0;1786:68;;;;1837:5;1821:21;;-1:-1:-1;;1821:21:0;;;37477:206;;:::o;16777:733::-;-1:-1:-1;;;;;16917:20:0;;16909:70;;;;-1:-1:-1;;;16909:70:0;;17047:2:1;16909:70:0;;;17029:21:1;17086:2;17066:18;;;17059:30;17125:34;17105:18;;;17098:62;17196:7;17176:18;;;17169:35;17221:19;;16909:70:0;17019:227:1;16909:70:0;-1:-1:-1;;;;;16998:23:0;;16990:71;;;;-1:-1:-1;;;16990:71:0;;10071:2:1;16990:71:0;;;10053:21:1;10110:2;10090:18;;;10083:30;10149:34;10129:18;;;10122:62;10220:5;10200:18;;;10193:33;10243:19;;16990:71:0;10043:225:1;16990:71:0;-1:-1:-1;;;;;17158:17:0;;17134:21;17158:17;;;:9;:17;;;;;;17194:23;;;;17186:74;;;;-1:-1:-1;;;17186:74:0;;12728:2:1;17186:74:0;;;12710:21:1;12767:2;12747:18;;;12740:30;12806:34;12786:18;;;12779:62;12877:8;12857:18;;;12850:36;12903:19;;17186:74:0;12700:228:1;17186:74:0;-1:-1:-1;;;;;17296:17:0;;;;;;;:9;:17;;;;;;17316:22;;;17296:42;;17360:20;;;;;;;;:30;;17332:6;;17296:17;17360:30;;17332:6;;17360:30;:::i;:::-;;;;;;;;17425:9;-1:-1:-1;;;;;17408:35:0;17417:6;-1:-1:-1;;;;;17408:35:0;;17436:6;17408:35;;;;7274:25:1;;7262:2;7247:18;;7229:76;17408:35:0;;;;;;;;17456:46;41528:301;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:693::-;269:5;322:3;315:4;307:6;303:17;299:27;289:2;;344:5;337;330:20;289:2;384:6;371:20;410:4;434:60;450:43;490:2;450:43;:::i;:::-;434:60;:::i;:::-;516:3;540:2;535:3;528:15;568:2;563:3;559:12;552:19;;603:2;595:6;591:15;655:3;650:2;644;641:1;637:10;629:6;625:23;621:32;618:41;615:2;;;676:5;669;662:20;615:2;702:5;716:163;730:2;727:1;724:9;716:163;;;787:17;;775:30;;825:12;;;;857;;;;748:1;741:9;716:163;;;-1:-1:-1;897:5:1;;279:629;-1:-1:-1;;;;;;;279:629:1:o;913:610::-;956:5;1009:3;1002:4;994:6;990:17;986:27;976:2;;1031:5;1024;1017:20;976:2;1071:6;1058:20;1097:18;1093:2;1090:26;1087:2;;;1119:18;;:::i;:::-;1163:114;1271:4;1202:66;1195:4;1191:2;1187:13;1183:86;1179:97;1163:114;:::i;:::-;1302:2;1293:7;1286:19;1348:3;1341:4;1336:2;1328:6;1324:15;1320:26;1317:35;1314:2;;;1369:5;1362;1355:20;1314:2;1438;1431:4;1423:6;1419:17;1412:4;1403:7;1399:18;1386:55;1461:16;;;1479:4;1457:27;1450:42;;;;1465:7;966:557;-1:-1:-1;;966:557:1:o;1528:156::-;1594:20;;1654:4;1643:16;;1633:27;;1623:2;;1674:1;1671;1664:12;1689:196;1748:6;1801:2;1789:9;1780:7;1776:23;1772:32;1769:2;;;1822:6;1814;1807:22;1769:2;1850:29;1869:9;1850:29;:::i;1890:270::-;1958:6;1966;2019:2;2007:9;1998:7;1994:23;1990:32;1987:2;;;2040:6;2032;2025:22;1987:2;2068:29;2087:9;2068:29;:::i;:::-;2058:39;;2116:38;2150:2;2139:9;2135:18;2116:38;:::i;:::-;2106:48;;1977:183;;;;;:::o;2165:338::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:2;;;2332:6;2324;2317:22;2279:2;2360:29;2379:9;2360:29;:::i;:::-;2350:39;;2408:38;2442:2;2431:9;2427:18;2408:38;:::i;:::-;2398:48;;2493:2;2482:9;2478:18;2465:32;2455:42;;2269:234;;;;;:::o;2508:616::-;2619:6;2627;2635;2643;2651;2659;2667;2720:3;2708:9;2699:7;2695:23;2691:33;2688:2;;;2742:6;2734;2727:22;2688:2;2770:29;2789:9;2770:29;:::i;:::-;2760:39;;2818:38;2852:2;2841:9;2837:18;2818:38;:::i;:::-;2808:48;;2903:2;2892:9;2888:18;2875:32;2865:42;;2954:2;2943:9;2939:18;2926:32;2916:42;;2977:37;3009:3;2998:9;2994:19;2977:37;:::i;:::-;2967:47;;3061:3;3050:9;3046:19;3033:33;3023:43;;3113:3;3102:9;3098:19;3085:33;3075:43;;2678:446;;;;;;;;;;:::o;3129:264::-;3197:6;3205;3258:2;3246:9;3237:7;3233:23;3229:32;3226:2;;;3279:6;3271;3264:22;3226:2;3307:29;3326:9;3307:29;:::i;:::-;3297:39;3383:2;3368:18;;;;3355:32;;-1:-1:-1;;;3216:177:1:o;3398:1212::-;3516:6;3524;3577:2;3565:9;3556:7;3552:23;3548:32;3545:2;;;3598:6;3590;3583:22;3545:2;3643:9;3630:23;3672:18;3713:2;3705:6;3702:14;3699:2;;;3734:6;3726;3719:22;3699:2;3777:6;3766:9;3762:22;3752:32;;3822:7;3815:4;3811:2;3807:13;3803:27;3793:2;;3849:6;3841;3834:22;3793:2;3890;3877:16;3912:4;3936:60;3952:43;3992:2;3952:43;:::i;3936:60::-;4018:3;4042:2;4037:3;4030:15;4070:2;4065:3;4061:12;4054:19;;4101:2;4097;4093:11;4149:7;4144:2;4138;4135:1;4131:10;4127:2;4123:19;4119:28;4116:41;4113:2;;;4175:6;4167;4160:22;4113:2;4202:6;4193:15;;4217:169;4231:2;4228:1;4225:9;4217:169;;;4288:23;4307:3;4288:23;:::i;:::-;4276:36;;4249:1;4242:9;;;;;4332:12;;;;4364;;4217:169;;;-1:-1:-1;4405:5:1;-1:-1:-1;;4448:18:1;;4435:32;;-1:-1:-1;;4479:16:1;;;4476:2;;;4513:6;4505;4498:22;4476:2;;4541:63;4596:7;4585:8;4574:9;4570:24;4541:63;:::i;:::-;4531:73;;;3535:1075;;;;;:::o;4615:643::-;4710:6;4718;4726;4779:2;4767:9;4758:7;4754:23;4750:32;4747:2;;;4800:6;4792;4785:22;4747:2;4845:9;4832:23;4874:18;4915:2;4907:6;4904:14;4901:2;;;4936:6;4928;4921:22;4901:2;4964:50;5006:7;4997:6;4986:9;4982:22;4964:50;:::i;:::-;4954:60;;5067:2;5056:9;5052:18;5039:32;5023:48;;5096:2;5086:8;5083:16;5080:2;;;5117:6;5109;5102:22;5080:2;;5145:52;5189:7;5178:8;5167:9;5163:24;5145:52;:::i;:::-;5135:62;;;5216:36;5248:2;5237:9;5233:18;5216:36;:::i;:::-;5206:46;;4737:521;;;;;:::o;5263:793::-;5376:6;5384;5392;5400;5408;5461:3;5449:9;5440:7;5436:23;5432:33;5429:2;;;5483:6;5475;5468:22;5429:2;5528:9;5515:23;5557:18;5598:2;5590:6;5587:14;5584:2;;;5619:6;5611;5604:22;5584:2;5647:50;5689:7;5680:6;5669:9;5665:22;5647:50;:::i;:::-;5637:60;;5750:2;5739:9;5735:18;5722:32;5706:48;;5779:2;5769:8;5766:16;5763:2;;;5800:6;5792;5785:22;5763:2;;5828:52;5872:7;5861:8;5850:9;5846:24;5828:52;:::i;:::-;5818:62;;;5899:36;5931:2;5920:9;5916:18;5899:36;:::i;:::-;5889:46;;5954:38;5988:2;5977:9;5973:18;5954:38;:::i;:::-;5944:48;;6011:39;6045:3;6034:9;6030:19;6011:39;:::i;:::-;6001:49;;5419:637;;;;;;;;:::o;6061:190::-;6120:6;6173:2;6161:9;6152:7;6148:23;6144:32;6141:2;;;6194:6;6186;6179:22;6141:2;-1:-1:-1;6222:23:1;;6131:120;-1:-1:-1;6131:120:1:o;8849:662::-;8961:4;8990:2;9019;9008:9;9001:21;9051:6;9045:13;9094:6;9089:2;9078:9;9074:18;9067:34;9119:4;9132:140;9146:6;9143:1;9140:13;9132:140;;;9241:14;;;9237:23;;9231:30;9207:17;;;9226:2;9203:26;9196:66;9161:10;;9132:140;;;9290:6;9287:1;9284:13;9281:2;;;9360:4;9355:2;9346:6;9335:9;9331:22;9327:31;9320:45;9281:2;-1:-1:-1;9427:2:1;9415:15;9432:66;9411:88;9396:104;;;;9502:2;9392:113;;8970:541;-1:-1:-1;;;8970:541:1:o;19151:334::-;19222:2;19216:9;19278:2;19268:13;;19283:66;19264:86;19252:99;;19381:18;19366:34;;19402:22;;;19363:62;19360:2;;;19428:18;;:::i;:::-;19464:2;19457:22;19196:289;;-1:-1:-1;19196:289:1:o;19490:183::-;19550:4;19583:18;19575:6;19572:30;19569:2;;;19605:18;;:::i;:::-;-1:-1:-1;19650:1:1;19646:14;19662:4;19642:25;;19559:114::o;19678:128::-;19718:3;19749:1;19745:6;19742:1;19739:13;19736:2;;;19755:18;;:::i;:::-;-1:-1:-1;19791:9:1;;19726:80::o;19811:125::-;19851:4;19879:1;19876;19873:8;19870:2;;;19884:18;;:::i;:::-;-1:-1:-1;19921:9:1;;19860:76::o;19941:437::-;20020:1;20016:12;;;;20063;;;20084:2;;20138:4;20130:6;20126:17;20116:27;;20084:2;20191;20183:6;20180:14;20160:18;20157:38;20154:2;;;20228:77;20225:1;20218:88;20329:4;20326:1;20319:15;20357:4;20354:1;20347:15;20383:195;20422:3;20453:66;20446:5;20443:77;20440:2;;;20523:18;;:::i;:::-;-1:-1:-1;20570:1:1;20559:13;;20430:148::o;20583:184::-;20635:77;20632:1;20625:88;20732:4;20729:1;20722:15;20756:4;20753:1;20746:15;20772:184;20824:77;20821:1;20814:88;20921:4;20918:1;20911:15;20945:4;20942:1;20935:15
Swarm Source
ipfs://a2d5ecde39018a25201e428b4f293e96162fcc1f50c806a9d4a9f3e3e81486f4
Net Worth in USD
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.