ETH Price: $1,912.60 (+0.25%)

Token

zkBitcoin (zkBTC)

Overview

Max Total Supply

21,000,000 zkBTC

Holders

3,848

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
27,872.356893111459308396 zkBTC

Value
$0.00
0x98181a5f3b91117426331b54e2a47e8fa74f56b0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

zkBitcoin Token (zkBTC) is a ERC20 token mined via Proof of Work distributed on the zkSync Era blockchain. Commodity-like distribution. Decentralized, trustless, ownerless contract. Open-source project without ICO. Total supply: 21M. Mining algorithm: Solidity-SHA3.

This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
zkBitcoin

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.13

Optimization Enabled:
Yes with Mode 3

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at era.zksync.network on 2024-03-13
*/

// Zero Knowledge Bitcoin - zkBitcoin (zkBTC) Token - Token and Mining Contract
//
// Website: https://zkBitcoin.org
// Github: https://github.com/zkBitcoinToken/
// Discord: https://discord.gg/hZ8yzcCRFJ
//
//
// Distrubtion of Zero Knowledge Bitcoin Token - zkBitcoin (zkBTC) Token is as follows:
//
// 100% of zkBTC Token is distributed using zkBitcoin Contract(this Contract) which distributes tokens to users by using Proof of work. Computers solve a complicated problem to gain tokens!
// 
// 100% Of the Token is distributed to the users! No dev fee or premine!
//
//
// Symbol: zkBTC
// Decimals: 18
//
// Total supply: 21,000,000.000000000000000000
//   =
// 21,000,000 Mined over 100+ years using Bitcoins Distrubtion halvings every ~4 years. Uses Proof-oF-Work to distribute the tokens. Public Miner is available see https://zkBitcoin.org 
//  
// No premine, dev cut, or advantage taken at launch. Public miner available at launch. 100% of the token is given away fairly over 100+ years using Bitcoins model!
// 
// Mint 2048 answers per challenge in this cost savings Bitcoin!! Less failed transactions as the challenge only changes every 2048 answers instead of every answer.
//
// Credits: 0xBitcoin
//
// startTime =  1710950400;  //Date and time (GMT):  Wednesday, March 20, 2024 4:00:00 PM GMT openMining can then be called and mining will have rewards, until then all rewards will be 0.















/////
//IMPORT STUFF below, then main zkBitcoin contract
/////

// File: contracts/draft-IERC20Permit.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)


pragma solidity ^0.8.13;




/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: contracts/IERC20.sol

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: contracts/IERC20Metadata.sol

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: contracts/Context.sol

/**
 * @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: contracts/ERC20.sol

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *tot
 * 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;

    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 21000000000000000000000000;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {

        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);

    }

    /** @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 {

        _balances[account] += amount;
        emit Transfer(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 {

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }

        emit Transfer(account, address(0), amount);

    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

// File: contracts/Strings.sol


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: contracts/ECDSA.sol

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: contracts/draft-EIP712.sol


/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

// File: contracts/Counters.sol


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: contracts/draft-ERC20Permit.sol

/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private constant _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    /**
     * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`.
     * However, to ensure consistency with the upgradeable transpiler, we will continue
     * to reserve a slot.
     * @custom:oz-renamed-from _PERMIT_TYPEHASH
     */
    // solhint-disable-next-line var-name-mixedcase
    bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT;

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

// File: contracts/zkBitcoin.sol

// Zero Knowledge Bitcoin - zkBitcoin (zkBTC) Token - Token and Mining Contract
//
// Website: https://zkBitcoin.org
// Github: https://github.com/zkBitcoinToken/
// Discord: https://discord.gg/hZ8yzcCRFJ
//
//
// Distrubtion of Zero Knowledge Bitcoin Token - zkBitcoin (zkBTC) Token is as follows:
//
// 100% of zkBTC Token is distributed using zkBitcoin Contract(this Contract) which distributes tokens to users by using Proof of work. Computers solve a complicated problem to gain tokens!
// 
// 100% Of the Token is distributed to the users! No dev fee or premine!
//
//
// Symbol: zkBTC
// Decimals: 18
//
// Total supply: 21,000,000.000000000000000000
//   =
// 21,000,000 Mined over 100+ years using Bitcoins Distrubtion halvings every ~4 years. Uses Proof-oF-Work to distribute the tokens. Public Miner is available see https://zkBitcoin.org 
//  
// No premine, dev cut, or advantage taken at launch. Public miner available at launch. 100% of the token is given away fairly over 100+ years using Bitcoins model!
// 
// Mint 2048 answers per challenge in this cost savings Bitcoin!! Less failed transactions as the challenge only changes every 2048 answers instead of every answer.
//
// Credits: 0xBitcoin
//
// 1710950400;  //Date and time (GMT):  Wednesday, March 20, 2024 4:00:00 PM GMT openMining can then be called and mining will have rewards, until then all rewards will be 0.








library IsContract {
    function isContract(address _addr) internal view returns (bool) {
        bytes32 codehash;
        /* solium-disable-next-line */
        assembly { codehash := extcodehash(_addr) }
        return codehash != bytes32(0) && codehash != bytes32(0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470);
    }
}



// File: contracts/utils/SafeMath.sol

library SafeMath2 {
    function add(uint256 x, uint256 y) internal pure returns (uint256) {
        uint256 z = x + y;
        require(z >= x, "Add overflow");
        return z;
    }

    function sub(uint256 x, uint256 y) internal pure returns (uint256) {
        require(x >= y, "Sub underflow");
        return x - y;
    }

    function mult(uint256 x, uint256 y) internal pure returns (uint256) {
        if (x == 0) {
            return 0;
        }

        uint256 z = x * y;
        require(z / x == y, "Mult overflow");
        return z;
    }

    function div(uint256 x, uint256 y) internal pure returns (uint256) {
        require(y != 0, "Div by zero");
        return x / y;
    }

    function divRound(uint256 x, uint256 y) internal pure returns (uint256) {
        require(y != 0, "Div by zero");
        uint256 r = x / y;
        if (x % y != 0) {
            r = r + 1;
        }

        return r;
    }
}



// File: contracts/utils/Math.sol

library ExtendedMath2 {


    //return the smaller of the two inputs (a or b)
    function limitLessThan(uint a, uint b) internal pure returns (uint c) {

        if(a > b) return b;

        return a;

    }
}






contract zkBitcoin is ERC20Permit {



////
// Minting Stuff Follows
////



	
    uint public targetTime = 10*60;
    uint public startTime = 1710950400;// 1710950400;  //Date and time (GMT):  Wednesday, March 20, 2024 4:00:00 PM GMT
    //Events
    using SafeMath2 for uint256;
    using ExtendedMath2 for uint;
    event Mint(address indexed from, uint reward_amount, uint epochCount, bytes32 newChallengeNumber);
    event MegaMint(address indexed from, uint epochCount, bytes32 newChallengeNumber, uint NumberOfTokensMinted, uint256 TokenMultipler);

    // This mapping can be used to store combinations of challenge, user, and nonce which is the digest
    // to ensure they are not used again.
    mapping(bytes32 => bool) public usedCombinations;
    //ZKBITCOIN INITALIZE Start
	
    uint public constant _totalSupply = 21000000000000000000000000;
    uint public latestDifficultyPeriodStarted2 = block.timestamp; //BlockTime of last readjustment
    uint public latestDifficultyPeriodStarted = block.number; // for readjustments
    uint public epochCount = 0;//number of 'blocks' mined

    uint public _BLOCKS_PER_READJUSTMENT = 2048; // should be 2048 blocks more inline with BTC
    uint public  _MAXIMUM_TARGET = 2**234;
    //a little number
    uint public  _MINIMUM_TARGET =  2**16;
    uint public miningTarget = _MAXIMUM_TARGET.div(1);  //1 difficulty to start
  
    bytes32 public challengeNumber = blockhash(block.number - 1); //this is the next first challenge that will be used, challengeNumber is the main challenge to solve for
    mapping(bytes32 => bool) public usedChallenges;
    uint public rewardEra = 0;
    uint public maxSupplyForEra = (_totalSupply - _totalSupply.div( 2**(rewardEra + 1)));
    uint public reward_amount = 0;
    
    //Stuff for Functions
    uint public tokensMinted = 0;  //Tokens Minted only for Miners
    uint public epochOld = 0;  //Epoch count at each readjustment 
    // startup locks
    bool initeds = false;
    bool locked = false;

	constructor() ERC20("zkBitcoin", "zkBTC") ERC20Permit("zkBitcoin") {
		miningTarget = _MAXIMUM_TARGET.div(1); //easy difficulty u can solve but no reward until startTime and OpenMining is ran
		startTime = 1710950400;  //Date and time (GMT):  Wednesday, March 20, 2024 4:00:00 PM GMT
		reward_amount = 0;  //Zero reward for first days to setup miners
		rewardEra = 0;
		tokensMinted = 0;
		epochCount = 0;
		epochOld = 0;
		latestDifficultyPeriodStarted2 = block.timestamp;
		latestDifficultyPeriodStarted = block.number;	
		challengeNumber = blockhash(block.number -1); //generate a new one so we can start with a fresh
		usedChallenges[blockhash(block.number - 1)] = true;
		
	}




	//Starts mining after a few days period for miners to setup is done
	function openMining() public returns (bool success) {
		require(!locked, "Only allowed to run once");
		locked = true;
		require(block.timestamp >= startTime && block.timestamp <= startTime + 60* 60 * 24* 7, "Must wait until after startTime (Jan 17th 2024 @ 5PM GMT) epcohTime 1705510800");
		challengeNumber = blockhash(block.number -1); //generate a new one so we can start fresh
		reward_amount = 50 * 10**18;
		rewardEra = 0;
		miningTarget = _MAXIMUM_TARGET.div(1);	
		
		rewardEra = 0;
		tokensMinted = 0;
		epochCount = 0;
		epochOld = 0;
		latestDifficultyPeriodStarted2 = block.timestamp;
		latestDifficultyPeriodStarted = block.number;	
		
		require(usedChallenges[challengeNumber] == false, "Must never have used this challenge before.");
		usedChallenges[challengeNumber] = true;
		return true;
	}


	///
	// zkBitcoin Multi Minting
	///



	function multiMint_SameAddress(address mintToAddress, uint256 [] memory nonce) public {
	
        	uint NextEpochCount = blocksToReadjust();
		uint xLoop = 0;
		uint leftOver = 0;
		uint GoodLoops = 0;
		bytes32 localChallengeNumber=challengeNumber;
		uint localMiningTarget = miningTarget;
		uint xaa = 0;
		for (xLoop = 0; xLoop < nonce.length; xLoop++) {
		    bytes32 digest = keccak256(abi.encodePacked(localChallengeNumber, msg.sender, nonce[xLoop]));

		    if (usedCombinations[digest] || uint256(digest) >= localMiningTarget) {
		        continue;
		    }

		    GoodLoops = GoodLoops.add(1);
		    
	            usedCombinations[digest] = true;
		    if (GoodLoops == NextEpochCount) {
		    
			for(xaa = 0; xaa<=xLoop; xaa++){
				bytes32 digest2 = keccak256(abi.encodePacked(localChallengeNumber, msg.sender, nonce[xaa]));
				usedCombinations[digest2]=false;
			}
			break;
		    }

		  
		}

       	_startNewMiningEpoch_MultiMint_Mass_Epochs(GoodLoops);

		uint payout = GoodLoops * reward_amount;

		//if max supply for the era will be exceeded next reward round then enter the new era before that happens
		//59 is the final reward era, almost all tokens minted
		if( tokensMinted.add(payout) > maxSupplyForEra && rewardEra < 59)
		{
			rewardEra = rewardEra + 1;
			maxSupplyForEra = _totalSupply - _totalSupply.div( 2**(rewardEra + 1));
			reward_amount = ( 50 * 10**18)/( 2**(rewardEra) );
			payout = payout.div(2);
		}
		_mint(mintToAddress, payout);

		emit Mint(msg.sender, payout, epochCount, localChallengeNumber );	
		
		tokensMinted = tokensMinted.add(payout);

	
	}
	

	///
	// zkBitcoin Single Minting
	///

	//compatibility function
	function mint(uint256 nonce, bytes32 challenge_digest) public {
		mintTo(nonce, msg.sender);
	}
	

	function mintTo(uint256 nonce, address mintToAddress) public {
		bytes32 localChallengeNumber = challengeNumber;
		bytes32 digest =  keccak256(abi.encodePacked(localChallengeNumber, msg.sender, nonce));

		//the digest must be smaller than the target
		require(uint256(digest) < miningTarget, "Digest must be smaller than miningTarget");
		require(!usedCombinations[digest], "Must not been the first time this solve has been used");
		usedCombinations[digest] = true;
		
             	_startNewMiningEpoch();
	
        	_mint(mintToAddress, reward_amount);
		
		tokensMinted = tokensMinted.add(reward_amount);
		

		emit Mint(msg.sender, reward_amount, epochCount, localChallengeNumber);


	}


	

	function blocksFromReadjust() public view returns (uint256 blocks){
		blocks = (epochCount - epochOld);
		return blocks;
	}
	


	function blocksToReadjust() public view returns (uint blocks){
		
		uint256 blktimestamp = block.timestamp;
		uint local_BLOCKS_PER_READJUSTMENT = _BLOCKS_PER_READJUSTMENT;
		uint localEpochCount = epochCount;
		uint localEpochOld = epochOld;
		
		uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2;
		uint adjusDiffTargetTime = targetTime * local_BLOCKS_PER_READJUSTMENT;
		
		uint MultiplierOfTime = 3;
		if(localEpochCount - localEpochOld > 0){
			
			MultiplierOfTime = (((localEpochCount - localEpochOld - 1)/(local_BLOCKS_PER_READJUSTMENT/4))+3);
		}
		
		if(MultiplierOfTime == 6){
			MultiplierOfTime=5;
		}

		uint adjustFinal = adjusDiffTargetTime * MultiplierOfTime;

		if( TimeSinceLastDifficultyPeriod2 > adjustFinal)
		{
				blocks = local_BLOCKS_PER_READJUSTMENT/32 - ((localEpochCount - localEpochOld) % (local_BLOCKS_PER_READJUSTMENT/32));
				return (blocks);
		}else{
			    blocks = local_BLOCKS_PER_READJUSTMENT - ((localEpochCount - localEpochOld) % local_BLOCKS_PER_READJUSTMENT);
			    return (blocks);
		}
	
	}



	function seconds_Until_adjustmentSwitch() public view returns (uint secs){
		
		uint256 blktimestamp = block.timestamp;
		
		uint local_BLOCKS_PER_READJUSTMENT = _BLOCKS_PER_READJUSTMENT;
		uint adjusDiffTargetTime =local_BLOCKS_PER_READJUSTMENT * targetTime;
		uint localEpochCount = epochCount;
		uint localEpochOld = epochOld;
		
		uint MultiplierOfTime = 3;
		if(localEpochCount - localEpochOld > 0){
			
			MultiplierOfTime = (((localEpochCount - localEpochOld - 1)/(local_BLOCKS_PER_READJUSTMENT/4))+3);
		}
		
		if(MultiplierOfTime == 6){
			MultiplierOfTime=5;
		}

		uint adjustFinal = adjusDiffTargetTime * MultiplierOfTime;
		
		adjusDiffTargetTime =adjustFinal + latestDifficultyPeriodStarted2;
		if(adjusDiffTargetTime - blktimestamp <0){
			return 0;
		}
		return adjusDiffTargetTime - blktimestamp;
	
	}



	function _startNewMiningEpoch_MultiMint_Mass_Epochs(uint epochsz) internal {
	
		uint local_BLOCKS_PER_READJUSTMENT = _BLOCKS_PER_READJUSTMENT;
					
		uint localEpochCount = epochCount;
		uint localEpochOld = epochOld;
		
		uint totalruns = epochsz/(local_BLOCKS_PER_READJUSTMENT / 32);  	
		for(uint xy=0; xy<=totalruns; xy++){
			uint NextEpochCount = local_BLOCKS_PER_READJUSTMENT/32 - ((localEpochCount - localEpochOld) % (local_BLOCKS_PER_READJUSTMENT/32));
			if(epochsz >= NextEpochCount){
				
                     		localEpochCount +=NextEpochCount;
				epochsz=epochsz.sub(NextEpochCount);
					
				uint256 blktimestamp = block.timestamp;
				uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2;
				uint adjusDiffTargetTime = targetTime *  local_BLOCKS_PER_READJUSTMENT; 
				
				uint MultiplierOfTime = 3;
				if(localEpochCount - localEpochOld > 0){
					
					MultiplierOfTime = (((localEpochCount - localEpochOld - 1)/(local_BLOCKS_PER_READJUSTMENT/4))+3);
				}
				
				if(MultiplierOfTime == 6){
					MultiplierOfTime=5;
				}
				uint adjustFinal = adjusDiffTargetTime * MultiplierOfTime;
		
			
				if( TimeSinceLastDifficultyPeriod2 > adjustFinal || (localEpochCount - localEpochOld) % local_BLOCKS_PER_READJUSTMENT == 0) 
				{
					epochCount = localEpochCount;
					
					if(_totalSupply < tokensMinted){
						reward_amount = 0;
					}
					_reAdjustDifficulty();
					
					bytes32 localChallenge = blockhash(block.number - 1);
					
					require(usedChallenges[localChallenge] == false, "Must never have used this challenge before.");
					usedChallenges[localChallenge] = true;
					challengeNumber = localChallenge;
					
					localEpochOld =localEpochCount;
				}
			}
		}
		epochCount = epochsz+localEpochCount;

	}



	function _startNewMiningEpoch() internal {


		//if max supply for the era will be exceeded next reward round then enter the new era before that happens
		//59 is the final reward era, almost all tokens minted
		if( tokensMinted.add(reward_amount) > maxSupplyForEra && rewardEra < 59)
		{
			rewardEra = rewardEra + 1;
			maxSupplyForEra = _totalSupply - _totalSupply.div( 2**(rewardEra + 1));
			reward_amount = ( 50 * 10**18)/( 2**(rewardEra ) );
		}


		uint local_BLOCKS_PER_READJUSTMENT = _BLOCKS_PER_READJUSTMENT;
		uint localEpochOld = epochOld;
		uint localEpochCount = epochCount.add(1);
		epochCount = localEpochCount;  
		
		//every so often, readjust difficulty
		if((localEpochCount - localEpochOld) % (local_BLOCKS_PER_READJUSTMENT / 32) == 0)
		{
			if(_totalSupply < tokensMinted){
				reward_amount = 0;
			}
			
			uint256 blktimestamp = block.timestamp;
			uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2;
			uint adjusDiffTargetTime = targetTime *  local_BLOCKS_PER_READJUSTMENT; 
			
			uint MultiplierOfTime = 3;
			if(localEpochCount - localEpochOld > 0){
				
				MultiplierOfTime = (((localEpochCount - localEpochOld - 1)/(local_BLOCKS_PER_READJUSTMENT/4))+3);
			}
			
			if(MultiplierOfTime == 6){
				MultiplierOfTime=5;
			}
		
			uint adjustFinal = adjusDiffTargetTime * MultiplierOfTime;
		
			
			if( TimeSinceLastDifficultyPeriod2 > adjustFinal || (localEpochCount - localEpochOld) % local_BLOCKS_PER_READJUSTMENT == 0) 
			{
				_reAdjustDifficulty();


				bytes32 localChallenge = blockhash(block.number - 1);
				require(usedChallenges[localChallenge] == false, "Must never have used this challenge before.");
				usedChallenges[localChallenge] = true;
				challengeNumber = localChallenge;
			}
		}

	}



	function reAdjustsToWhatDifficultyAVG(uint extraTime) public view returns (uint difficulty) {
		uint blktimestamp = block.timestamp;
		uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2 + extraTime+1;
		uint epochTotal = epochCount - epochOld;
		uint adjusDiffTargetTime = targetTime * epochTotal+1;
		uint miningTarget2 = 0;

		//if there were less eth blocks passed in time than expected
		if( TimeSinceLastDifficultyPeriod2 < adjusDiffTargetTime )
		{
			uint excess_block_pct = (adjusDiffTargetTime.mult(100)).div( TimeSinceLastDifficultyPeriod2 );
			uint excess_block_pct_extra = excess_block_pct.sub(100).limitLessThan(1000);
			//make it harder 
			miningTarget2 = miningTarget.sub(miningTarget.div(1333).mult(excess_block_pct_extra));   //by up to 4x
		}else{
			uint shortage_block_pct = (TimeSinceLastDifficultyPeriod2.mult(100)).div( adjusDiffTargetTime );

			uint shortage_block_pct_extra = shortage_block_pct.sub(100).limitLessThan(1000); //always between 0 and 1000
			//make it easier
			miningTarget2 = miningTarget.add(miningTarget.div(333).mult(shortage_block_pct_extra));   //by up to 4x
		}

		if(miningTarget2 < _MINIMUM_TARGET) //very difficult
		{
			miningTarget2 = _MINIMUM_TARGET;
		}
		if(miningTarget2 > _MAXIMUM_TARGET) //very easy
		{
			miningTarget2 = _MAXIMUM_TARGET;
		}
		difficulty = _MAXIMUM_TARGET.div(miningTarget2);
			return difficulty;
	}


	function reAdjustsToWhatDifficulty_MaxPain_Difficulty() public view returns (uint difficulty) {
		difficulty = _MAXIMUM_TARGET.div(reAdjustsToWhatDifficulty_MaxPain_Target());
		return difficulty;
	}

	function reAdjustsToWhatDifficulty_MaxPain_Target() public view returns (uint target) {
		uint epochTotal = blocksToReadjust() + blocksFromReadjust();
		uint adjusDiffTargetTime = targetTime *  epochTotal; 
		uint256 blktimestamp = block.timestamp;
		uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2+1;
        	uint miningTarget2 = 0;

		//if there were less eth blocks passed in time than expected
		if( TimeSinceLastDifficultyPeriod2 < adjusDiffTargetTime )
		{
			uint excess_block_pct = (adjusDiffTargetTime.mult(100)).div( TimeSinceLastDifficultyPeriod2 );
			uint excess_block_pct_extra = excess_block_pct.sub(100).limitLessThan(1000);
			//make it harder 
			miningTarget2 = miningTarget.sub(miningTarget.div(1333).mult(excess_block_pct_extra));   //by up to 4x
		}else{
			uint shortage_block_pct = (TimeSinceLastDifficultyPeriod2.mult(100)).div( adjusDiffTargetTime );

			uint shortage_block_pct_extra = shortage_block_pct.sub(100).limitLessThan(1000); //always between 0 and 1000
			//make it easier
			miningTarget2 = miningTarget.add(miningTarget.div(333).mult(shortage_block_pct_extra));   //by up to 4x
		}

		if(miningTarget2 < _MINIMUM_TARGET) //very difficult
		{
			miningTarget2 = _MINIMUM_TARGET;
		}
		if(miningTarget2 > _MAXIMUM_TARGET) //very easy
		{
			miningTarget2 = _MAXIMUM_TARGET;
		}
		//difficulty = _MAXIMUM_TARGET.div(miningTarget2);
			return miningTarget2;
	}


	function reAdjustsToWhatDifficulty_MaxPain_Difficulty_AdditionalTime(uint addTime) public view returns (uint difficulty) {
		difficulty = _MAXIMUM_TARGET.div(reAdjustsToWhatDifficulty_MaxPain_Target_AdditionalTime(addTime));
		return difficulty;
	}
	
	

	function reAdjustsToWhatDifficulty_MaxPain_Target_AdditionalTime(uint addTime) public view returns (uint target) {
		uint epochTotal =  blocksToReadjust() + blocksFromReadjust();
		uint adjusDiffTargetTime = targetTime *  epochTotal; 
		uint256 blktimestamp = block.timestamp + addTime;
		uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2+1;
       	uint miningTarget2 = 0;

		//if there were less eth blocks passed in time than expected
		if( TimeSinceLastDifficultyPeriod2 < adjusDiffTargetTime )
		{
			uint excess_block_pct = (adjusDiffTargetTime.mult(100)).div( TimeSinceLastDifficultyPeriod2 );
			uint excess_block_pct_extra = excess_block_pct.sub(100).limitLessThan(1000);
			//make it harder 
			miningTarget2 = miningTarget.sub(miningTarget.div(1333).mult(excess_block_pct_extra));   //by up to 4x
		}else{
			uint shortage_block_pct = (TimeSinceLastDifficultyPeriod2.mult(100)).div( adjusDiffTargetTime );

			uint shortage_block_pct_extra = shortage_block_pct.sub(100).limitLessThan(1000); //always between 0 and 1000
			//make it easier
			miningTarget2 = miningTarget.add(miningTarget.div(333).mult(shortage_block_pct_extra));   //by up to 4x
		}

		if(miningTarget2 < _MINIMUM_TARGET) //very difficult
		{
			miningTarget2 = _MINIMUM_TARGET;
		}
		if(miningTarget2 > _MAXIMUM_TARGET) //very easy
		{
			miningTarget2 = _MAXIMUM_TARGET;
		}
		//difficulty = _MAXIMUM_TARGET.div(miningTarget2);
			return miningTarget2;
	}



	function _reAdjustDifficulty() internal {
		uint256 blktimestamp = block.timestamp;
		uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2 +1;
		uint epochTotal = epochCount - epochOld;
		uint adjusDiffTargetTime = targetTime *  epochTotal; 
		epochOld = epochCount;

		//if there were less eth blocks passed in time than expected
		if( TimeSinceLastDifficultyPeriod2 < adjusDiffTargetTime )
		{
			uint excess_block_pct = (adjusDiffTargetTime.mult(100)).div( TimeSinceLastDifficultyPeriod2 );

			uint excess_block_pct_extra = excess_block_pct.sub(100).limitLessThan(1000);
			//make it harder 
			miningTarget = miningTarget.sub(miningTarget.div(1333).mult(excess_block_pct_extra));   //by up to 2x
		}else{
			uint shortage_block_pct = (TimeSinceLastDifficultyPeriod2.mult(100)).div( adjusDiffTargetTime );

			uint shortage_block_pct_extra = shortage_block_pct.sub(100).limitLessThan(1000); //always between 0 and 1000
			//make it easier
			miningTarget = miningTarget.add(miningTarget.div(333).mult(shortage_block_pct_extra));   //by up to 4x
		}

		latestDifficultyPeriodStarted2 = blktimestamp;
		latestDifficultyPeriodStarted = block.number;

		if(miningTarget < _MINIMUM_TARGET) //very difficult
		{
			miningTarget = _MINIMUM_TARGET;
		}
		if(miningTarget > _MAXIMUM_TARGET) //very easy
		{
			miningTarget = _MAXIMUM_TARGET;
		}
		
	}


	//Stat Functions

	function inflationMined () public view returns (uint YearlyInflation, uint EpochsPerYear, uint RewardsAtTime, uint TimePerEpoch){
		if(epochCount - epochOld == 0){
			return (0, 0, 0, 0);
		}
		uint256 blktimestamp = block.timestamp;
		uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2;

        
		TimePerEpoch = TimeSinceLastDifficultyPeriod2 / blocksFromReadjust(); 
		RewardsAtTime = reward_amount;
		uint year = 365 * 24 * 60 * 60;
		EpochsPerYear = year / TimePerEpoch;
		YearlyInflation = RewardsAtTime * EpochsPerYear;
		return (YearlyInflation, EpochsPerYear, RewardsAtTime, TimePerEpoch);
	}

	

	function toNextEraDays () public view returns (uint daysToNextEra, uint _maxSupplyForEra, uint _tokensMinted, uint amtDaily){

        (uint totalamt,,,) = inflationMined();
		(amtDaily) = totalamt / 365;
		if(amtDaily == 0){
			return(0,0,0,0);
		}
		daysToNextEra = (maxSupplyForEra - tokensMinted) / amtDaily;
		return (daysToNextEra, maxSupplyForEra, tokensMinted, amtDaily);
	}
	


	function toNextEraEpochs () public view returns ( uint epochs, uint epochTime, uint daysToNextEra){
		if(blocksFromReadjust() == 0){
			return (0,0,0);
        }
		uint256 blktimestamp = block.timestamp;
        uint TimeSinceLastDifficultyPeriod2 = blktimestamp - latestDifficultyPeriodStarted2;
		uint timePerEpoch = TimeSinceLastDifficultyPeriod2 / blocksFromReadjust();
		(uint daysz,,,) = toNextEraDays();
		uint amt = daysz * (60*60*24) / timePerEpoch;
		return (amt, timePerEpoch, daysz);
	}


	//help debug mining software
	function checkMintSolution(uint256 nonce, bytes32 challenge_digest, bytes32 challenge_number, uint testTarget) public view returns (bool success) {
		bytes32 digest = bytes32(keccak256(abi.encodePacked(challenge_number,msg.sender,nonce)));
		if(uint256(digest) > testTarget) revert();

		return (digest == challenge_digest);
	}


	//help debug mining software2
	function checkMintSolution2(uint256 nonce, bytes32 challenge_digest, bytes32 challenge_number, uint testTarget, address senda) public view returns (bytes32 success) {
		bytes32 digest = bytes32(keccak256(abi.encodePacked(challenge_number,senda,nonce)));
		if(uint256(digest) > testTarget) revert();

		return digest;
	}


	//this is a recent ethereum block hash
	function getChallengeNumber() public view returns (bytes32) {

		return challengeNumber;  

	}

	
	//the number of zeroes the digest of the PoW solution requires.  Auto adjusts
	function getMiningDifficulty() public view returns (uint) {
			return _MAXIMUM_TARGET.div(miningTarget);
	}


	function getMiningTarget() public view returns (uint) {
			return (miningTarget);
	}



	function getMiningMinted() public view returns (uint) {
		return tokensMinted;
	}

	function getCirculatingSupply() public view returns (uint) {
		return tokensMinted;
	}
	
	//21m coins total
	//reward begins at 150 and is cut in half every reward era (as tokens are mined)
	function getMiningReward() public view returns (uint) {
		//once we get half way thru the coins, only get 25 per block
		//every reward era, the reward amount halves.

		return ( 50 * 10**18)/( 2**(rewardEra) );
	}



	function getEpoch() public view returns (uint) {

		return epochCount ;

	}


	//help debug mining software
	function getMintDigest(uint256 nonce, bytes32 challenge_digest, bytes32 challenge_number) public view returns (bytes32 digesttest) {

		bytes32 digest =  keccak256(abi.encodePacked(challengeNumber, msg.sender, nonce));

		return digest;

	}



}

/*
*
* MIT License
* ===========
*
* Copyright (c) 2024 Zero Knowledge Bitcoin (zkBTC)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.   
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"epochCount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"newChallengeNumber","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"NumberOfTokensMinted","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"TokenMultipler","type":"uint256"}],"name":"MegaMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"epochCount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"newChallengeNumber","type":"bytes32"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BLOCKS_PER_READJUSTMENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MAXIMUM_TARGET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MINIMUM_TARGET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","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":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocksFromReadjust","outputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocksToReadjust","outputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"challengeNumber","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes32","name":"challenge_digest","type":"bytes32"},{"internalType":"bytes32","name":"challenge_number","type":"bytes32"},{"internalType":"uint256","name":"testTarget","type":"uint256"}],"name":"checkMintSolution","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes32","name":"challenge_digest","type":"bytes32"},{"internalType":"bytes32","name":"challenge_number","type":"bytes32"},{"internalType":"uint256","name":"testTarget","type":"uint256"},{"internalType":"address","name":"senda","type":"address"}],"name":"checkMintSolution2","outputs":[{"internalType":"bytes32","name":"success","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"epochCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochOld","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChallengeNumber","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMiningDifficulty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMiningMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMiningReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMiningTarget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes32","name":"challenge_digest","type":"bytes32"},{"internalType":"bytes32","name":"challenge_number","type":"bytes32"}],"name":"getMintDigest","outputs":[{"internalType":"bytes32","name":"digesttest","type":"bytes32"}],"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":[],"name":"inflationMined","outputs":[{"internalType":"uint256","name":"YearlyInflation","type":"uint256"},{"internalType":"uint256","name":"EpochsPerYear","type":"uint256"},{"internalType":"uint256","name":"RewardsAtTime","type":"uint256"},{"internalType":"uint256","name":"TimePerEpoch","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latestDifficultyPeriodStarted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latestDifficultyPeriodStarted2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyForEra","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"miningTarget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes32","name":"challenge_digest","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"mintToAddress","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mintToAddress","type":"address"},{"internalType":"uint256[]","name":"nonce","type":"uint256[]"}],"name":"multiMint_SameAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMining","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"extraTime","type":"uint256"}],"name":"reAdjustsToWhatDifficultyAVG","outputs":[{"internalType":"uint256","name":"difficulty","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reAdjustsToWhatDifficulty_MaxPain_Difficulty","outputs":[{"internalType":"uint256","name":"difficulty","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"addTime","type":"uint256"}],"name":"reAdjustsToWhatDifficulty_MaxPain_Difficulty_AdditionalTime","outputs":[{"internalType":"uint256","name":"difficulty","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reAdjustsToWhatDifficulty_MaxPain_Target","outputs":[{"internalType":"uint256","name":"target","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"addTime","type":"uint256"}],"name":"reAdjustsToWhatDifficulty_MaxPain_Target_AdditionalTime","outputs":[{"internalType":"uint256","name":"target","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardEra","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reward_amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seconds_Until_adjustmentSwitch","outputs":[{"internalType":"uint256","name":"secs","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"targetTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toNextEraDays","outputs":[{"internalType":"uint256","name":"daysToNextEra","type":"uint256"},{"internalType":"uint256","name":"_maxSupplyForEra","type":"uint256"},{"internalType":"uint256","name":"_tokensMinted","type":"uint256"},{"internalType":"uint256","name":"amtDaily","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toNextEraEpochs","outputs":[{"internalType":"uint256","name":"epochs","type":"uint256"},{"internalType":"uint256","name":"epochTime","type":"uint256"},{"internalType":"uint256","name":"daysToNextEra","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32","name":"","type":"bytes32"}],"name":"usedChallenges","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedCombinations","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100070f97aed15e81f311ba6e41a637ae8025e218d12c7120a0423edc3a393400000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0003000000000002001400000000000200020000000103550000006001100270000006620010019d000100000000001f0000000101200190000000390000c13d0000008005000039000000400050043f0000000001000031000000040110008c0000110f0000413d0000000201000367000000000101043b000000e001100270000006790210009c000000670000a13d0000067a0210009c000000ed0000a13d0000067b0210009c000001970000a13d0000067c0210009c000001f00000213d000006820210009c000003170000213d000006850210009c0000055d0000613d000006860110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000a01000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000014001000039000000400010043f0000000001000416000000000101004b0000110f0000c13d0000018001000039000000400010043f0000000904000039000001400040043f0000066301000041000001600010043f000000400900043d000006640190009c000000610000813d0000004001900039000000400010043f000000000c490436000006630100004100000000001c0435000000400700043d000006650170009c000000610000213d0000004001700039000000400010043f0000000501000039000000000817043600000666010000410000000000180435000000400500043d000006650150009c000000610000213d0000004001500039000000400010043f0000000101000039000000000615043600000667010000410000000000160435000000000b0904330000066801b0009c000002270000a13d000006e00100004100000000001004350000004101000039000000040010043f000006e1010000410000198400010430000006a30210009c000000990000213d000006b70210009c0000011b0000213d000006c10210009c000002390000a13d000006c20210009c000003650000213d000006c50210009c0000057d0000613d000006c60110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000200310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000004010000390000000201100367000000000101043b00000000001004350000001101000039000000200010043f00000040020000390000000001000019198211a00000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006a40210009c0000014b0000213d000006ae0210009c000002620000a13d000006af0210009c000003810000213d000006b20210009c000005a50000613d000006b30110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000400310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000004010000390000000201100367000000000101043b001400000001001d000006cc0110009c0000110f0000213d0000000001000411001200000001001d00000000001004350000000101000039001300000001001d000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b00000014020000290000000000200435000000200010043f00000024010000390000000201100367000000000101043b001100000001001d00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000101041a0000001102000029000000000321001a000008e50000413d000000120100002900000014020000291982126d0000040f000000400100043d000000130200002900000000002104350000066202000041000006620310009c00000000010280190000004001100210000006cb011001c7000019830001042e000006900210009c000001ba0000213d0000069a0210009c000002820000a13d0000069b0210009c000003a00000213d0000069e0210009c000005bf0000613d0000069f0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000200310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000004010000390000000202100367000000000202043b000006cc0320009c0000110f0000213d0000000000200435000000200010043f00000040020000390000000001000019198211a00000040f000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006b80210009c000002a80000a13d000006b90210009c000003a80000213d000006bc0210009c000005da0000613d000006bd0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d1982189e0000040f0000000005010019000000000602001900000000070300190000000008040019000000400100043d001400000001001d0000000002050019000000000306001900000000040700190000000005080019198211dd0000040f000000140400002900000000014100490000066202000041000006620310009c0000000001028019000006620340009c000000000204401900000040022002100000006001100210000000000121019f000019830001042e000006a50210009c000002c90000a13d000006a60210009c000003c70000213d000006a90210009c0000062a0000613d000006aa0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001701000039000000000201041a0000ff0003200190000009da0000c13d000006f203000041000000000232016f00000100022001bf000000000021041b0000000701000039000000000101041a001400000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000001402000029000000000121004b00000b770000813d000000400100043d0000008402100039000006f60300004100000000003204350000006402100039000006f70300004100000000003204350000004402100039000006f803000041000000000032043500000024021000390000004e030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006f9011001c70000198400010430000006870210009c000002d30000a13d000006880210009c000003cf0000213d0000068b0210009c000006450000613d0000068c0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000400310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000002402100370000000000202043b000006cc0320009c0000110f0000213d0000000401100370000000000101043b198213cd0000040f0000000001000019000019830001042e000006910210009c000002f60000a13d000006920210009c0000044e0000213d000006950210009c000006600000613d000006960110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000600310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001001000039000000000201041a00000004010000390000000201100367000000000401043b000000400100043d001400000001001d0000002001100039001300000001001d0000000003000411198213c50000040f00000014030000290000000002310049000000200120008a00000000001304350000000001030019198211e60000040f000000140100002900000000020104330000001301000029198211a00000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000067d0210009c000004a40000213d000006800210009c000006890000613d000006810110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000400310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002020003670000000401200370000000000101043b000006cc0310009c0000110f0000213d0000002402200370000000000202043b001400000002001d000006cc0220009c0000110f0000213d00000000001004350000000101000039000000200010043f0000004002000039001300000002001d0000000001000019198211a00000040f00000014020000290000000000200435000000200010043f00000000010000190000001302000029198211a00000040f000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000000020a00003900000000010a041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000004fa0000613d000006e00100004100000000001004350000002201000039000000040010043f000006e1010000410000198400010430000006c70210009c000006a40000613d000006c80210009c000006ba0000613d000006c90110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000400310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000000402100370000000000202043b000006cc0320009c0000110f0000213d0000002401100370000000000301043b00000000010004111982126d0000040f0000000101000039000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006b40210009c000006e30000613d000006b50210009c000006fd0000613d000006b60110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d198216370000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006a00210009c000007010000613d000006a10210009c000007250000613d000006a20110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000d01000039000000000101041a001400000001001d198216940000040f00000000020100190000001401000029198213af0000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006be0210009c000007400000613d000006bf0210009c000007440000613d000006c00110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001401000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006ab0210009c0000075e0000613d000006ac0210009c0000077d0000613d000006ad0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000002ff0000013d0000068d0210009c000007a30000613d0000068e0210009c000007c60000613d0000068f0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000200310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000004010000390000000201100367000000000101043b198217760000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006970210009c000007e90000613d000006980210009c000008040000613d000006990110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001001000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006830210009c0000081f0000613d000006840110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000e00310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000000402100370000000000202043b001400000002001d000006cc0220009c0000110f0000213d0000002402100370000000000202043b001300000002001d000006cc0220009c0000110f0000213d0000006402100370000000000202043b001200000002001d0000004402100370000000000202043b001100000002001d0000008401100370000000000101043b001000000001001d000000ff0110008c0000110f0000213d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b02000039000f00000005001d1982197d0000040f00000001022001900000110f0000613d000000000101043b0000001202000029000000000121004b00000c0d0000a13d000000400100043d0000004402100039000006de03000041000000000032043500000024021000390000001d030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c70000198400010430000006c30210009c0000083d0000613d000006c40110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000400310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000004010000390000000201100367000000000101043b0000000002000411198213cd0000040f0000000001000019000019830001042e000006b00210009c0000085b0000613d000006b10110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000601000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000069c0210009c000008750000613d0000069d0110009c0000110f0000c13d0000000001000416000000000101004b000007280000613d0000110f0000013d000006ba0210009c000008c00000613d000006bb0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001201000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000006a70210009c000008c40000613d000006a80110009c0000110f0000c13d0000000001000416000000000101004b000008ee0000613d0000110f0000013d000006890210009c000008eb0000613d0000068a0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d0000000002000031000000040120008a000006ca03000041000000400410008c00000000040000190000000004034019000006ca01100197000000000501004b000000000300a019000006ca0110009c00000000010400190000000001036019000000000101004b0000110f0000c13d00000002030003670000000401300370000000000101043b000200000001001d000006cc0110009c0000110f0000213d0000002401300370000000000101043b000006680410009c0000110f0000213d0000002304100039000006ca05000041000000000624004b00000000060000190000000006058019000006ca02200197000006ca04400197000000000724004b0000000005008019000000000224013f000006ca0220009c00000000020600190000000002056019000000000202004b0000110f0000c13d0000000402100039000000000223034f000000000202043b000006680320009c000000610000213d00000005032002100000003f04300039000000200500008a000000000454016f000000400500043d0000000004450019001000000005001d000000000554004b00000000050000190000000105004039000006680640009c000000610000213d0000000105500190000000610000c13d000000400040043f00000010040000290000000004240436000f00000004001d000000240110003900000000031300190000000004000031000000000443004b0000110f0000213d000000000202004b000004220000613d0000000f020000290000000204100367000000000404043b00000000024204360000002001100039000000000431004b0000041c0000413d0000000901000039000900000001001d000000000101041a001300000001001d0000001601000039000500000001001d000000000101041a001200000001001d0000000b01000039000600000001001d000000000101041a001100000001001d0000000c01000039000100000001001d000000000101041a001400000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000201043b0000001301000029000000000112004b000008e50000413d0000000601000039000700000001001d000000000101041a000000140300002900000000433100a9000000000401004b00000d190000c13d00000012010000290000001104000029000000000114004b000008e50000413d00000d210000013d000006930210009c000009060000613d000006940110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000400310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000000402100370000000000202043b001400000002001d000006cc0220009c0000110f0000213d0000002401100370000000000101043b001300000001001d0000000001000411001100000001001d00000000001004350000000101000039001200000001001d000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b00000014020000290000000000200435000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000101041a0000001303000029000000000231004b00000c000000813d000000400100043d0000006402100039000006ee0300004100000000003204350000004402100039000006ef030000410000000000320435000000240210003900000025030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c700001984000104300000067e0210009c0000094f0000613d0000067f0110009c0000110f0000c13d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000200310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000901000039000000000101041a001400000001001d00000004010000390000000201100367000000000101043b001300000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000001403000029000000000231004b000008e50000413d00000000013100490000001302000029000000000121001a000008e50000413d000000010110003a000008e50000413d0000001602000039000000000302041a0000000b02000039000000000402041a000000000234004b000008e50000413d00000001020000390000000605000039000000000505041a000000000605004b00000caa0000c13d00000064431000c900000000411300d9000000640110008c000008e50000c13d00000000122300d9000000640120008c00000cf90000813d000000400100043d0000004402100039000006e703000041000000000032043500000024021000390000000d030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c70000198400010430000000200130008c000d00000004001d001400000005001d001300000006001d001200000007001d001100000008001d000005290000413d000b00000003001d000c0000000c001d000e0000000b001d001000000009001d000f0000000a001d0000000000a0043500000662010000410000000002000414000006620320009c0000000001024019000000c00110021000000669011001c700008010020000391982197d0000040f00000001022001900000110f0000613d0000000e0b0000290000001f02b0003900000005022002700000002003b0008c0000000002004019000000000301043b0000000b010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000140500002900000013060000290000001207000029000000110800002900000010090000290000000f0a0000290000000c0c000029000005290000813d000000000002041b0000000102200039000000000312004b000005250000413d0000001f01b0008c0000096a0000a13d000e0000000b001d001000000009001d000f0000000a001d0000000000a0043500000662010000410000000002000414000006620320009c0000000001024019000000c00110021000000669011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000200200008a0000000e0b00002900000000032b01700000002002000039000000000101043b00000010090000290000054a0000613d0000002002000039000000000400001900000000059200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000005420000413d0000000003b3004b0000001306000029000000120700002900000011080000290000000f0a000029000005590000813d0000000303b00210000000f80330018f000000010400008a000000000334022f000000000343013f00000000029200190000000002020433000000000232016f000000000021041b0000000101b0021000000001011001bf0000001405000029000009750000013d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001601000039000000000101041a0000000b02000039000000000202041a000000000312004b000008e50000413d0000000001120049000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d1982185a0000040f0000000005010019000000000602001900000000070300190000000008040019000000400100043d001400000001001d0000000002050019000000000306001900000000040700190000000005080019198211dd0000040f000000140400002900000000014100490000066202000041000006620310009c0000000001028019000006620340009c000000000204401900000040022002100000006001100210000000000121019f000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d198212d40000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000701000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000600310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000000402100370000000000202043b001400000002001d000006cc0220009c0000110f0000213d0000002402100370000000000202043b001300000002001d000006cc0220009c0000110f0000213d0000004401100370000000000101043b001200000001001d000000140100002900000000001004350000000101000039001100000001001d000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000000002000411001000000002001d0000000000200435000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000201041a000000010100008a000f00000002001d000000000112004b00000c940000c13d000000140100002900000013020000290000001203000029198211f90000040f000000400100043d000000110200002900000000002104350000066202000041000006620310009c00000000010280190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001301000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000c01000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000304000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000002330000c13d000000400100043d0000000002710436000000000505004b00000b310000c13d000001000400008a000000000343016f0000000000320435000000000207004b0000002003000039000000000300601900000b3e0000013d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000e01000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001601000039000000000101041a000000800010043f0000070101000041000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000204000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000002330000c13d000000400100043d0000000002710436000000000505004b00000b500000c13d000001000400008a000000000343016f0000000000320435000000000207004b0000002003000039000000000300601900000b5d0000013d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d000000400100043d000000120200003900000000002104350000066202000041000006620310009c00000000010280190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000008070000013d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000200310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000004010000390000000201100367000000000101043b000006cc0210009c0000110f0000213d0000000000100435000000200000043f00000040020000390000000001000019198211a00000040f000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000b01000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d0000085e0000013d0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d198216940000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001201000039000000000101041a000000ff0210008c000008e50000213d000006f502000041000000000112022f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000200310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000004010000390000000201100367000000000101043b00000000001004350000000801000039000000200010043f00000040020000390000000001000019198211a00000040f000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000200310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000d01000039000000000101041a001400000001001d00000004010000390000000201100367000000000101043b198217760000040f00000000020100190000001401000029198213af0000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000400310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000000402100370000000000202043b000006cc0320009c0000110f0000213d0000002401100370000000000301043b0000000001000411198211f90000040f0000000101000039000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000d01000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000f01000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d198218f20000040f000000400400043d000000200540003900000000002504350000004002400039000000000032043500000000001404350000066201000041000006620240009c00000000010440190000004001100210000006df011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000f01000039000000000201041a0000000d01000039000000000101041a198213af0000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d000000400100043d000006e90200004100000000002104350000066202000041000006620310009c00000000010280190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000800310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000004402100370000000000302043b0000000401100370000000000201043b00000000010004110000006004100210000000400100043d00000040051000390000000000450435000000540410003900000000002404350000002002100039000000000032043500000054030000390000000000310435000006d30310009c000000610000213d0000008003100039000000400030043f0000066203000041000006620420009c000000000203801900000040022002100000000001010433000006620410009c00000000010380190000006001100210000000000121019f0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b00000002020003670000006403200370000000000303043b000000000331004b0000110f0000213d0000002402200370000000000202043b000000000121004b00000000010000190000000101006039000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000008ee0000013d0000000001000416000000000101004b0000110f0000c13d000000040200008a0000000001200031000006ca03000041000000000401004b00000000040000190000000004034019000006ca01100197000000000501004b000000000300a019000006ca0110009c00000000010400190000000001036019000000000101004b0000110f0000c13d0000000601000039000000000401041a0000000c01000039000000000301041a00000000513400a9000000000503004b000008df0000613d00000000653100d9000000000445004b000008e50000c13d0000001604000039000000000504041a0000000b04000039000000000604041a000000000456004b00000afa0000813d000006e00100004100000000001004350000001101000039000000040010043f000006e10100004100001984000104300000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000001501000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000a00310008c00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d00000002010003670000008402100370000000000202043b000006cc0320009c0000110f0000213d0000004403100370000000000303043b0000000401100370000000000401043b0000006002200210000000400100043d00000040051000390000000000250435000000540210003900000000004204350000002002100039000000000032043500000054030000390000000000310435000006d30310009c000000610000213d0000008003100039000000400030043f0000066203000041000006620420009c000000000203801900000040022002100000000001010433000006620410009c00000000010380190000006001100210000000000121019f0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b00000064020000390000000202200367000000000202043b000000000221004b0000110f0000213d000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000001000416000000000101004b0000110f0000c13d000000040100008a0000000001100031000006ca02000041000000000301004b00000000030000190000000003024019000006ca01100197000000000401004b000000000200a019000006ca0110009c00000000010300190000000001026019000000000101004b0000110f0000c13d0000000901000039000000000101041a000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e00000000010b004b00000000010000190000096e0000613d00000000010c04330000000302b00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102b00210000000000121019f00000000001a041b0000000009070433000006680190009c000000610000213d0000000304000039000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000002330000c13d000000200130008c000009ab0000413d000e00000003001d000f00000009001d001000000004001d000000000040043500000662010000410000000002000414000006620320009c0000000001024019000000c00110021000000669011001c700008010020000391982197d0000040f00000001022001900000110f0000613d0000000f090000290000001f029000390000000502200270000000200390008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000014050000290000001306000029000000120700002900000011080000290000001004000029000009ab0000813d000000000002041b0000000102200039000000000312004b000009a70000413d0000001f0190008c000009ec0000a13d000f00000009001d001000000004001d000000000040043500000662010000410000000002000414000006620320009c0000000001024019000000c00110021000000669011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000200200008a0000000f0700002900000000032701700000002002000039000000000101043b0000001206000029000009cb0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000009c30000413d000000000373004b000009d60000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000001004000029000009f70000013d000000400100043d0000004402100039000006f1030000410000000000320435000000240210003900000018030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c70000198400010430000000000109004b0000000001000019000009f00000613d00000000010804330000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000014041b000001400100043d00000662020000410000000003000414000006620430009c0000000003028019000006620410009c00000000010280190000006001100210000000c002300210000000000121019f0000066a011001c700008010020000391982197d0000040f00000001022001900000110f0000613d00000662020000410000001304000029000006620340009c00000000030200190000000003044019000000400330021000000014040000290000000004040433000006620540009c00000000040280190000006004400210000000000334019f000000000101043b001400000001001d0000000001000414000006620410009c0000000001028019000000c001100210000000000131019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000201043b0000001401000029000000e00010043f001300000002001d000001000020043f0000066c01000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000a00010043f000000400300043d000000600130003900000013020000290000000000210435000000400130003900000014020000290000000000210435001400000003001d00000020023000390000066e01000041001300000002001d00000000001204350000066c01000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000140300002900000080023000390000000000120435000000a0013000390000000002000410001200000002001d0000000000210435000000a001000039001100000001001d00000000001304350000066f0130009c000000610000213d0000001403000029000000c001300039000000400010043f00000662010000410000001304000029000006620240009c0000000002010019000000000204401900000040022002100000000003030433000006620430009c00000000030180190000006003300210000000000223019f0000000003000414000006620430009c0000000001034019000000c001100210000000000121019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000800010043f0000001201000029000000c00010043f0000066e01000041000001200010043f00000258010000390000000602000039001400000002001d000000000012041b00000800010000390000000c02000039000000000012041b00000670010000410000000d02000039000000000012041b00000671010000410000000e02000039000000000012041b0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b001300000001001d0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d0000001302000029000000010220008a000000000101043b000000000112004b000008e50000213d0000067301000041000000000010043900000004002004430000800b01000039001300000001001d0000002402000039198211b60000040f001200000001001d00000674010000410000001302000039000000000012041b0000001701000039000000000201041a0000067502200197000000000021041b00000670010000410000000f02000039000000000012041b00000676010000410000000702000039000000000012041b0000001401000039000000000001041b0000001201000039000000000001041b0000001501000039000000000001041b0000000b01000039000000000001041b0000001601000039000000000001041b000006770100004100000000001004390000000402000039001000000002001d0000001301000029198211b60000040f0000000d02000029000000000012041b0000067201000041000000000010043900000013010000290000001002000029198211b60000040f0000000a02000039000000000012041b00000010010000390000001202000029000000000021041b00000000002004350000001101000039000000200010043f0000004002000039001300000002001d0000000001000019198211a00000040f000001000200008a000000000301041a000000000223016f00000001022001bf000000000021041b000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a000200443000000c00200043d0000001303000029000001c000300443000001e0002004430000006002000039000000e00300043d000002000020044300000220003004430000008002000039000001000300043d00000240002004430000026000300443000001200200043d00000011030000290000028000300443000002a0002004430000010000100443000000140100002900000120001004430000067801000041000019830001042e0000000304000039000000000756004b00000b6f0000c13d00000000321400a9000000000301004b00000b030000613d00000000311200d9000000000141004b000008e50000c13d0000000901000039000000000101041a000000000121001a000008e50000413d001400000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000001402000029000000000112004b000008e50000413d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000001403000029000000000213004b000008e50000413d0000000001130049000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e0000000000400435000000000307004b000000000300001900000b3e0000613d000006f00400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b00000b370000413d0000002002300039001400000001001d198211e60000040f000000400100043d001300000001001d0000001402000029198211c70000040f000000130400002900000000014100490000066202000041000006620310009c0000000001028019000006620340009c000000000204401900000040022002100000006001100210000000000121019f000019830001042e0000000000400435000000000307004b000000000300001900000b5d0000613d000007000400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b00000b560000413d0000002002300039001400000001001d198211e60000040f000000400100043d001300000001001d0000001402000029198211c70000040f000000130400002900000000014100490000066202000041000006620310009c0000000001028019000006620340009c000000000204401900000040022002100000006001100210000000000121019f000019830001042e000000030430008c00000bf40000213d000006e00100004100000000001004350000001201000039000000040010043f000006e1010000410000198400010430000006f30120009c000008e50000213d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d0000001402000029000006f402200041000000000101043b000000000121004b0000017f0000213d0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b001400000001001d0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d0000001402000029000000010220008a000000000101043b000000000112004b000008e50000213d0000067301000041000000000010043900000004002004430000800b01000039001300000001001d0000002402000039198211b60000040f001400000001001d0000001002000039000000000012041b000006f5010000410000001402000039000000000012041b0000000d01000039000000000101041a0000000f02000039000000000012041b0000001201000039000000000001041b0000001501000039000000000001041b0000000b01000039000000000001041b0000001601000039000000000001041b000006770100004100000000001004390000000402000039001200000002001d0000001301000029198211b60000040f0000000902000039000000000012041b0000067201000041000000000010043900000013010000290000001202000029198211b60000040f0000000a02000039000000000012041b000000140100002900000000001004350000001101000039001300000001001d000000200010043f0000004002000039001200000002001d0000000001000019198211a00000040f000000000101041a000000ff0110019000000000010000190000000101006039198213970000040f000000140100002900000000001004350000001301000029000000200010043f00000000010000190000001202000029198211a00000040f000001000200008a000000000301041a000000000223016f00000001022001bf000000000021041b0000000101000039000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e000000010400008a000000000445013f0000000004460019000000020330027000000000433400d9000000000223004b000008e50000213d0000000304300039000000060240008c00000afd0000c13d000000050400003900000afd0000013d0000000003310049000000110100002900000014020000291982126d0000040f000000400100043d000000120200002900000000002104350000066202000041000006620310009c00000000010280190000004001100210000006cb011001c7000019830001042e000000140100002900000000001004350000000401000039000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000201041a0000000103200039000000000031041b000000400100043d000000c00310003900000012040000290000000000430435000000a0031000390000000000230435000000800210003900000011030000290000000000320435000000600210003900000013030000290000000000320435000000400210003900000014030000290000000000320435000000c0020000390000000002210436000006ce030000410000000000320435000006cf0310009c000000610000213d000000e003100039000000400030043f0000066203000041000006620420009c000000000203801900000040022002100000000001010433000006620410009c00000000010380190000006001100210000000000121019f0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000e00000001001d000006d00100004100000000001004390000000001000412001200000001001d00000004001004430000004001000039000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000006cc011001970000000002000410000c00000002001d000000000112004b00000d7d0000c13d000006d0010000410000000000100439000000120100002900000004001004430000002001000039000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000d00000001001d0000066c01000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000000d02000029000000000121004b00000d7d0000c13d000006d001000041000000000010043900000012010000290000000400100443000000240000044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000110f0000613d00000dec0000013d00000012010000290000000f02000029000000000112004b00000cc80000813d000000400100043d0000004402100039000006ff03000041000000000032043500000024021000390000001d030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c70000198400010430000000000334004900000000423500a900000000545200d9000000000334004b000008e50000c13d000000010220003a000008e50000413d000000000321004b000004e10000813d00000064432000c900000000422300d9000000640220008c000008e50000c13d00000000121300d9000000640120008c000004e80000413d0000000f01000039000000000101041a000005350310008c000000000300001900000cc60000413d000000640220008a000003e80320008c000003e802008039000005354310011a00000000232300a9000000000231004b000004e80000413d000000000131004900000d080000013d0000001401000029000000000101004b00000ce00000c13d000000400100043d0000006402100039000006fd0300004100000000003204350000004402100039000006fe030000410000000000320435000000240210003900000024030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c700001984000104300000001001000029000006cc01100198001000000001001d00000d380000c13d000000400100043d0000006402100039000006fb0300004100000000003204350000004402100039000006fc030000410000000000320435000000240210003900000022030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c700001984000104300000000f01000039000000000101041a0000014d0310008c000000000300001900000d060000413d0000014d3410011a000000640220008a000003e80320008c000003e80200803900000000532400a900000000544300d9000000000224004b000008e50000c13d000000000113001a000008e50000413d0000000e02000039000000000202041a000000000321004b00000000020120190000000d01000039000000000101041a000000000312004b0000000002018019198213af0000040f000000400200043d00000000001204350000066201000041000006620320009c00000000010240190000004001100210000006cb011001c7000019830001042e00000000411300d90000001404000029000000000141004b000008e50000c13d00000012010000290000001104000029000000000114004b000008e50000413d0000000304000039000000120500002900000011060000290000000001560049000000000556004b00000d6e0000c13d00000000653400a9000000000603004b00000d2d0000613d00000000633500d9000000000343004b000008e50000c13d00000013030000290000000002320049000000000252004b00000e6d0000a13d0000001402000029000000200220008c00000b710000413d00000014020000290000000502200270001400000002001d00000e700000013d000000140100002900000000001004350000001101000029000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b00000010020000290000000000200435000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d00000012020000290000000f030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000662020000410000000003000414000006620430009c0000000003028019000006620410009c00000000010280190000004001100210000000c002300210000000000112019f00000669011001c70000800d020000390000000303000039000006fa0400004100000014050000290000001006000029198219780000040f00000001012001900000061d0000c13d0000110f0000013d0000001404000029000000040440008c00000b710000413d00000014040000290000000204400270000000010510008a00000000544500d9000000040500008a000000000554004b000008e50000213d0000000304400039000000060540008c00000d270000c13d000000050400003900000d270000013d000000400100043d000d00000001001d000006d001000041000000000010043900000012010000290000000400100443000000a001000039000b00000001001d000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000110f0000613d0000000d020000290000002002200039000000000101043b000a00000002001d0000000000120435000006d0010000410000000000100439000000120100002900000004001004430000006001000039000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f0000000f0300002900000001022001900000110f0000613d000000000101043b0000000d0200002900000040022000390000000000120435000006d001000041000000000010043900000012010000290000000400100443000000240030044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000000d02000029000000600220003900000000001204350000066c01000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000000d04000029000000a0024000390000000c030000290000000000320435000000800240003900000000001204350000000b0100002900000000001404350000066f0140009c000000610000213d0000000d03000029000000c001300039000000400010043f00000662010000410000000a04000029000006620240009c0000000002010019000000000204401900000040022002100000000003030433000006620430009c00000000030180190000006003300210000000000223019f0000000003000414000006620430009c0000000001034019000000c001100210000000000121019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000301043b000000400100043d00000042021000390000000e0400002900000000004204350000002002100039000006d20400004100000000004204350000002204100039000000000034043500000042030000390000000000310435000006d30310009c000000610000213d0000008003100039000000400030043f0000066203000041000006620420009c000000000203801900000040022002100000000001010433000006620410009c00000000010380190000006001100210000000000121019f0000000202000367000000a404200370000000000404043b000f00000004001d000000c402200370000000000202043b001200000002001d0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d0000001202000029000006d40220009c000011110000213d00000010020000290000001b0220008a000000010220008c000011110000213d000000000101043b000000400200043d00000060032000390000001204000029000000000043043500000040032000390000000f0400002900000000004304350000002003200039000000100400002900000000004304350000000000120435000000000000043500000662010000410000000003000414000006620430009c0000000003018019000006620420009c00000000010240190000004001100210000000c002300210000000000112019f000006da011001c700000001020000391982197d0000040f000000000301001900000060033002700000066203300197000000200430008c000000200400003900000000040340190000001f0540018f000000050440027200000e470000613d00000000060000190000000507600210000000000871034f000000000808043b00000000008704350000000106600039000000000746004b00000e400000413d000000000605004b00000e550000613d00000003055002100000000504400210000000000604043300000000065601cf000000000656022f000000000741034f000000000707043b0000010005500089000000000757022f00000000055701cf000000000565019f0000000000540435000100000003001f0000000102200190000011440000613d0000000001000433000006cc01100198000011850000c13d000000400100043d0000004402100039000006dd030000410000000000320435000000240210003900000018030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c700001984000104300000001402000029000000000202004b00000b710000613d0000000f02000039000800000002001d000000000202041a000b00000002001d0000001002000039000300000002001d000000000202041a000e00000002001d00000010020000290000000002020433000000000202004b001200000000001d000010560000c13d0000000101000029000000000101041a000a00000001001d000000200110008c00000b710000413d0000000a0300002900000005013002700000001202000029000f00000001001d00000000141200d9000d00000004001d0000000201300270000400000001001d0000000501000029000000000801041a0000000601000029000000000701041a001300000002001d001400000000001d000000000187004b000008e50000413d00000000018700490000000f0300002900000000213100d900000000022300490000001301000029000000000121004b00000fd20000413d000b00000002001d000000000772001a000008e50000413d001000000008001d001100000007001d0000000901000029000000000101041a000c00000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000000c09000029000000000291004b00000011070000290000001008000029000008e50000413d0000000702000029000000000302041a0000000a0500002900000000425300a9000000000403004b00000ebf0000613d00000000433200d9000000000353004b000008e50000c13d000000000387004b00000ec10000813d000008e50000013d000000000387004b000008e50000413d00000003040000390000000003870049000000000587004b00000ecf0000613d000000010430008a000000040500002900000000545400d9000000040500008a000000000554004b000008e50000213d0000000304400039000000060540008c00000ecf0000c13d000000050400003900000000652400a9000000000602004b00000ed50000613d00000000622500d9000000000242004b000008e50000c13d00000013020000290000000b040000290000000002420049001300000002001d0000000001910049000000000151004b00000ee00000213d0000000a0100002900000000211300d9000000000102004b00000fd20000c13d0000000601000029000000000071041b0000001501000039000000000101041a000006e20110009c00000ee80000413d0000001401000039000000000001041b0000000901000029000000000101041a001000000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000001003000029000000000231004b000008e50000413d0000000001310049000000010110003a000008e50000413d0000000502000029000000000202041a0000000603000029000000000303041a000000000423004b000008e50000413d00000000042300490000000702000029000000000502041a00000000624500a9000000000605004b00000f0d0000613d00000000655200d9000000000445004b000008e50000c13d0000000504000029000000000034041b000000000321004b00000f260000813d00000064432000c900000000422300d9000000640220008c000008e50000c13d00000000121300d9000000640120008c000004e80000413d0000000801000029000000000101041a000005350310008c000000000300001900000f240000413d000000640220008a000003e80320008c000003e802008039000005354310011a00000000232300a9000000000231004b000004e80000413d000000000131004900000f3e0000013d00000064431000c900000000411300d9000000640110008c000008e50000c13d000000000102004b000011730000613d00000000122300d9000000630120008c000004e80000a13d0000000801000029000000000101041a0000014d0310008c000000000300001900000f3c0000413d0000014d3410011a000000640220008a000003e80320008c000003e80200803900000000532400a900000000544300d9000000000224004b000008e50000c13d000000000113001a000008e50000413d0000000802000029000000000012041b0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000000902000029000000000012041b0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b0000000a02000039000000000012041b0000000e01000039000000000101041a0000000803000029000000000203041a000000000212004b00000f650000813d000000000013041b0000000d01000039000000000101041a000000000203041a000000000212004b00000f6b0000a13d000000000013041b0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b001000000001001d0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000010110008a0000001002000029000000000121004b000008e50000213d0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b00000673020000410000000000200439000000010110008a000000040010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006e4011001c70000800b020000391982197d0000040f00000001022001900000110f0000613d000000000101043b001000000001001d00000000001004350000001101000039000c00000001001d000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000101041a000000ff011001900000112f0000c13d000000100100002900000000001004350000000c01000029000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b00000003010000290000001002000029000000000021041b00000011070000290000000008070019000000010100008a0000001402000029000000000112004b000008e50000613d000000140300002900000001013000390000000d02000029000000000223004b001400000001001d00000e900000413d0000001301000029000000000117001a000008e50000413d0000000602000029000000000012041b0000001401000039000000000201041a000000120400002900000000354200a9001400000005001d000000000304004b00000fed0000613d0000001203000029000000140400002900000000433400d9000000000223004b000008e50000c13d0000001502000039001300000002001d000000000202041a0000001403000029000000000332001a000008e50000413d0000001302000039000000000402041a000000000343004b000010080000a13d0000001204000039000000000304041a0000003b0530008c000010080000813d0000000105300039000000000054041b000006e804000041000000000434022f000006e9050000410000000004450049000000000042041b000006ea02000041000000000232022f000000000021041b00000014010000290000000101100270001400000001001d0000000201000029000006cc01100197001200000001001d0000000000100435000000200000043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000201041a0000001403000029000000000232001a000008e50000413d000000000021041b000000400100043d0000001402000029000000000021043500000662020000410000000003000414000006620430009c0000000003028019000006620410009c00000000010280190000004001100210000000c002300210000000000112019f00000669011001c70000800d020000390000000303000039000006eb0400004100000000050000190000001206000029198219780000040f00000001012001900000110f0000613d0000000601000029000000000101041a000000400200043d00000040032000390000000e040000290000000000430435000000200320003900000000001304350000001401000029000000000012043500000662010000410000000003000414000006620430009c0000000003018019000006620420009c00000000010240190000004001100210000000c002300210000000000112019f000006ec011001c70000800d020000390000000203000039000006ed040000410000000005000411198219780000040f00000001012001900000110f0000613d0000001301000029000000000101041a0000001402000029000000000121001a000008e50000413d0000001302000029000000000012041b0000000001000019000019830001042e000000140300002900000000213100d90000000001230049000a00000001001d00000000010004110000006001100210000d00000001001d0000005401000039000c00000001001d001200000000001d0000000002000019000010680000013d0000001402000029000000010220003900000010010000290000000001010433000000000112004b00000e7d0000813d001400000002001d00000005012002100000000f0200002900000000012100190000000002010433000000400100043d00000040031000390000000d0400002900000000004304350000005403100039000000000023043500000020021000390000000e0300002900000000003204350000000c030000290000000000310435000006d30310009c000000610000213d0000008003100039000000400030043f0000066203000041000006620420009c000000000203801900000040022002100000000001010433000006620410009c00000000010380190000006001100210000000000121019f0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b001300000001001d00000000001004350000000801000039001100000001001d000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000101041a000000ff011001900000001303000029000010620000c13d0000000b01000029000000000113004b000010620000813d000000010100008a0000001202000029000000000112004b000008e50000613d00000000003004350000001101000029000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000201041a000001000300008a000000000232016f00000001022001bf000000000021041b00000012010000290000000101100039001200000001001d0000000a02000029000000000121004b000010620000c13d0000801001000039000b00000001001d0000000002000019000400000003001d00000010010000290000000001010433000000000121004b000011290000a13d001300000002001d00000005012002100000000f0200002900000000012100190000000002010433000000400100043d00000040031000390000000d0400002900000000004304350000005403100039000000000023043500000020021000390000000e0300002900000000003204350000000c030000290000000000310435000006d30310009c000000610000213d0000008003100039000000400030043f0000066203000041000006620420009c000000000203801900000040022002100000000001010433000006620410009c00000000010380190000006001100210000000000121019f0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c70000000b020000291982197d0000040f00000001022001900000110f0000613d000000000101043b00000000001004350000001101000029000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000110f0000613d000000000101043b000000000201041a0000000403000029000000000232016f000000000021041b000000130400002900000001014000390000001402000029000000000224004b0000000a02000029001200000002001d0000000002010019000010c80000413d00000e7d0000013d00000000010000190000198400010430000000400100043d000000240210003900000022030000390000000000320435000006d502000041000000000021043500000004021000390000002003000039000000000032043500000044021000390000001203000029000006d40330009c000011680000a13d000006d90300004100000000003204350000006402100039000006d70300004100000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000006e00100004100000000001004350000003201000039000000040010043f000006e1010000410000198400010430000000400100043d0000006402100039000006e50300004100000000003204350000004402100039000006e603000041000000000032043500000024021000390000002b030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000000400200043d0000001f0430018f0000000503300272000011510000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b000011490000413d000000000504004b000011600000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000066201000041000006620320009c00000000010240190000004001100210000000600200003900000001022001ff000000000112019f0000198400010430000006d60300004100000000003204350000006402100039000006d70300004100000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000000400100043d0000004402100039000006e3030000410000000000320435000000240210003900000006030000290000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c700001984000104300000001402000029000000000121004b0000118e0000c13d0000001401000029000000130200002900000011030000291982126d0000040f0000000001000019000019830001042e000000400100043d0000004402100039000006db03000041000000000032043500000024021000390000001e030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c700001984000104300000066203000041000006620410009c00000000010380190000004001100210000006620420009c00000000020380190000006002200210000000000112019f0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c700008010020000391982197d0000040f0000000102200190000011b40000613d000000000101043b000000000001042d00000000010000190000198400010430000000000301001900000662010000410000000004000414000006620540009c0000000001044019000000c00110021000000060022002100000000001120019000007020110004100000000020300191982197d0000040f0000000102200190000011c50000613d000000000101043b000000000001042d0000000001000019000019840001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000011d60000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000011cf0000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000060061000390000000000560435000000400510003900000000004504350000002004100039000000000034043500000000002104350000008001100039000000000001042d0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000006680310009c000011f30000213d0000000102200190000011f30000c13d000000400010043f000000000001042d000006e00100004100000000001004350000004101000039000000040010043f000006e10100004100001984000104300004000000000002000400000003001d000200000002001d000006cc01100197000300000001001d0000000000100435000000200000043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f0000000102200190000012500000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b000012520000413d00000003010000290000000000100435000000200000043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000000404000029000012500000613d00000001020000290000000002420049000000000101043b000000000021041b0000000201000029000006cc01100197000200000001001d000000000010043500000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000004040000290000000102200190000012500000613d000000000101043b000000000301041a0000000002430019000000000332004b0000000003000019000000010300403900000001033001900000000003040019000012670000c13d000000000021041b000000400100043d000000000031043500000662020000410000000003000414000006620430009c0000000003028019000006620410009c00000000010280190000004001100210000000c002300210000000000112019f00000669011001c70000800d020000390000000303000039000006eb0400004100000003050000290000000206000029198219780000040f0000000101200190000012500000613d000000000001042d00000000010000190000198400010430000000400100043d000000640210003900000703030000410000000000320435000000440210003900000704030000410000000000320435000000240210003900000026030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000006e00100004100000000001004350000001101000039000000040010043f000006e10100004100001984000104300003000000000002000006cc01100198000012aa0000613d000200000003001d000006cc02200198000300000002001d000012bf0000613d000100000001001d00000000001004350000000101000039000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000001022001900000000304000029000012a80000613d000000000101043b0000000000400435000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f00000003060000290000000102200190000012a80000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000662020000410000000003000414000006620430009c0000000003028019000006620410009c00000000010280190000004001100210000000c002300210000000000112019f00000669011001c70000800d020000390000000303000039000006fa040000410000000105000029198219780000040f0000000101200190000012a80000613d000000000001042d00000000010000190000198400010430000000400100043d0000006402100039000006fd0300004100000000003204350000004402100039000006fe030000410000000000320435000000240210003900000024030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000000400100043d0000006402100039000006fb0300004100000000003204350000004402100039000006fc030000410000000000320435000000240210003900000022030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c700001984000104300005000000000002000006d00100004100000000001004390000000001000412000400000001001d00000004001004430000004001000039000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000138f0000613d000000000101043b000006cc011001970000000002000410000300000002001d000000000112004b0000131e0000c13d000006d0010000410000000000100439000000040100002900000004001004430000002001000039000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000138f0000613d000000000101043b000500000001001d0000066c01000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000138f0000613d000000000101043b0000000502000029000000000121004b0000131e0000c13d000006d001000041000000000010043900000004010000290000000400100443000000240000044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000138d0000c13d0000138f0000013d000000400100043d000500000001001d000006d001000041000000000010043900000004010000290000000400100443000000a001000039000200000001001d000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000138f0000613d00000005020000290000002002200039000000000101043b000100000002001d0000000000120435000006d0010000410000000000100439000000040100002900000004001004430000006001000039000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000138f0000613d000000000101043b000000050200002900000040022000390000000000120435000006d0010000410000000000100439000000040100002900000004001004430000008001000039000000240010044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006d1011001c700008005020000391982197d0000040f00000001022001900000138f0000613d000000000101043b0000000502000029000000600220003900000000001204350000066c01000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000138f0000613d000000000101043b0000000504000029000000a002400039000000030300002900000000003204350000008002400039000000000012043500000002010000290000000000140435000007050140009c000013910000813d0000000503000029000000c001300039000000400010043f00000662010000410000000104000029000006620240009c0000000002010019000000000204401900000040022002100000000003030433000006620430009c00000000030180190000006003300210000000000223019f0000000003000414000006620430009c0000000001034019000000c001100210000000000121019f0000066b011001c700008010020000391982197d0000040f00000001022001900000138f0000613d000000000101043b000000000001042d00000000010000190000198400010430000006e00100004100000000001004350000004101000039000000040010043f000006e1010000410000198400010430000000000101004b0000139a0000613d000000000001042d000000400100043d0000006402100039000006e50300004100000000003204350000004402100039000006e603000041000000000032043500000024021000390000002b030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000000000302004b000013b30000613d00000000212100d9000000000001042d000000400100043d0000004402100039000006e303000041000000000032043500000024021000390000000b030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c700001984000104300000006003300210000000200510003900000000003504350000003403100039000000000043043500000000002104350000005401100039000000000001042d0010000000000002000d00000002001d0000001002000039000900000002001d000000000502041a0000000002000411000c00000002001d0000006003200210000000400200043d000000400420003900000000003404350000005403200039000000000013043500000054010000390000000001120436000b00000005001d0000000000510435000007060320009c000015c80000813d0000008003200039000000400030043f0000066203000041000006620410009c000000000103801900000040011002100000000002020433000006620420009c00000000020380190000006002200210000000000112019f0000000002000414000006620420009c0000000002038019000000c002200210000000000112019f0000066b011001c700008010020000391982197d0000040f0000000102200190000015c00000613d000000000201043b0000000f01000039000a00000001001d000000000101041a000000000112004b000015ce0000813d001000000002001d00000000002004350000000801000039000f00000001001d000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f0000000102200190000015c00000613d000000000101043b000000000101041a000000ff01100190000015e30000c13d000000100100002900000000001004350000000f01000029000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f0000000102200190000015c00000613d000000000101043b000000000201041a000001000300008a000800000003001d000000000232016f00000001022001bf000000000021041b0000001501000039000e00000001001d000000000101041a0000001402000039001000000002001d000000000202041a0000000003120019000000000223004b000000000200001900000001020040390000000102200190000015c20000c13d0000001302000039000000000402041a000000000343004b000014420000a13d0000001204000039000000000304041a0000003b0530008c000014420000813d0000000105300039000000000054041b000006e804000041000000000434022f000006e9050000410000000004450049000000000042041b000006ea02000041000000000232022f0000001003000029000000000023041b0000001604000039000000000704041a0000000c02000039000000000502041a0000000b02000039000f00000002001d000000000202041a000000010300008a000000000332004b000015c20000613d00000001082000390000000f02000029000000000082041b000000000278004b000015c20000413d0000001f0250008c000015f80000a13d0000000006780049000000050250027000000000322600d9000000000203004b000015710000c13d000300000008001d000400000007001d000500000006001d000600000005001d000100000004001d000006e90110009c000014610000a13d0000001001000029000000000001041b0000000901000039000700000001001d000000000101041a000200000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000015c00000613d000000000101043b0000000209000029000000000291004b000000060600002900000005080000290000000405000029000000030a000029000015c20000413d0000000607000039000000000307041a00000000426300a9000000000403004b000014810000613d00000000433200d9000000000363004b000015c20000c13d000000030300003900000000045a004b0000148b0000613d0000000203600270000000010480008a00000000433400d90000000303300039000000060430008c0000148b0000c13d000000050300003900000000542300a9000000000502004b000014910000613d00000000522400d9000000000232004b000015c20000c13d0000000001910049000000000141004b000014970000213d00000000216800d9000000000102004b000015710000c13d000600000007001d0000000701000029000000000101041a000500000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000015c00000613d000000000101043b0000000503000029000000000231004b00000001070000290000000605000029000015c20000413d0000000001310049000000010110003a000015c20000413d000000000207041a0000000f03000029000000000303041a000000000423004b000015c20000413d0000000004230049000000000505041a00000000624500a9000000000605004b000014bd0000613d00000000655200d9000000000445004b000015c20000c13d000000000037041b000000000321004b000014d50000813d00000064432000c900000000422300d9000000640220008c000015c20000c13d00000000121300d9000000640120008c000015fe0000413d0000000a01000029000000000101041a000005350310008c0000000003000019000014d30000413d000000640220008a000003e80320008c000003e802008039000005354310011a00000000232300a9000000000231004b000015fe0000413d0000000001310049000014ed0000013d00000064431000c900000000411300d9000000640110008c000015c20000c13d000000000102004b000016250000613d00000000122300d9000000630120008c000015fe0000a13d0000000a01000029000000000101041a0000014d0310008c0000000003000019000014eb0000413d0000014d3410011a000000640220008a000003e80320008c000003e80200803900000000532400a900000000544300d9000000000224004b000015c20000c13d000000000113001a000015c20000413d0000000a02000029000000000012041b0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000015c00000613d000000000101043b0000000702000029000000000012041b0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000015c00000613d000000000101043b0000000a02000039000000000012041b0000000e01000039000000000101041a0000000a03000029000000000203041a000000000212004b000015140000813d000000000013041b0000000d01000039000000000101041a000000000203041a000000000212004b0000151a0000a13d000000000013041b0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000015c00000613d000000000101043b000a00000001001d0000067201000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000015c00000613d0000000a02000029000000010220008a000000000101043b000000000112004b000015c20000213d00000673010000410000000000100439000000040020044300000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006e4011001c70000800b020000391982197d0000040f0000000102200190000015c00000613d000000000101043b000a00000001001d00000000001004350000001101000039000700000001001d000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f0000000102200190000015c00000613d0000000a02000029000000000101043b000000000101041a000000ff01100190000016100000c13d00000000002004350000000701000029000000200010043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f0000000102200190000015c00000613d000000000101043b000000000201041a0000000803000029000000000232016f00000001022001bf000000000021041b00000009010000290000000a02000029000000000021041b0000001001000029000000000101041a000a00000001001d0000000d01000029000006cc01100197000d00000001001d0000000000100435000000200000043f00000662010000410000000002000414000006620320009c0000000001024019000000c001100210000006cd011001c700008010020000391982197d0000040f0000000102200190000015c00000613d000000000101043b000000000201041a0000000a03000029000000000232001a000015c20000413d000000000021041b000000400100043d000000000031043500000662020000410000000003000414000006620430009c0000000003028019000006620410009c00000000010280190000004001100210000000c002300210000000000112019f00000669011001c70000800d020000390000000303000039000006eb0400004100000000050000190000000d06000029198219780000040f0000000101200190000015c00000613d0000000e01000029000000000201041a0000001001000029000000000101041a000000000221001a000015c20000413d0000000e03000029000000000023041b0000000f02000029000000000202041a000000400300043d00000040043000390000000b05000029000000000054043500000020043000390000000000240435000000000013043500000662010000410000000002000414000006620420009c0000000002018019000006620430009c00000000010340190000004001100210000000c002200210000000000112019f000006ec011001c70000800d020000390000000203000039000006ed040000410000000c05000029198219780000040f0000000101200190000015c00000613d000000000001042d00000000010000190000198400010430000006e00100004100000000001004350000001101000039000000040010043f000006e1010000410000198400010430000006e00100004100000000001004350000004101000039000000040010043f000006e1010000410000198400010430000000400100043d000000640210003900000707030000410000000000320435000000440210003900000708030000410000000000320435000000240210003900000028030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000000400100043d00000064021000390000070903000041000000000032043500000044021000390000070a030000410000000000320435000000240210003900000035030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000006e00100004100000000001004350000001201000039000000040010043f000006e1010000410000198400010430000000400100043d0000004402100039000006e703000041000000000032043500000024021000390000000d030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c70000198400010430000000400100043d0000006402100039000006e50300004100000000003204350000004402100039000006e603000041000000000032043500000024021000390000002b030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006d8011001c70000198400010430000000400100043d0000004402100039000006e303000041000000000032043500000024021000390000000f030000290000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c7000019840001043000040000000000020000000901000039000000000101041a000100000001001d0000001601000039000000000101041a000300000001001d0000000b01000039000000000101041a000200000001001d0000000c01000039000000000101041a000400000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000016920000613d000000000101043b0000000108000029000000000281004b000000040700002900000003050000290000000206000029000016860000413d0000000602000039000000000202041a00000000437200a9000000000402004b000016620000613d00000000422300d9000000000272004b000016860000c13d000000000256004b000016640000813d000016860000013d000000000256004b000016860000413d00000003040000390000000002560049000000000556004b000016740000613d000000030470008c0000168c0000a13d0000000204700270000000010520008a00000000544500d9000000040500008a000000000554004b000016860000213d0000000304400039000000060540008c000016740000c13d000000050400003900000000653400a9000000000603004b0000167a0000613d00000000633500d9000000000343004b000016860000c13d0000000001810049000000000151004b000016810000a13d000000200170008c0000168c0000413d0000000507700270000016830000013d000000000107004b0000168c0000613d00000000217200d90000000001270049000000000001042d000006e00100004100000000001004350000001101000039000000040010043f000006e1010000410000198400010430000006e00100004100000000001004350000001201000039000000040010043f000006e10100004100001984000104300000000001000019000019840001043000070000000000020000000901000039000100000001001d000000000101041a000400000001001d0000001601000039000200000001001d000000000101041a000600000001001d0000000b01000039000300000001001d000000000101041a000500000001001d0000000c01000039000000000101041a000700000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000174a0000613d000000000201043b0000000409000029000000000192004b000000070800002900000006060000290000000507000029000017440000413d0000000601000039000000000101041a00000000348100a9000000000301004b000016c20000613d00000000531400d9000000000383004b000017440000c13d000000000367004b000016c40000813d000017440000013d000000000367004b000017440000413d00000003050000390000000003670049000000000667004b000016d40000613d000000030580008c0000174c0000a13d0000000205800270000000010630008a00000000655600d9000000040600008a000000000665004b000017440000213d0000000305500039000000060650008c000016d40000c13d000000050500003900000000764500a9000000000704004b000016da0000613d00000000744600d9000000000454004b000017440000c13d0000000002920049000000000262004b000016e10000a13d000000200280008c0000174c0000413d0000000508800270000016e30000013d000000000208004b0000174c0000613d0000000202000029000000000202041a0000000304000029000000000404041a000000000524004b000017440000413d000000000224004900000000438300d90000000003480049000000000223001a000017440000413d00000000341200a9000000000301004b000016f40000613d00000000311400d9000000000121004b000017440000c13d000700000004001d0000000101000029000000000101041a000600000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000174a0000613d000000000101043b0000000603000029000000000231004b0000000704000029000017440000413d0000000001310049000000010110003a000017440000413d000000000241004b000017230000813d00000064324000c900000000434200d9000000640330008c000017440000c13d00000000121200d9000000640120008c000017520000413d0000000f01000039000000000101041a000005350310008c0000000003000019000017210000413d000000640220008a000003e80320008c000003e802008039000005354310011a00000000232300a9000000000231004b000017520000413d00000000013100490000173b0000013d00000064321000c900000000311200d9000000640110008c000017440000c13d000000000104004b000017640000613d00000000124200d9000000630120008c000017520000a13d0000000f01000039000000000101041a0000014d0310008c0000000003000019000017390000413d0000014d3410011a000000640220008a000003e80320008c000003e80200803900000000532400a900000000544300d9000000000224004b000017440000c13d000000000113001a000017440000413d0000000e02000039000000000202041a000000000321004b000000000102a0190000000d02000039000000000202041a000000000321004b0000000001028019000000000001042d000006e00100004100000000001004350000001101000039000000040010043f000006e101000041000019840001043000000000010000190000198400010430000006e00100004100000000001004350000001201000039000000040010043f000006e1010000410000198400010430000000400100043d0000004402100039000006e703000041000000000032043500000024021000390000000d030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c70000198400010430000000400100043d0000004402100039000006e3030000410000000000320435000000240210003900000003030000290000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c700001984000104300008000000000002000200000001001d0000000901000039000100000001001d000000000101041a000500000001001d0000001601000039000300000001001d000000000101041a000700000001001d0000000b01000039000400000001001d000000000101041a000600000001001d0000000c01000039000000000101041a000800000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000182e0000613d000000000201043b0000000509000029000000000192004b000000080800002900000007060000290000000607000029000018280000413d0000000601000039000000000101041a00000000348100a9000000000301004b000017a50000613d00000000531400d9000000000383004b000018280000c13d000000000367004b000017a70000813d000018280000013d000000000367004b000018280000413d00000003050000390000000003670049000000000667004b000017b70000613d000000030580008c000018300000a13d0000000205800270000000010630008a00000000655600d9000000040600008a000000000665004b000018280000213d0000000305500039000000060650008c000017b70000c13d000000050500003900000000764500a9000000000704004b000017bd0000613d00000000744600d9000000000454004b000018280000c13d0000000002920049000000000262004b000017c40000a13d000000200280008c000018300000413d0000000508800270000017c60000013d000000000208004b000018300000613d0000000302000029000000000202041a0000000404000029000000000404041a000000000524004b000018280000413d000000000224004900000000438300d90000000003480049000000000223001a000018280000413d00000000341200a9000000000301004b000017d70000613d00000000311400d9000000000121004b000018280000c13d000800000004001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f00000001022001900000182e0000613d000000000101043b0000000202000029000000000121001a0000000804000029000018280000413d0000000102000029000000000202041a000000000321004b000018280000413d0000000001210049000000010110003a000018280000413d000000000241004b000018070000813d00000064324000c900000000434200d9000000640330008c000018280000c13d00000000121200d9000000640120008c000018360000413d0000000f01000039000000000101041a000005350310008c0000000003000019000018050000413d000000640220008a000003e80320008c000003e802008039000005354310011a00000000232300a9000000000231004b000018360000413d00000000013100490000181f0000013d00000064321000c900000000311200d9000000640110008c000018280000c13d000000000104004b000018480000613d00000000124200d9000000630120008c000018360000a13d0000000f01000039000000000101041a0000014d0310008c00000000030000190000181d0000413d0000014d3410011a000000640220008a000003e80320008c000003e80200803900000000532400a900000000544300d9000000000224004b000018280000c13d000000000113001a000018280000413d0000000e02000039000000000202041a000000000321004b000000000102a0190000000d02000039000000000202041a000000000321004b0000000001028019000000000001042d000006e00100004100000000001004350000001101000039000000040010043f000006e101000041000019840001043000000000010000190000198400010430000006e00100004100000000001004350000001201000039000000040010043f000006e1010000410000198400010430000000400100043d0000004402100039000006e703000041000000000032043500000024021000390000000d030000390000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c70000198400010430000000400100043d0000004402100039000006e3030000410000000000320435000000240210003900000004030000290000000000320435000006d50200004100000000002104350000000402100039000000200300003900000000003204350000066202000041000006620310009c00000000010280190000004001100210000006dc011001c7000019840001043000030000000000020000001601000039000000000501041a0000000b01000039000000000601041a000000000156004b000018900000413d000000000156004b00000000020000190000000001000019000000000300001900000000040000190000188f0000613d000200000006001d000300000005001d0000000901000039000000000101041a000100000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000018960000613d000000000201043b0000000104000029000000000142004b00000003010000290000000203000029000018900000413d000000000113004900000000024200490000001403000039000000000503041a000000000321004b000018980000213d00000000141200d90000070b12400129000000000105004b000000000100001900000000030000190000188f0000613d00000000315200a900000000635100d9000000000323004b0000000003050019000018900000c13d000000000001042d000006e00100004100000000001004350000001101000039000000040010043f000006e101000041000019840001043000000000010000190000198400010430000006e00100004100000000001004350000001201000039000000040010043f000006e101000041000019840001043000030000000000020000001601000039000000000501041a0000000b01000039000000000601041a000000000156004b000018e40000413d000000000156004b0000000001000019000000000200001900000000030000190000000004000019000018e30000613d000200000006001d000300000005001d0000000901000039000000000101041a000100000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000018ea0000613d000000000101043b0000000104000029000000000241004b00000003020000290000000203000029000018e40000413d000000000523004900000000074100490000001401000039000000000601041a000000000175004b000018ec0000213d000000000106004b0000000001000019000000000200001900000000030000190000000004000019000018e30000613d00000000215700d90000070b2110012900000000256100a900000000326500d9000000000112004b000018e40000c13d0000016c0150008c0000000001000019000000000200001900000000030000190000000004000019000018e30000a13d0000001501000039000000000301041a0000001301000039000000000201041a000000000132004b000018e40000413d00000000013200490000016d5450011a00000000514100d9000000000001042d000006e00100004100000000001004350000001101000039000000040010043f000006e101000041000019840001043000000000010000190000198400010430000006e00100004100000000001004350000001201000039000000040010043f000006e101000041000019840001043000070000000000020000001606000039000000000406041a0000000b07000039000000000507041a000000000145004b0000196a0000413d000000000145004b000000000100001900000000020000190000000003000019000019690000613d000300000007001d000400000006001d000500000005001d000600000004001d0000000901000039000200000001001d000000000101041a000700000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000019700000613d000000000801043b0000000701000029000000000118004b00000006060000290000000507000029000000040100002900000003020000290000196a0000413d000000000401041a000000000202041a000000000142004b0000196a0000413d000000000142004b00000000010000190000000003000019000019620000613d000100000002001d000300000004001d000400000008001d0000000201000029000000000101041a000200000001001d0000067701000041000000000010043900000662010000410000000002000414000006620320009c0000000001024019000000c0011002100000066d011001c70000800b020000391982197d0000040f0000000102200190000019700000613d000000000101043b0000000204000029000000000241004b000000060600002900000005070000290000000408000029000000030200002900000001030000290000196a0000413d000000000223004900000000054100490000001401000039000000000401041a000000000152004b000019720000213d000000000104004b00000000010000190000000003000019000019620000613d00000000212500d90000070b2110012900000000324100a900000000434200d9000000000113004b0000196a0000c13d0000016d0120008c00000000010000190000000003000019000019620000413d0000001501000039000000000101041a0000001303000039000000000303041a000000000413004b0000196a0000413d00000000041300490000016d1220011a000000000142004b00000000010000190000000003000019000019620000213d00000000132400d90000070c213000d100000000423100d90000070c0220009c0000196a0000c13d000000000267004900000007040000290000000004480049000000000542004b000019720000213d00000000422400d900000000412100d9000000000001042d000006e00100004100000000001004350000001101000039000000040010043f000006e101000041000019840001043000000000010000190000198400010430000006e00100004100000000001004350000001201000039000000040010043f000006e10100004100001984000104300000197b002104210000000102000039000000000001042d0000000002000019000000000001042d00001980002104230000000102000039000000000001042d0000000002000019000000000001042d0000198200000432000019830001042e000019840001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff7a6b426974636f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffffbf7a6b4254430000000000000000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000020000000000000000000000000000000000000000000160000000000000000002000000000000000000000000000000000000000000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b02000002000000000000000000000000000000040000000000000000000000008b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f000000000000000000000000000000000000000000000000ffffffffffffff3f0000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000042cbb15ccdc3cad6266b0e7a08c0454b23bf29dc2df74b6f3c209e9336465bd180b41246c05cbb406f874e82aa2faf7db11bba9792fe09929e56ef1eee2c2da300000000000000000000000000000000000000000008af7623fb67bf1a800000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000065fb0800796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913200000002000000000000000000000000000001c00000010000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a4c1fded00000000000000000000000000000000000000000000000000000000c76ae53f00000000000000000000000000000000000000000000000000000000dc6e9cf800000000000000000000000000000000000000000000000000000000e932012a00000000000000000000000000000000000000000000000000000000e932012b00000000000000000000000000000000000000000000000000000000e97d300800000000000000000000000000000000000000000000000000000000dc6e9cf900000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000d0f66e4a00000000000000000000000000000000000000000000000000000000d0f66e4b00000000000000000000000000000000000000000000000000000000d505accf00000000000000000000000000000000000000000000000000000000c76ae54000000000000000000000000000000000000000000000000000000000cb9ae70700000000000000000000000000000000000000000000000000000000b5ade81a00000000000000000000000000000000000000000000000000000000c0abebdf00000000000000000000000000000000000000000000000000000000c0abebe000000000000000000000000000000000000000000000000000000000c73c58bc00000000000000000000000000000000000000000000000000000000b5ade81b00000000000000000000000000000000000000000000000000000000b723b34e00000000000000000000000000000000000000000000000000000000a4c1fdee00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000b1160b780000000000000000000000000000000000000000000000000000000087a2a9d50000000000000000000000000000000000000000000000000000000095d89b40000000000000000000000000000000000000000000000000000000009d30dffa000000000000000000000000000000000000000000000000000000009d30dffb00000000000000000000000000000000000000000000000000000000a457c2d70000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000097566aa00000000000000000000000000000000000000000000000000000000087a2a9d6000000000000000000000000000000000000000000000000000000008a769d35000000000000000000000000000000000000000000000000000000008ae0368b0000000000000000000000000000000000000000000000000000000078e979240000000000000000000000000000000000000000000000000000000081269a550000000000000000000000000000000000000000000000000000000081269a5600000000000000000000000000000000000000000000000000000000829965cc0000000000000000000000000000000000000000000000000000000078e97925000000000000000000000000000000000000000000000000000000007ecebe000000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000757991a80000000000000000000000000000000000000000000000000000000077c3864400000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000490203a6000000000000000000000000000000000000000000000000000000004fa972e0000000000000000000000000000000000000000000000000000000006d2bfdb9000000000000000000000000000000000000000000000000000000006d2bfdba000000000000000000000000000000000000000000000000000000006de9f32b000000000000000000000000000000000000000000000000000000004fa972e10000000000000000000000000000000000000000000000000000000051736a1300000000000000000000000000000000000000000000000000000000490203a70000000000000000000000000000000000000000000000000000000049bc4aed000000000000000000000000000000000000000000000000000000004ef37628000000000000000000000000000000000000000000000000000000003644e514000000000000000000000000000000000000000000000000000000003eaaf86a000000000000000000000000000000000000000000000000000000003eaaf86b0000000000000000000000000000000000000000000000000000000045d8a232000000000000000000000000000000000000000000000000000000003644e515000000000000000000000000000000000000000000000000000000003950935100000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000032e997080000000000000000000000000000000000000000000000000000000034d5b1310000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000002b112e48000000000000000000000000000000000000000000000000000000002b112e49000000000000000000000000000000000000000000000000000000002d38bf7a0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000240c3b700000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000000000000000000000000000000000001aa94a4d000000000000000000000000000000000000000000000000000000002381a60e000000000000000000000000000000000000000000000000000000000a891b820000000000000000000000000000000000000000000000000000000017da485e0000000000000000000000000000000000000000000000000000000017da485f000000000000000000000000000000000000000000000000000000001801fbe5000000000000000000000000000000000000000000000000000000000a891b83000000000000000000000000000000000000000000000000000000000c17983200000000000000000000000000000000000000000000000000000000012d3edf0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000400000000000000000000000006e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9000000000000000000000000000000000000000000000000ffffffffffffff1f310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000001901000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a008c379a00000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202776272076616c7565000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c000000000000000000000000000000000000008000000000000000000000000045524332305065726d69743a20696e76616c6964207369676e61747572650000000000000000000000000000000000000000006400000000000000000000000045434453413a20696e76616c6964207369676e6174757265000000000000000045524332305065726d69743a206578706972656420646561646c696e6500000000000000000000000000000000000000000000600000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000115eec47f6cf7e35000001446976206279207a65726f00000000000000000000000000000000000000000002000002000000000000000000000000000000240000000000000000000000006e6765206265666f72652e0000000000000000000000000000000000000000004d757374206e65766572206861766520757365642074686973206368616c6c6553756220756e646572666c6f77000000000000000000000000000000000000000000000000000000000000000000000000000000000457bb11fdb3df8d400000000000000000000000000000000000000000000000115eec47f6cf7e350000000000000000000000000000000000000000000000000000015af1d78b58c40000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0200000000000000000000000000000000000060000000000000000000000000cf6fbb9dcea7d07263ab4f5c3a92f53af33dffc421d9d121e1c74b307e68189d207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b4f6e6c7920616c6c6f77656420746f2072756e206f6e63650000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6c57f0000000000000000000000000000000000000000000000000000000000093a80000000000000000000000000000000000000000000000002b5e3af16b1880000696d652031373035353130383030000000000000000000000000000000000000284a616e2031377468203230323420402035504d20474d5429206570636f68544d757374207761697420756e74696c20616674657220737461727454696d652000000000000000000000000000000000000000a40000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace00000000000000000000000000000000000000200000008000000000000000000200000200000000000000000000000000000000000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000000ffffffffffffff806e67546172676574000000000000000000000000000000000000000000000000446967657374206d75737420626520736d616c6c6572207468616e206d696e697320736f6c766520686173206265656e207573656400000000000000000000004d757374206e6f74206265656e207468652066697273742074696d65207468690000000000000000000000000000000000000000000000000000000001e1338000000000000000000000000000000000000000000000000000000000000151800000000000000000000000000000000000000000000000000000000000000000be2602ced6dc786bc1651731985d878c0351cc88763e8b185c0ab0c9fac5020b

[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.