Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 60 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 14940955 | 908 days ago | IN | 0 ETH | 0.00092441 | ||||
Set Allowed Addr... | 14706438 | 946 days ago | IN | 0 ETH | 0.00279821 | ||||
Set Allowed Addr... | 14706383 | 946 days ago | IN | 0 ETH | 0.0030552 | ||||
Set Allowed Addr... | 14706332 | 946 days ago | IN | 0 ETH | 0.00160045 | ||||
Set Allowed Addr... | 14706310 | 946 days ago | IN | 0 ETH | 0.00293588 | ||||
Set Allowed Addr... | 14706112 | 946 days ago | IN | 0 ETH | 0.00460757 | ||||
Set Allowed Addr... | 14705875 | 946 days ago | IN | 0 ETH | 0.00332419 | ||||
Approve | 14592608 | 964 days ago | IN | 0 ETH | 0.00136112 | ||||
Approve | 14592584 | 964 days ago | IN | 0 ETH | 0.00105341 | ||||
Approve | 14592147 | 964 days ago | IN | 0 ETH | 0.00167928 | ||||
Approve | 14591952 | 964 days ago | IN | 0 ETH | 0.00279715 | ||||
Approve | 14570971 | 967 days ago | IN | 0 ETH | 0.00183 | ||||
Set Allowed Addr... | 14570424 | 967 days ago | IN | 0 ETH | 0.00187644 | ||||
Approve | 14569610 | 967 days ago | IN | 0 ETH | 0.00159511 | ||||
Approve | 14566949 | 968 days ago | IN | 0 ETH | 0.00341255 | ||||
Approve | 14566944 | 968 days ago | IN | 0 ETH | 0.00329125 | ||||
Transfer | 14566862 | 968 days ago | IN | 0 ETH | 0.00187657 | ||||
Approve | 14566835 | 968 days ago | IN | 0 ETH | 0.00273598 | ||||
Approve | 14559857 | 969 days ago | IN | 0 ETH | 0.00150544 | ||||
Transfer | 14549090 | 970 days ago | IN | 0 ETH | 0.00093223 | ||||
Transfer | 14549089 | 970 days ago | IN | 0 ETH | 0.00093279 | ||||
Transfer | 14548278 | 970 days ago | IN | 0 ETH | 0.00131781 | ||||
Approve | 14547895 | 971 days ago | IN | 0 ETH | 0.00257813 | ||||
Approve | 14547855 | 971 days ago | IN | 0 ETH | 0.00217558 | ||||
Approve | 14547196 | 971 days ago | IN | 0 ETH | 0.00268929 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TUSKCOIN
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-20 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @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/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _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 Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/elontusks/TuskCoin.sol //SPDX-License-Identifier: MIT pragma solidity 0.8.7; /** * @title Divine Wolves Market * @author Decentralized Devs - Angelo */ interface INFT { function balanceOG(address _user) external view returns(uint256); } contract TUSKCOIN is ERC20("TUSKCOIN", "TUSKCOIN"), Ownable{ using SafeMath for uint256; uint256 constant public BASE_RATE = 2 ether; uint256 constant public INITIAL_ISSUANCE = 5 ether; // Tue Mar 18 2031 17:46:47 GMT+0000 uint256 constant public END = 1931622407; mapping(address => uint256) public rewards; mapping(address => uint256) public lastUpdate; mapping(address => bool) public allowedAddresses; INFT public nftContract; event RewardPaid(address indexed user, uint256 reward); modifier onlyAllowedContracts { require(allowedAddresses[msg.sender]); _; } function setNftContract(address _address) public onlyOwner { nftContract = INFT(_address); } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function setAllowedAddresses(address _address, bool _state) public onlyOwner { allowedAddresses[_address] = _state; } // called when minting many NFTs function updateRewardOnMint(address _user, uint256 _amount) onlyAllowedContracts external { uint256 time = min(block.timestamp, END); uint256 timerUser = lastUpdate[_user]; if (timerUser > 0) rewards[_user] = rewards[_user].add(nftContract.balanceOG(_user).mul(BASE_RATE.mul((time.sub(timerUser)))).div(86400) .add(_amount.mul(INITIAL_ISSUANCE))); else rewards[_user] = rewards[_user].add(_amount.mul(INITIAL_ISSUANCE)); lastUpdate[_user] = time; } // called on transfers function updateReward(address _from, address _to) onlyAllowedContracts external { uint256 time = min(block.timestamp, END); uint256 timerFrom = lastUpdate[_from]; if (timerFrom > 0) rewards[_from] += nftContract.balanceOG(_from).mul(BASE_RATE.mul((time.sub(timerFrom)))).div(86400); if (timerFrom != END) lastUpdate[_from] = time; if (_to != address(0)) { uint256 timerTo = lastUpdate[_to]; if (timerTo > 0) rewards[_to] += nftContract.balanceOG(_to).mul(BASE_RATE.mul((time.sub(timerTo)))).div(86400); if (timerTo != END) lastUpdate[_to] = time; } } function getReward(address _to) external { require(msg.sender == address(nftContract)); uint256 reward = rewards[_to]; if (reward > 0) { rewards[_to] = 0; _mint(_to, reward); emit RewardPaid(_to, reward); } } function burn(address _from, uint256 _amount) onlyAllowedContracts external { _burn(_from, _amount); } function getTotalClaimable(address _user) external view returns(uint256) { uint256 time = min(block.timestamp, END); uint256 pending = nftContract.balanceOG(_user).mul(BASE_RATE.mul((time.sub(lastUpdate[_user])))).div(86400); return rewards[_user] + pending; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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":"BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_ISSUANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","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":"_to","type":"address"}],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getTotalClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftContract","outputs":[{"internalType":"contract INFT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setAllowedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setNftContract","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateRewardOnMint","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f5455534b434f494e0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f5455534b434f494e000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612ed380620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806389781912116100f9578063cb03fb1e11610097578063d56d229d11610071578063d56d229d1461052d578063dd62ed3e1461054b578063efe7a5041461057b578063f2fde38b14610599576101c4565b8063cb03fb1e146104c5578063cc240c01146104f5578063d230af3a14610511576101c4565b80639dc29fac116100d35780639dc29fac1461042d578063a457c2d714610449578063a9059cbb14610479578063c00007b0146104a9576101c4565b806389781912146103d55780638da5cb5b146103f157806395d89b411461040f576101c4565b8063395093511161016657806344a6b86c1161014057806344a6b86c1461036157806352f5ad771461037f57806370a082311461039b578063715018a6146103cb576101c4565b806339509351146102e35780634120657a1461031357806341910f9014610343576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063267e8ab614610295578063313ce567146102c5576101c4565b806306fdde03146101c95780630700037d146101e7578063095ea7b314610217575b600080fd5b6101d16105b5565b6040516101de919061267a565b60405180910390f35b61020160048036038101906101fc9190612294565b610647565b60405161020e919061281c565b60405180910390f35b610231600480360381019061022c9190612394565b61065f565b60405161023e9190612644565b60405180910390f35b61024f610682565b60405161025c919061281c565b60405180910390f35b61027f600480360381019061027a9190612301565b61068c565b60405161028c9190612644565b60405180910390f35b6102af60048036038101906102aa9190612294565b6106bb565b6040516102bc919061281c565b60405180910390f35b6102cd610863565b6040516102da9190612837565b60405180910390f35b6102fd60048036038101906102f89190612394565b61086c565b60405161030a9190612644565b60405180910390f35b61032d60048036038101906103289190612294565b610916565b60405161033a9190612644565b60405180910390f35b61034b610936565b604051610358919061281c565b60405180910390f35b610369610942565b604051610376919061281c565b60405180910390f35b61039960048036038101906103949190612294565b61094e565b005b6103b560048036038101906103b09190612294565b610a0e565b6040516103c2919061281c565b60405180910390f35b6103d3610a56565b005b6103ef60048036038101906103ea9190612354565b610ade565b005b6103f9610bb5565b6040516104069190612629565b60405180910390f35b610417610bdf565b604051610424919061267a565b60405180910390f35b61044760048036038101906104429190612394565b610c71565b005b610463600480360381019061045e9190612394565b610cd5565b6040516104709190612644565b60405180910390f35b610493600480360381019061048e9190612394565b610dbf565b6040516104a09190612644565b60405180910390f35b6104c360048036038101906104be9190612294565b610de2565b005b6104df60048036038101906104da9190612294565b610f2b565b6040516104ec919061281c565b60405180910390f35b61050f600480360381019061050a9190612394565b610f43565b005b61052b600480360381019061052691906122c1565b6112b5565b005b61053561173b565b604051610542919061265f565b60405180910390f35b610565600480360381019061056091906122c1565b611761565b604051610572919061281c565b60405180910390f35b6105836117e8565b604051610590919061281c565b60405180910390f35b6105b360048036038101906105ae9190612294565b6117f0565b005b6060600380546105c490612a41565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090612a41565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b60066020528060005260406000206000915090505481565b60008061066a6118e8565b90506106778185856118f0565b600191505092915050565b6000600254905090565b6000806106976118e8565b90506106a4858285611abb565b6106af858585611b47565b60019150509392505050565b6000806106cc426373223807611dc8565b9050600061080d620151806107ff61074661072f600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205487611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b81526004016107a19190612629565b60206040518083038186803b1580156107b957600080fd5b505afa1580156107cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f191906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b905080600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461085a919061286e565b92505050919050565b60006012905090565b6000806108776118e8565b905061090b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610906919061286e565b6118f0565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b671bc16d674ec8000081565b674563918244f4000081565b6109566118e8565b73ffffffffffffffffffffffffffffffffffffffff16610974610bb5565b73ffffffffffffffffffffffffffffffffffffffff16146109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c19061275c565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a5e6118e8565b73ffffffffffffffffffffffffffffffffffffffff16610a7c610bb5565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac99061275c565b60405180910390fd5b610adc6000611e23565b565b610ae66118e8565b73ffffffffffffffffffffffffffffffffffffffff16610b04610bb5565b73ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061275c565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bee90612a41565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90612a41565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b5050505050905090565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cc757600080fd5b610cd18282611ee9565b5050565b600080610ce06118e8565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906127dc565b60405180910390fd5b610db382868684036118f0565b60019250505092915050565b600080610dca6118e8565b9050610dd7818585611b47565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e3c57600080fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115610f27576000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed882826120c0565b8173ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051610f1e919061281c565b60405180910390a25b5050565b60076020528060005260406000206000915090505481565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f9957600080fd5b6000610fa9426373223807611dc8565b90506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156111bb57611173611125611019674563918244f4000086611df790919063ffffffff16565b61111762015180611109611050611039888a611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d8c6040518263ffffffff1660e01b81526004016110ab9190612629565b60206040518083038186803b1580156110c357600080fd5b505afa1580156110d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fb91906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b61222090919063ffffffff16565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222090919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061126b565b6112276111d9674563918244f4000085611df790919063ffffffff16565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222090919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661130b57600080fd5b600061131b426373223807611dc8565b90506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156114be576114686201518061145a6113a161138a8587611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b81526004016113fc9190612629565b60206040518083038186803b15801561141457600080fd5b505afa158015611428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144c91906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b6919061286e565b925050819055505b6373223807811461150e5781600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611735576000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156116e35761168d6201518061167f6115c66115af8588611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b81526004016116219190612629565b60206040518083038186803b15801561163957600080fd5b505afa15801561164d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167191906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116db919061286e565b925050819055505b637322380781146117335782600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b637322380781565b6117f86118e8565b73ffffffffffffffffffffffffffffffffffffffff16611816610bb5565b73ffffffffffffffffffffffffffffffffffffffff161461186c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118639061275c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d3906126dc565b60405180910390fd5b6118e581611e23565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611957906127bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906126fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611aae919061281c565b60405180910390a3505050565b6000611ac78484611761565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b415781811015611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a9061271c565b60405180910390fd5b611b4084848484036118f0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae9061279c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e9061269c565b60405180910390fd5b611c32838383612236565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf9061273c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d4b919061286e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611daf919061281c565b60405180910390a3611dc284848461223b565b50505050565b6000818310611dd75781611dd9565b825b905092915050565b60008183611def919061294f565b905092915050565b60008183611e0591906128f5565b905092915050565b60008183611e1b91906128c4565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f509061277c565b60405180910390fd5b611f6582600083612236565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906126bc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612042919061294f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120a7919061281c565b60405180910390a36120bb8360008461223b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906127fc565b60405180910390fd5b61213c60008383612236565b806002600082825461214e919061286e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a3919061286e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612208919061281c565b60405180910390a361221c6000838361223b565b5050565b6000818361222e919061286e565b905092915050565b505050565b505050565b60008135905061224f81612e58565b92915050565b60008135905061226481612e6f565b92915050565b60008135905061227981612e86565b92915050565b60008151905061228e81612e86565b92915050565b6000602082840312156122aa576122a9612b00565b5b60006122b884828501612240565b91505092915050565b600080604083850312156122d8576122d7612b00565b5b60006122e685828601612240565b92505060206122f785828601612240565b9150509250929050565b60008060006060848603121561231a57612319612b00565b5b600061232886828701612240565b935050602061233986828701612240565b925050604061234a8682870161226a565b9150509250925092565b6000806040838503121561236b5761236a612b00565b5b600061237985828601612240565b925050602061238a85828601612255565b9150509250929050565b600080604083850312156123ab576123aa612b00565b5b60006123b985828601612240565b92505060206123ca8582860161226a565b9150509250929050565b6000602082840312156123ea576123e9612b00565b5b60006123f88482850161227f565b91505092915050565b61240a81612983565b82525050565b61241981612995565b82525050565b612428816129d8565b82525050565b600061243982612852565b612443818561285d565b9350612453818560208601612a0e565b61245c81612b05565b840191505092915050565b600061247460238361285d565b915061247f82612b16565b604082019050919050565b600061249760228361285d565b91506124a282612b65565b604082019050919050565b60006124ba60268361285d565b91506124c582612bb4565b604082019050919050565b60006124dd60228361285d565b91506124e882612c03565b604082019050919050565b6000612500601d8361285d565b915061250b82612c52565b602082019050919050565b600061252360268361285d565b915061252e82612c7b565b604082019050919050565b600061254660208361285d565b915061255182612cca565b602082019050919050565b600061256960218361285d565b915061257482612cf3565b604082019050919050565b600061258c60258361285d565b915061259782612d42565b604082019050919050565b60006125af60248361285d565b91506125ba82612d91565b604082019050919050565b60006125d260258361285d565b91506125dd82612de0565b604082019050919050565b60006125f5601f8361285d565b915061260082612e2f565b602082019050919050565b612614816129c1565b82525050565b612623816129cb565b82525050565b600060208201905061263e6000830184612401565b92915050565b60006020820190506126596000830184612410565b92915050565b6000602082019050612674600083018461241f565b92915050565b60006020820190508181036000830152612694818461242e565b905092915050565b600060208201905081810360008301526126b581612467565b9050919050565b600060208201905081810360008301526126d58161248a565b9050919050565b600060208201905081810360008301526126f5816124ad565b9050919050565b60006020820190508181036000830152612715816124d0565b9050919050565b60006020820190508181036000830152612735816124f3565b9050919050565b6000602082019050818103600083015261275581612516565b9050919050565b6000602082019050818103600083015261277581612539565b9050919050565b600060208201905081810360008301526127958161255c565b9050919050565b600060208201905081810360008301526127b58161257f565b9050919050565b600060208201905081810360008301526127d5816125a2565b9050919050565b600060208201905081810360008301526127f5816125c5565b9050919050565b60006020820190508181036000830152612815816125e8565b9050919050565b6000602082019050612831600083018461260b565b92915050565b600060208201905061284c600083018461261a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612879826129c1565b9150612884836129c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b9576128b8612a73565b5b828201905092915050565b60006128cf826129c1565b91506128da836129c1565b9250826128ea576128e9612aa2565b5b828204905092915050565b6000612900826129c1565b915061290b836129c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561294457612943612a73565b5b828202905092915050565b600061295a826129c1565b9150612965836129c1565b92508282101561297857612977612a73565b5b828203905092915050565b600061298e826129a1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006129e3826129ea565b9050919050565b60006129f5826129fc565b9050919050565b6000612a07826129a1565b9050919050565b60005b83811015612a2c578082015181840152602081019050612a11565b83811115612a3b576000848401525b50505050565b60006002820490506001821680612a5957607f821691505b60208210811415612a6d57612a6c612ad1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612e6181612983565b8114612e6c57600080fd5b50565b612e7881612995565b8114612e8357600080fd5b50565b612e8f816129c1565b8114612e9a57600080fd5b5056fea26469706673582212207d10b8ad44f6a3b96188c6f1e356d4761bbe9c0ac22794f4908d7fbbf220847b64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806389781912116100f9578063cb03fb1e11610097578063d56d229d11610071578063d56d229d1461052d578063dd62ed3e1461054b578063efe7a5041461057b578063f2fde38b14610599576101c4565b8063cb03fb1e146104c5578063cc240c01146104f5578063d230af3a14610511576101c4565b80639dc29fac116100d35780639dc29fac1461042d578063a457c2d714610449578063a9059cbb14610479578063c00007b0146104a9576101c4565b806389781912146103d55780638da5cb5b146103f157806395d89b411461040f576101c4565b8063395093511161016657806344a6b86c1161014057806344a6b86c1461036157806352f5ad771461037f57806370a082311461039b578063715018a6146103cb576101c4565b806339509351146102e35780634120657a1461031357806341910f9014610343576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063267e8ab614610295578063313ce567146102c5576101c4565b806306fdde03146101c95780630700037d146101e7578063095ea7b314610217575b600080fd5b6101d16105b5565b6040516101de919061267a565b60405180910390f35b61020160048036038101906101fc9190612294565b610647565b60405161020e919061281c565b60405180910390f35b610231600480360381019061022c9190612394565b61065f565b60405161023e9190612644565b60405180910390f35b61024f610682565b60405161025c919061281c565b60405180910390f35b61027f600480360381019061027a9190612301565b61068c565b60405161028c9190612644565b60405180910390f35b6102af60048036038101906102aa9190612294565b6106bb565b6040516102bc919061281c565b60405180910390f35b6102cd610863565b6040516102da9190612837565b60405180910390f35b6102fd60048036038101906102f89190612394565b61086c565b60405161030a9190612644565b60405180910390f35b61032d60048036038101906103289190612294565b610916565b60405161033a9190612644565b60405180910390f35b61034b610936565b604051610358919061281c565b60405180910390f35b610369610942565b604051610376919061281c565b60405180910390f35b61039960048036038101906103949190612294565b61094e565b005b6103b560048036038101906103b09190612294565b610a0e565b6040516103c2919061281c565b60405180910390f35b6103d3610a56565b005b6103ef60048036038101906103ea9190612354565b610ade565b005b6103f9610bb5565b6040516104069190612629565b60405180910390f35b610417610bdf565b604051610424919061267a565b60405180910390f35b61044760048036038101906104429190612394565b610c71565b005b610463600480360381019061045e9190612394565b610cd5565b6040516104709190612644565b60405180910390f35b610493600480360381019061048e9190612394565b610dbf565b6040516104a09190612644565b60405180910390f35b6104c360048036038101906104be9190612294565b610de2565b005b6104df60048036038101906104da9190612294565b610f2b565b6040516104ec919061281c565b60405180910390f35b61050f600480360381019061050a9190612394565b610f43565b005b61052b600480360381019061052691906122c1565b6112b5565b005b61053561173b565b604051610542919061265f565b60405180910390f35b610565600480360381019061056091906122c1565b611761565b604051610572919061281c565b60405180910390f35b6105836117e8565b604051610590919061281c565b60405180910390f35b6105b360048036038101906105ae9190612294565b6117f0565b005b6060600380546105c490612a41565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090612a41565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b60066020528060005260406000206000915090505481565b60008061066a6118e8565b90506106778185856118f0565b600191505092915050565b6000600254905090565b6000806106976118e8565b90506106a4858285611abb565b6106af858585611b47565b60019150509392505050565b6000806106cc426373223807611dc8565b9050600061080d620151806107ff61074661072f600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205487611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b81526004016107a19190612629565b60206040518083038186803b1580156107b957600080fd5b505afa1580156107cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f191906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b905080600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461085a919061286e565b92505050919050565b60006012905090565b6000806108776118e8565b905061090b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610906919061286e565b6118f0565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b671bc16d674ec8000081565b674563918244f4000081565b6109566118e8565b73ffffffffffffffffffffffffffffffffffffffff16610974610bb5565b73ffffffffffffffffffffffffffffffffffffffff16146109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c19061275c565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a5e6118e8565b73ffffffffffffffffffffffffffffffffffffffff16610a7c610bb5565b73ffffffffffffffffffffffffffffffffffffffff1614610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac99061275c565b60405180910390fd5b610adc6000611e23565b565b610ae66118e8565b73ffffffffffffffffffffffffffffffffffffffff16610b04610bb5565b73ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b519061275c565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bee90612a41565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90612a41565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b5050505050905090565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cc757600080fd5b610cd18282611ee9565b5050565b600080610ce06118e8565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906127dc565b60405180910390fd5b610db382868684036118f0565b60019250505092915050565b600080610dca6118e8565b9050610dd7818585611b47565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e3c57600080fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115610f27576000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed882826120c0565b8173ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051610f1e919061281c565b60405180910390a25b5050565b60076020528060005260406000206000915090505481565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f9957600080fd5b6000610fa9426373223807611dc8565b90506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156111bb57611173611125611019674563918244f4000086611df790919063ffffffff16565b61111762015180611109611050611039888a611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d8c6040518263ffffffff1660e01b81526004016110ab9190612629565b60206040518083038186803b1580156110c357600080fd5b505afa1580156110d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110fb91906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b61222090919063ffffffff16565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222090919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061126b565b6112276111d9674563918244f4000085611df790919063ffffffff16565b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461222090919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661130b57600080fd5b600061131b426373223807611dc8565b90506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156114be576114686201518061145a6113a161138a8587611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b81526004016113fc9190612629565b60206040518083038186803b15801561141457600080fd5b505afa158015611428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144c91906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114b6919061286e565b925050819055505b6373223807811461150e5781600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611735576000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111156116e35761168d6201518061167f6115c66115af8588611de190919063ffffffff16565b671bc16d674ec80000611df790919063ffffffff16565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338712d8d896040518263ffffffff1660e01b81526004016116219190612629565b60206040518083038186803b15801561163957600080fd5b505afa15801561164d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167191906123d4565b611df790919063ffffffff16565b611e0d90919063ffffffff16565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116db919061286e565b925050819055505b637322380781146117335782600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b637322380781565b6117f86118e8565b73ffffffffffffffffffffffffffffffffffffffff16611816610bb5565b73ffffffffffffffffffffffffffffffffffffffff161461186c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118639061275c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d3906126dc565b60405180910390fd5b6118e581611e23565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611960576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611957906127bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906126fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611aae919061281c565b60405180910390a3505050565b6000611ac78484611761565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b415781811015611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a9061271c565b60405180910390fd5b611b4084848484036118f0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae9061279c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e9061269c565b60405180910390fd5b611c32838383612236565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf9061273c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d4b919061286e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611daf919061281c565b60405180910390a3611dc284848461223b565b50505050565b6000818310611dd75781611dd9565b825b905092915050565b60008183611def919061294f565b905092915050565b60008183611e0591906128f5565b905092915050565b60008183611e1b91906128c4565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f509061277c565b60405180910390fd5b611f6582600083612236565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906126bc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612042919061294f565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120a7919061281c565b60405180910390a36120bb8360008461223b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906127fc565b60405180910390fd5b61213c60008383612236565b806002600082825461214e919061286e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121a3919061286e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612208919061281c565b60405180910390a361221c6000838361223b565b5050565b6000818361222e919061286e565b905092915050565b505050565b505050565b60008135905061224f81612e58565b92915050565b60008135905061226481612e6f565b92915050565b60008135905061227981612e86565b92915050565b60008151905061228e81612e86565b92915050565b6000602082840312156122aa576122a9612b00565b5b60006122b884828501612240565b91505092915050565b600080604083850312156122d8576122d7612b00565b5b60006122e685828601612240565b92505060206122f785828601612240565b9150509250929050565b60008060006060848603121561231a57612319612b00565b5b600061232886828701612240565b935050602061233986828701612240565b925050604061234a8682870161226a565b9150509250925092565b6000806040838503121561236b5761236a612b00565b5b600061237985828601612240565b925050602061238a85828601612255565b9150509250929050565b600080604083850312156123ab576123aa612b00565b5b60006123b985828601612240565b92505060206123ca8582860161226a565b9150509250929050565b6000602082840312156123ea576123e9612b00565b5b60006123f88482850161227f565b91505092915050565b61240a81612983565b82525050565b61241981612995565b82525050565b612428816129d8565b82525050565b600061243982612852565b612443818561285d565b9350612453818560208601612a0e565b61245c81612b05565b840191505092915050565b600061247460238361285d565b915061247f82612b16565b604082019050919050565b600061249760228361285d565b91506124a282612b65565b604082019050919050565b60006124ba60268361285d565b91506124c582612bb4565b604082019050919050565b60006124dd60228361285d565b91506124e882612c03565b604082019050919050565b6000612500601d8361285d565b915061250b82612c52565b602082019050919050565b600061252360268361285d565b915061252e82612c7b565b604082019050919050565b600061254660208361285d565b915061255182612cca565b602082019050919050565b600061256960218361285d565b915061257482612cf3565b604082019050919050565b600061258c60258361285d565b915061259782612d42565b604082019050919050565b60006125af60248361285d565b91506125ba82612d91565b604082019050919050565b60006125d260258361285d565b91506125dd82612de0565b604082019050919050565b60006125f5601f8361285d565b915061260082612e2f565b602082019050919050565b612614816129c1565b82525050565b612623816129cb565b82525050565b600060208201905061263e6000830184612401565b92915050565b60006020820190506126596000830184612410565b92915050565b6000602082019050612674600083018461241f565b92915050565b60006020820190508181036000830152612694818461242e565b905092915050565b600060208201905081810360008301526126b581612467565b9050919050565b600060208201905081810360008301526126d58161248a565b9050919050565b600060208201905081810360008301526126f5816124ad565b9050919050565b60006020820190508181036000830152612715816124d0565b9050919050565b60006020820190508181036000830152612735816124f3565b9050919050565b6000602082019050818103600083015261275581612516565b9050919050565b6000602082019050818103600083015261277581612539565b9050919050565b600060208201905081810360008301526127958161255c565b9050919050565b600060208201905081810360008301526127b58161257f565b9050919050565b600060208201905081810360008301526127d5816125a2565b9050919050565b600060208201905081810360008301526127f5816125c5565b9050919050565b60006020820190508181036000830152612815816125e8565b9050919050565b6000602082019050612831600083018461260b565b92915050565b600060208201905061284c600083018461261a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000612879826129c1565b9150612884836129c1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b9576128b8612a73565b5b828201905092915050565b60006128cf826129c1565b91506128da836129c1565b9250826128ea576128e9612aa2565b5b828204905092915050565b6000612900826129c1565b915061290b836129c1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561294457612943612a73565b5b828202905092915050565b600061295a826129c1565b9150612965836129c1565b92508282101561297857612977612a73565b5b828203905092915050565b600061298e826129a1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006129e3826129ea565b9050919050565b60006129f5826129fc565b9050919050565b6000612a07826129a1565b9050919050565b60005b83811015612a2c578082015181840152602081019050612a11565b83811115612a3b576000848401525b50505050565b60006002820490506001821680612a5957607f821691505b60208210811415612a6d57612a6c612ad1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612e6181612983565b8114612e6c57600080fd5b50565b612e7881612995565b8114612e8357600080fd5b50565b612e8f816129c1565b8114612e9a57600080fd5b5056fea26469706673582212207d10b8ad44f6a3b96188c6f1e356d4761bbe9c0ac22794f4908d7fbbf220847b64736f6c63430008070033
Deployed Bytecode Sourcemap
35798:2790:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24713:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36080:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27064:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25833:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27845:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38314:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25675:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28549:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36178:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35893:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35941:50;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36436:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26004:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18136:103;;;:::i;:::-;;36660:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17485:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24932:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38202:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29292:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26337:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37963:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36126:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36831:479;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37340:618;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36232:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26593:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36034:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18394:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24713:100;24767:13;24800:5;24793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24713:100;:::o;36080:42::-;;;;;;;;;;;;;;;;;:::o;27064:201::-;27147:4;27164:13;27180:12;:10;:12::i;:::-;27164:28;;27203:32;27212:5;27219:7;27228:6;27203:8;:32::i;:::-;27253:4;27246:11;;;27064:201;;;;:::o;25833:108::-;25894:7;25921:12;;25914:19;;25833:108;:::o;27845:295::-;27976:4;27993:15;28011:12;:10;:12::i;:::-;27993:30;;28034:38;28050:4;28056:7;28065:6;28034:15;:38::i;:::-;28083:27;28093:4;28099:2;28103:6;28083:9;:27::i;:::-;28128:4;28121:11;;;27845:295;;;;;:::o;38314:271::-;38378:7;38392:12;38407:25;38411:15;36064:10;38407:3;:25::i;:::-;38392:40;;38437:15;38455:89;38538:5;38455:78;38488:44;38503:27;38512:10;:17;38523:5;38512:17;;;;;;;;;;;;;;;;38503:4;:8;;:27;;;;:::i;:::-;35929:7;38488:13;;:44;;;;:::i;:::-;38455:11;;;;;;;;;;;:21;;;38477:5;38455:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:32;;:78;;;;:::i;:::-;:82;;:89;;;;:::i;:::-;38437:107;;38573:7;38556;:14;38564:5;38556:14;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;38549:31;;;;38314:271;;;:::o;25675:93::-;25733:5;25758:2;25751:9;;25675:93;:::o;28549:240::-;28637:4;28654:13;28670:12;:10;:12::i;:::-;28654:28;;28693:66;28702:5;28709:7;28748:10;28718:11;:18;28730:5;28718:18;;;;;;;;;;;;;;;:27;28737:7;28718:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;28693:8;:66::i;:::-;28777:4;28770:11;;;28549:240;;;;:::o;36178:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;35893:43::-;35929:7;35893:43;:::o;35941:50::-;35984:7;35941:50;:::o;36436:114::-;17716:12;:10;:12::i;:::-;17705:23;;:7;:5;:7::i;:::-;:23;;;17697:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36533:8:::1;36514:11;;:28;;;;;;;;;;;;;;;;;;36436:114:::0;:::o;26004:127::-;26078:7;26105:9;:18;26115:7;26105:18;;;;;;;;;;;;;;;;26098:25;;26004:127;;;:::o;18136:103::-;17716:12;:10;:12::i;:::-;17705:23;;:7;:5;:7::i;:::-;:23;;;17697:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18201:30:::1;18228:1;18201:18;:30::i;:::-;18136:103::o:0;36660:131::-;17716:12;:10;:12::i;:::-;17705:23;;:7;:5;:7::i;:::-;:23;;;17697:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36777:6:::1;36748:16;:26;36765:8;36748:26;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36660:131:::0;;:::o;17485:87::-;17531:7;17558:6;;;;;;;;;;;17551:13;;17485:87;:::o;24932:104::-;24988:13;25021:7;25014:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24932:104;:::o;38202:107::-;36379:16;:28;36396:10;36379:28;;;;;;;;;;;;;;;;;;;;;;;;;36371:37;;;;;;38283:21:::1;38289:5;38296:7;38283:5;:21::i;:::-;38202:107:::0;;:::o;29292:438::-;29385:4;29402:13;29418:12;:10;:12::i;:::-;29402:28;;29441:24;29468:11;:18;29480:5;29468:18;;;;;;;;;;;;;;;:27;29487:7;29468:27;;;;;;;;;;;;;;;;29441:54;;29534:15;29514:16;:35;;29506:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29627:60;29636:5;29643:7;29671:15;29652:16;:34;29627:8;:60::i;:::-;29718:4;29711:11;;;;29292:438;;;;:::o;26337:193::-;26416:4;26433:13;26449:12;:10;:12::i;:::-;26433:28;;26472;26482:5;26489:2;26493:6;26472:9;:28::i;:::-;26518:4;26511:11;;;26337:193;;;;:::o;37963:234::-;38039:11;;;;;;;;;;;38017:34;;:10;:34;;;38009:43;;;;;;38057:14;38074:7;:12;38082:3;38074:12;;;;;;;;;;;;;;;;38057:29;;38104:1;38095:6;:10;38091:102;;;38128:1;38113:7;:12;38121:3;38113:12;;;;;;;;;;;;;;;:16;;;;38135:18;38141:3;38146:6;38135:5;:18::i;:::-;38175:3;38164:23;;;38180:6;38164:23;;;;;;:::i;:::-;;;;;;;;38091:102;38004:193;37963:234;:::o;36126:45::-;;;;;;;;;;;;;;;;;:::o;36831:479::-;36379:16;:28;36396:10;36379:28;;;;;;;;;;;;;;;;;;;;;;;;;36371:37;;;;;;36926:12:::1;36941:25;36945:15;36064:10;36941:3;:25::i;:::-;36926:40;;36971:17;36991:10;:17;37002:5;36991:17;;;;;;;;;;;;;;;;36971:37;;37029:1;37017:9;:13;37013:263;;;37053:142;37072:122;37164:29;35984:7;37164;:11;;:29;;;;:::i;:::-;37072:81;37147:5;37072:70;37105:36;37120:19;37129:9;37120:4;:8;;:19;;;;:::i;:::-;35929:7;37105:13;;:36;;;;:::i;:::-;37072:11;;;;;;;;;;;:21;;;37094:5;37072:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:32;;:70;;;;:::i;:::-;:74;;:81;;;;:::i;:::-;:91;;:122;;;;:::i;:::-;37053:7;:14;37061:5;37053:14;;;;;;;;;;;;;;;;:18;;:142;;;;:::i;:::-;37036:7;:14;37044:5;37036:14;;;;;;;;;;;;;;;:159;;;;37013:263;;;37227:49;37246:29;35984:7;37246;:11;;:29;;;;:::i;:::-;37227:7;:14;37235:5;37227:14;;;;;;;;;;;;;;;;:18;;:49;;;;:::i;:::-;37210:7;:14;37218:5;37210:14;;;;;;;;;;;;;;;:66;;;;37013:263;37301:4;37281:10;:17;37292:5;37281:17;;;;;;;;;;;;;;;:24;;;;36921:389;;36831:479:::0;;:::o;37340:618::-;36379:16;:28;36396:10;36379:28;;;;;;;;;;;;;;;;;;;;;;;;;36371:37;;;;;;37427:12:::1;37442:25;37446:15;36064:10;37442:3;:25::i;:::-;37427:40;;37473:17;37493:10;:17;37504:5;37493:17;;;;;;;;;;;;;;;;37473:37;;37532:1;37520:9;:13;37516:123;;;37558:81;37633:5;37558:70;37591:36;37606:19;37615:9;37606:4;:8;;:19;;;;:::i;:::-;35929:7;37591:13;;:36;;;;:::i;:::-;37558:11;;;;;;;;;;;:21;;;37580:5;37558:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:32;;:70;;;;:::i;:::-;:74;;:81;;;;:::i;:::-;37540:7;:14;37548:5;37540:14;;;;;;;;;;;;;;;;:99;;;;;;;:::i;:::-;;;;;;;;37516:123;36064:10;37649:9;:16;37645:51;;37692:4;37672:10;:17;37683:5;37672:17;;;;;;;;;;;;;;;:24;;;;37645:51;37721:1;37706:17;;:3;:17;;;37702:248;;37732:15;37750:10;:15;37761:3;37750:15;;;;;;;;;;;;;;;;37732:33;;37786:1;37776:7;:11;37772:116;;;37811:77;37882:5;37811:66;37842:34;37857:17;37866:7;37857:4;:8;;:17;;;;:::i;:::-;35929:7;37842:13;;:34;;;;:::i;:::-;37811:11;;;;;;;;;;;:21;;;37833:3;37811:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;;:66;;;;:::i;:::-;:70;;:77;;;;:::i;:::-;37795:7;:12;37803:3;37795:12;;;;;;;;;;;;;;;;:93;;;;;;;:::i;:::-;;;;;;;;37772:116;36064:10;37899:7;:14;37895:48;;37939:4;37921:10;:15;37932:3;37921:15;;;;;;;;;;;;;;;:22;;;;37895:48;37725:225;37702:248;37421:537;;37340:618:::0;;:::o;36232:24::-;;;;;;;;;;;;;:::o;26593:151::-;26682:7;26709:11;:18;26721:5;26709:18;;;;;;;;;;;;;;;:27;26728:7;26709:27;;;;;;;;;;;;;;;;26702:34;;26593:151;;;;:::o;36034:40::-;36064:10;36034:40;:::o;18394:201::-;17716:12;:10;:12::i;:::-;17705:23;;:7;:5;:7::i;:::-;:23;;;17697:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18503:1:::1;18483:22;;:8;:22;;;;18475:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18559:28;18578:8;18559:18;:28::i;:::-;18394:201:::0;:::o;16209:98::-;16262:7;16289:10;16282:17;;16209:98;:::o;32928:380::-;33081:1;33064:19;;:5;:19;;;;33056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33162:1;33143:21;;:7;:21;;;;33135:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33246:6;33216:11;:18;33228:5;33216:18;;;;;;;;;;;;;;;:27;33235:7;33216:27;;;;;;;;;;;;;;;:36;;;;33284:7;33268:32;;33277:5;33268:32;;;33293:6;33268:32;;;;;;:::i;:::-;;;;;;;;32928:380;;;:::o;33595:453::-;33730:24;33757:25;33767:5;33774:7;33757:9;:25::i;:::-;33730:52;;33817:17;33797:16;:37;33793:248;;33879:6;33859:16;:26;;33851:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33963:51;33972:5;33979:7;34007:6;33988:16;:25;33963:8;:51::i;:::-;33793:248;33719:329;33595:453;;;:::o;30209:671::-;30356:1;30340:18;;:4;:18;;;;30332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30433:1;30419:16;;:2;:16;;;;30411:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30488:38;30509:4;30515:2;30519:6;30488:20;:38::i;:::-;30539:19;30561:9;:15;30571:4;30561:15;;;;;;;;;;;;;;;;30539:37;;30610:6;30595:11;:21;;30587:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;30727:6;30713:11;:20;30695:9;:15;30705:4;30695:15;;;;;;;;;;;;;;;:38;;;;30772:6;30755:9;:13;30765:2;30755:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;30811:2;30796:26;;30805:4;30796:26;;;30815:6;30796:26;;;;;;:::i;:::-;;;;;;;;30835:37;30855:4;30861:2;30865:6;30835:19;:37::i;:::-;30321:559;30209:671;;;:::o;36555:97::-;36613:7;36638:1;36634;:5;:13;;36646:1;36634:13;;;36642:1;36634:13;36627:20;;36555:97;;;;:::o;3243:98::-;3301:7;3332:1;3328;:5;;;;:::i;:::-;3321:12;;3243:98;;;;:::o;3600:::-;3658:7;3689:1;3685;:5;;;;:::i;:::-;3678:12;;3600:98;;;;:::o;3999:::-;4057:7;4088:1;4084;:5;;;;:::i;:::-;4077:12;;3999:98;;;;:::o;18755:191::-;18829:16;18848:6;;;;;;;;;;;18829:25;;18874:8;18865:6;;:17;;;;;;;;;;;;;;;;;;18929:8;18898:40;;18919:8;18898:40;;;;;;;;;;;;18818:128;18755:191;:::o;31899:591::-;32002:1;31983:21;;:7;:21;;;;31975:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;32055:49;32076:7;32093:1;32097:6;32055:20;:49::i;:::-;32117:22;32142:9;:18;32152:7;32142:18;;;;;;;;;;;;;;;;32117:43;;32197:6;32179:14;:24;;32171:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32316:6;32299:14;:23;32278:9;:18;32288:7;32278:18;;;;;;;;;;;;;;;:44;;;;32360:6;32344:12;;:22;;;;;;;:::i;:::-;;;;;;;;32410:1;32384:37;;32393:7;32384:37;;;32414:6;32384:37;;;;;;:::i;:::-;;;;;;;;32434:48;32454:7;32471:1;32475:6;32434:19;:48::i;:::-;31964:526;31899:591;;:::o;31167:399::-;31270:1;31251:21;;:7;:21;;;;31243:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31321:49;31350:1;31354:7;31363:6;31321:20;:49::i;:::-;31399:6;31383:12;;:22;;;;;;;:::i;:::-;;;;;;;;31438:6;31416:9;:18;31426:7;31416:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;31481:7;31460:37;;31477:1;31460:37;;;31490:6;31460:37;;;;;;:::i;:::-;;;;;;;;31510:48;31538:1;31542:7;31551:6;31510:19;:48::i;:::-;31167:399;;:::o;2862:98::-;2920:7;2951:1;2947;:5;;;;:::i;:::-;2940:12;;2862:98;;;;:::o;34648:125::-;;;;:::o;35377:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;291:139;;;;:::o;436:143::-;493:5;524:6;518:13;509:22;;540:33;567:5;540:33;:::i;:::-;436:143;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:468::-;2090:6;2098;2147:2;2135:9;2126:7;2122:23;2118:32;2115:119;;;2153:79;;:::i;:::-;2115:119;2273:1;2298:53;2343:7;2334:6;2323:9;2319:22;2298:53;:::i;:::-;2288:63;;2244:117;2400:2;2426:50;2468:7;2459:6;2448:9;2444:22;2426:50;:::i;:::-;2416:60;;2371:115;2025:468;;;;;:::o;2499:474::-;2567:6;2575;2624:2;2612:9;2603:7;2599:23;2595:32;2592:119;;;2630:79;;:::i;:::-;2592:119;2750:1;2775:53;2820:7;2811:6;2800:9;2796:22;2775:53;:::i;:::-;2765:63;;2721:117;2877:2;2903:53;2948:7;2939:6;2928:9;2924:22;2903:53;:::i;:::-;2893:63;;2848:118;2499:474;;;;;:::o;2979:351::-;3049:6;3098:2;3086:9;3077:7;3073:23;3069:32;3066:119;;;3104:79;;:::i;:::-;3066:119;3224:1;3249:64;3305:7;3296:6;3285:9;3281:22;3249:64;:::i;:::-;3239:74;;3195:128;2979:351;;;;:::o;3336:118::-;3423:24;3441:5;3423:24;:::i;:::-;3418:3;3411:37;3336:118;;:::o;3460:109::-;3541:21;3556:5;3541:21;:::i;:::-;3536:3;3529:34;3460:109;;:::o;3575:157::-;3675:50;3719:5;3675:50;:::i;:::-;3670:3;3663:63;3575:157;;:::o;3738:364::-;3826:3;3854:39;3887:5;3854:39;:::i;:::-;3909:71;3973:6;3968:3;3909:71;:::i;:::-;3902:78;;3989:52;4034:6;4029:3;4022:4;4015:5;4011:16;3989:52;:::i;:::-;4066:29;4088:6;4066:29;:::i;:::-;4061:3;4057:39;4050:46;;3830:272;3738:364;;;;:::o;4108:366::-;4250:3;4271:67;4335:2;4330:3;4271:67;:::i;:::-;4264:74;;4347:93;4436:3;4347:93;:::i;:::-;4465:2;4460:3;4456:12;4449:19;;4108:366;;;:::o;4480:::-;4622:3;4643:67;4707:2;4702:3;4643:67;:::i;:::-;4636:74;;4719:93;4808:3;4719:93;:::i;:::-;4837:2;4832:3;4828:12;4821:19;;4480:366;;;:::o;4852:::-;4994:3;5015:67;5079:2;5074:3;5015:67;:::i;:::-;5008:74;;5091:93;5180:3;5091:93;:::i;:::-;5209:2;5204:3;5200:12;5193:19;;4852:366;;;:::o;5224:::-;5366:3;5387:67;5451:2;5446:3;5387:67;:::i;:::-;5380:74;;5463:93;5552:3;5463:93;:::i;:::-;5581:2;5576:3;5572:12;5565:19;;5224:366;;;:::o;5596:::-;5738:3;5759:67;5823:2;5818:3;5759:67;:::i;:::-;5752:74;;5835:93;5924:3;5835:93;:::i;:::-;5953:2;5948:3;5944:12;5937:19;;5596:366;;;:::o;5968:::-;6110:3;6131:67;6195:2;6190:3;6131:67;:::i;:::-;6124:74;;6207:93;6296:3;6207:93;:::i;:::-;6325:2;6320:3;6316:12;6309:19;;5968:366;;;:::o;6340:::-;6482:3;6503:67;6567:2;6562:3;6503:67;:::i;:::-;6496:74;;6579:93;6668:3;6579:93;:::i;:::-;6697:2;6692:3;6688:12;6681:19;;6340:366;;;:::o;6712:::-;6854:3;6875:67;6939:2;6934:3;6875:67;:::i;:::-;6868:74;;6951:93;7040:3;6951:93;:::i;:::-;7069:2;7064:3;7060:12;7053:19;;6712:366;;;:::o;7084:::-;7226:3;7247:67;7311:2;7306:3;7247:67;:::i;:::-;7240:74;;7323:93;7412:3;7323:93;:::i;:::-;7441:2;7436:3;7432:12;7425:19;;7084:366;;;:::o;7456:::-;7598:3;7619:67;7683:2;7678:3;7619:67;:::i;:::-;7612:74;;7695:93;7784:3;7695:93;:::i;:::-;7813:2;7808:3;7804:12;7797:19;;7456:366;;;:::o;7828:::-;7970:3;7991:67;8055:2;8050:3;7991:67;:::i;:::-;7984:74;;8067:93;8156:3;8067:93;:::i;:::-;8185:2;8180:3;8176:12;8169:19;;7828:366;;;:::o;8200:::-;8342:3;8363:67;8427:2;8422:3;8363:67;:::i;:::-;8356:74;;8439:93;8528:3;8439:93;:::i;:::-;8557:2;8552:3;8548:12;8541:19;;8200:366;;;:::o;8572:118::-;8659:24;8677:5;8659:24;:::i;:::-;8654:3;8647:37;8572:118;;:::o;8696:112::-;8779:22;8795:5;8779:22;:::i;:::-;8774:3;8767:35;8696:112;;:::o;8814:222::-;8907:4;8945:2;8934:9;8930:18;8922:26;;8958:71;9026:1;9015:9;9011:17;9002:6;8958:71;:::i;:::-;8814:222;;;;:::o;9042:210::-;9129:4;9167:2;9156:9;9152:18;9144:26;;9180:65;9242:1;9231:9;9227:17;9218:6;9180:65;:::i;:::-;9042:210;;;;:::o;9258:248::-;9364:4;9402:2;9391:9;9387:18;9379:26;;9415:84;9496:1;9485:9;9481:17;9472:6;9415:84;:::i;:::-;9258:248;;;;:::o;9512:313::-;9625:4;9663:2;9652:9;9648:18;9640:26;;9712:9;9706:4;9702:20;9698:1;9687:9;9683:17;9676:47;9740:78;9813:4;9804:6;9740:78;:::i;:::-;9732:86;;9512:313;;;;:::o;9831:419::-;9997:4;10035:2;10024:9;10020:18;10012:26;;10084:9;10078:4;10074:20;10070:1;10059:9;10055:17;10048:47;10112:131;10238:4;10112:131;:::i;:::-;10104:139;;9831:419;;;:::o;10256:::-;10422:4;10460:2;10449:9;10445:18;10437:26;;10509:9;10503:4;10499:20;10495:1;10484:9;10480:17;10473:47;10537:131;10663:4;10537:131;:::i;:::-;10529:139;;10256:419;;;:::o;10681:::-;10847:4;10885:2;10874:9;10870:18;10862:26;;10934:9;10928:4;10924:20;10920:1;10909:9;10905:17;10898:47;10962:131;11088:4;10962:131;:::i;:::-;10954:139;;10681:419;;;:::o;11106:::-;11272:4;11310:2;11299:9;11295:18;11287:26;;11359:9;11353:4;11349:20;11345:1;11334:9;11330:17;11323:47;11387:131;11513:4;11387:131;:::i;:::-;11379:139;;11106:419;;;:::o;11531:::-;11697:4;11735:2;11724:9;11720:18;11712:26;;11784:9;11778:4;11774:20;11770:1;11759:9;11755:17;11748:47;11812:131;11938:4;11812:131;:::i;:::-;11804:139;;11531:419;;;:::o;11956:::-;12122:4;12160:2;12149:9;12145:18;12137:26;;12209:9;12203:4;12199:20;12195:1;12184:9;12180:17;12173:47;12237:131;12363:4;12237:131;:::i;:::-;12229:139;;11956:419;;;:::o;12381:::-;12547:4;12585:2;12574:9;12570:18;12562:26;;12634:9;12628:4;12624:20;12620:1;12609:9;12605:17;12598:47;12662:131;12788:4;12662:131;:::i;:::-;12654:139;;12381:419;;;:::o;12806:::-;12972:4;13010:2;12999:9;12995:18;12987:26;;13059:9;13053:4;13049:20;13045:1;13034:9;13030:17;13023:47;13087:131;13213:4;13087:131;:::i;:::-;13079:139;;12806:419;;;:::o;13231:::-;13397:4;13435:2;13424:9;13420:18;13412:26;;13484:9;13478:4;13474:20;13470:1;13459:9;13455:17;13448:47;13512:131;13638:4;13512:131;:::i;:::-;13504:139;;13231:419;;;:::o;13656:::-;13822:4;13860:2;13849:9;13845:18;13837:26;;13909:9;13903:4;13899:20;13895:1;13884:9;13880:17;13873:47;13937:131;14063:4;13937:131;:::i;:::-;13929:139;;13656:419;;;:::o;14081:::-;14247:4;14285:2;14274:9;14270:18;14262:26;;14334:9;14328:4;14324:20;14320:1;14309:9;14305:17;14298:47;14362:131;14488:4;14362:131;:::i;:::-;14354:139;;14081:419;;;:::o;14506:::-;14672:4;14710:2;14699:9;14695:18;14687:26;;14759:9;14753:4;14749:20;14745:1;14734:9;14730:17;14723:47;14787:131;14913:4;14787:131;:::i;:::-;14779:139;;14506:419;;;:::o;14931:222::-;15024:4;15062:2;15051:9;15047:18;15039:26;;15075:71;15143:1;15132:9;15128:17;15119:6;15075:71;:::i;:::-;14931:222;;;;:::o;15159:214::-;15248:4;15286:2;15275:9;15271:18;15263:26;;15299:67;15363:1;15352:9;15348:17;15339:6;15299:67;:::i;:::-;15159:214;;;;:::o;15460:99::-;15512:6;15546:5;15540:12;15530:22;;15460:99;;;:::o;15565:169::-;15649:11;15683:6;15678:3;15671:19;15723:4;15718:3;15714:14;15699:29;;15565:169;;;;:::o;15740:305::-;15780:3;15799:20;15817:1;15799:20;:::i;:::-;15794:25;;15833:20;15851:1;15833:20;:::i;:::-;15828:25;;15987:1;15919:66;15915:74;15912:1;15909:81;15906:107;;;15993:18;;:::i;:::-;15906:107;16037:1;16034;16030:9;16023:16;;15740:305;;;;:::o;16051:185::-;16091:1;16108:20;16126:1;16108:20;:::i;:::-;16103:25;;16142:20;16160:1;16142:20;:::i;:::-;16137:25;;16181:1;16171:35;;16186:18;;:::i;:::-;16171:35;16228:1;16225;16221:9;16216:14;;16051:185;;;;:::o;16242:348::-;16282:7;16305:20;16323:1;16305:20;:::i;:::-;16300:25;;16339:20;16357:1;16339:20;:::i;:::-;16334:25;;16527:1;16459:66;16455:74;16452:1;16449:81;16444:1;16437:9;16430:17;16426:105;16423:131;;;16534:18;;:::i;:::-;16423:131;16582:1;16579;16575:9;16564:20;;16242:348;;;;:::o;16596:191::-;16636:4;16656:20;16674:1;16656:20;:::i;:::-;16651:25;;16690:20;16708:1;16690:20;:::i;:::-;16685:25;;16729:1;16726;16723:8;16720:34;;;16734:18;;:::i;:::-;16720:34;16779:1;16776;16772:9;16764:17;;16596:191;;;;:::o;16793:96::-;16830:7;16859:24;16877:5;16859:24;:::i;:::-;16848:35;;16793:96;;;:::o;16895:90::-;16929:7;16972:5;16965:13;16958:21;16947:32;;16895:90;;;:::o;16991:126::-;17028:7;17068:42;17061:5;17057:54;17046:65;;16991:126;;;:::o;17123:77::-;17160:7;17189:5;17178:16;;17123:77;;;:::o;17206:86::-;17241:7;17281:4;17274:5;17270:16;17259:27;;17206:86;;;:::o;17298:139::-;17361:9;17394:37;17425:5;17394:37;:::i;:::-;17381:50;;17298:139;;;:::o;17443:126::-;17493:9;17526:37;17557:5;17526:37;:::i;:::-;17513:50;;17443:126;;;:::o;17575:113::-;17625:9;17658:24;17676:5;17658:24;:::i;:::-;17645:37;;17575:113;;;:::o;17694:307::-;17762:1;17772:113;17786:6;17783:1;17780:13;17772:113;;;17871:1;17866:3;17862:11;17856:18;17852:1;17847:3;17843:11;17836:39;17808:2;17805:1;17801:10;17796:15;;17772:113;;;17903:6;17900:1;17897:13;17894:101;;;17983:1;17974:6;17969:3;17965:16;17958:27;17894:101;17743:258;17694:307;;;:::o;18007:320::-;18051:6;18088:1;18082:4;18078:12;18068:22;;18135:1;18129:4;18125:12;18156:18;18146:81;;18212:4;18204:6;18200:17;18190:27;;18146:81;18274:2;18266:6;18263:14;18243:18;18240:38;18237:84;;;18293:18;;:::i;:::-;18237:84;18058:269;18007:320;;;:::o;18333:180::-;18381:77;18378:1;18371:88;18478:4;18475:1;18468:15;18502:4;18499:1;18492:15;18519:180;18567:77;18564:1;18557:88;18664:4;18661:1;18654:15;18688:4;18685:1;18678:15;18705:180;18753:77;18750:1;18743:88;18850:4;18847:1;18840:15;18874:4;18871:1;18864:15;19014:117;19123:1;19120;19113:12;19137:102;19178:6;19229:2;19225:7;19220:2;19213:5;19209:14;19205:28;19195:38;;19137:102;;;:::o;19245:222::-;19385:34;19381:1;19373:6;19369:14;19362:58;19454:5;19449:2;19441:6;19437:15;19430:30;19245:222;:::o;19473:221::-;19613:34;19609:1;19601:6;19597:14;19590:58;19682:4;19677:2;19669:6;19665:15;19658:29;19473:221;:::o;19700:225::-;19840:34;19836:1;19828:6;19824:14;19817:58;19909:8;19904:2;19896:6;19892:15;19885:33;19700:225;:::o;19931:221::-;20071:34;20067:1;20059:6;20055:14;20048:58;20140:4;20135:2;20127:6;20123:15;20116:29;19931:221;:::o;20158:179::-;20298:31;20294:1;20286:6;20282:14;20275:55;20158:179;:::o;20343:225::-;20483:34;20479:1;20471:6;20467:14;20460:58;20552:8;20547:2;20539:6;20535:15;20528:33;20343:225;:::o;20574:182::-;20714:34;20710:1;20702:6;20698:14;20691:58;20574:182;:::o;20762:220::-;20902:34;20898:1;20890:6;20886:14;20879:58;20971:3;20966:2;20958:6;20954:15;20947:28;20762:220;:::o;20988:224::-;21128:34;21124:1;21116:6;21112:14;21105:58;21197:7;21192:2;21184:6;21180:15;21173:32;20988:224;:::o;21218:223::-;21358:34;21354:1;21346:6;21342:14;21335:58;21427:6;21422:2;21414:6;21410:15;21403:31;21218:223;:::o;21447:224::-;21587:34;21583:1;21575:6;21571:14;21564:58;21656:7;21651:2;21643:6;21639:15;21632:32;21447:224;:::o;21677:181::-;21817:33;21813:1;21805:6;21801:14;21794:57;21677:181;:::o;21864:122::-;21937:24;21955:5;21937:24;:::i;:::-;21930:5;21927:35;21917:63;;21976:1;21973;21966:12;21917:63;21864:122;:::o;21992:116::-;22062:21;22077:5;22062:21;:::i;:::-;22055:5;22052:32;22042:60;;22098:1;22095;22088:12;22042:60;21992:116;:::o;22114:122::-;22187:24;22205:5;22187:24;:::i;:::-;22180:5;22177:35;22167:63;;22226:1;22223;22216:12;22167:63;22114:122;:::o
Swarm Source
ipfs://7d10b8ad44f6a3b96188c6f1e356d4761bbe9c0ac22794f4908d7fbbf220847b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.