ETH Price: $3,384.19 (-2.17%)
Gas: 5 Gwei

Token

OkayDuckAzukis (OKDAZUKI)
 

Overview

Max Total Supply

2,889 OKDAZUKI

Holders

396

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 OKDAZUKI
0x857d0d9c5562c84f17b25657e113f5acf9e73ef2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OkayDuckAzukis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// SPDX-License-Identifier: MIT

/*
   ___   _                ___             _      _              _    _     
  / _ \ | |__ __ _  _  _ |   \  _  _  __ | |__  /_\   ___ _  _ | |__(_) ___
 | (_) || / // _` || || || |) || || |/ _|| / / / _ \ |_ /| || || / /| |(_-<
  \___/ |_\_\\__,_| \_, ||___/  \_,_|\__||_\_\/_/ \_\/__| \_,_||_\_\|_|/__/
                    |__/                                                   
*/

// File 1: Address.sol

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// FILE 2: Context.sol
pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File 3: Strings.sol

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }
}


// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library 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 4: Ownable.sol


pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}





// File 5: IERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File 6: IERC721.sol

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}



// File 7: IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external returns (string memory);
}




// File 8: ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File 9: ERC721.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );
        if (to.isContract()) {
            revert ("Token transfer to contract address is not allowed.");
        } else {
            _approve(to, tokenId);
        }
        // _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}





// File 10: IERC721Enumerable.sol

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}






// File 11: ERC721Enumerable.sol

pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}



// File 12: IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}



// File 13: ERC721A.sol

pragma solidity ^0.8.0;


contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override virtual returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// FILE 14: OkayDuckAzukis.sol

pragma solidity ^0.8.0;

contract OkayDuckAzukis is ERC721A, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  string private uriPrefix = "";
  string public uriSuffix = ".json";
  string private hiddenMetadataUri;

    constructor() ERC721A("OkayDuckAzukis", "OKDAZUKI") {
        setHiddenMetadataUri("ipfs://__CID__/hidden.json");
    }

    uint256 public constant maxSupply = 9999;
    uint256 private mintCount = 0;
    uint256 public maxMintPerTx = 3;
    uint256 public maxMintPerWallet = 3;   
    uint256 public price = 0.0099 ether;
     
  bool public paused = true;
  bool public revealed = true;
  bool public dynamicCost = true;

  mapping (address => uint256) public addressMintedBalance;
  event Minted(uint256 totalMinted);
     
    function totalSupply() public view override returns (uint256) {
        return mintCount;
    }

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function needToUpdateCost(uint256 _supply) internal pure returns (uint256 _cost){
        if(_supply < 1000) {
            return 0 ether;
        }
        if(_supply <= maxSupply) {
            return 0.0099 ether;
        }
    }

    // dynamic mint
    function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0, "Minimum 1 NFT has to be minted per transaction");
    require(supply + _mintAmount <= maxSupply, "Exceeds maximum supply");

    if (msg.sender != owner()) {
        require(_mintAmount <= maxMintPerTx, "max per tx exceeded!");

        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require (ownerMintedCount + _mintAmount <= maxMintPerWallet, "max per address exceeded!");

        if(dynamicCost == true) {
            require(msg.value >= needToUpdateCost(supply) * _mintAmount, "Not enough funds");
        }

        if(dynamicCost == false) {
            require(msg.value >= price * _mintAmount, "Not enough funds");
        }
    }
 
    mintCount += _mintAmount;
    addressMintedBalance[msg.sender]+= _mintAmount;      
    _safeMint(msg.sender, _mintAmount);
    emit Minted(_mintAmount);
  }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
        address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
        currentTokenId++;
        }
        return ownedTokenIds;
    }
  
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if (revealed == false) {
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }  

  function setMaxMintPerTx(uint256 _maxMintPerTx) public onlyOwner {
    maxMintPerTx = _maxMintPerTx;
  }

  function setMaxMintPerWallet(uint256 _maxMintPerWallet) public onlyOwner {
    maxMintPerWallet = _maxMintPerWallet;
  }  

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }  

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }  

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setdynamicCost(bool _state) public onlyOwner {
        dynamicCost = _state;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dynamicCost","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setdynamicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b9291906200036d565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200036d565b506000600b556003600c556003600d5566232bff5f46c000600e556001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550348015620000f257600080fd5b506040518060400160405280600e81526020017f4f6b61794475636b417a756b69730000000000000000000000000000000000008152506040518060400160405280600881526020017f4f4b44415a554b490000000000000000000000000000000000000000000000008152508160019080519060200190620001779291906200036d565b508060029080519060200190620001909291906200036d565b5050506000620001a56200029060201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200028a6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200029860201b60201c565b62000505565b600033905090565b620002a86200029060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ce6200034360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000327576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031e9062000444565b60405180910390fd5b80600a90805190602001906200033f9291906200036d565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037b9062000477565b90600052602060002090601f0160209004810192826200039f5760008555620003eb565b82601f10620003ba57805160ff1916838001178555620003eb565b82800160010185558215620003eb579182015b82811115620003ea578251825591602001919060010190620003cd565b5b509050620003fa9190620003fe565b5090565b5b8082111562000419576000816000905550600101620003ff565b5090565b60006200042c60208362000466565b91506200043982620004dc565b602082019050919050565b600060208201905081810360008301526200045f816200041d565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049057607f821691505b60208210811415620004a757620004a6620004ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614e5f80620005156000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063afdf6134116100ab578063d5abeb011161006f578063d5abeb0114610872578063de7fcb1d1461089d578063e0a80853146108c8578063e985e9c5146108f1578063f2fde38b1461092e5761023b565b8063afdf61341461078d578063b228d925146107b6578063b88d4fde146107e1578063be745f771461080a578063c87b56dd146108355761023b565b806395d89b41116100f257806395d89b41146106c9578063a035b1fe146106f4578063a0712d681461071f578063a22cb4651461073b578063a2b40d19146107645761023b565b80636352211e146105e457806370a0823114610621578063715018a61461065e5780637ec4a659146106755780638da5cb5b1461069e5761023b565b80632f745c59116101bc5780634fdd43cb116101805780634fdd43cb14610511578063518302271461053a5780635503a0e8146105655780635c975abb14610590578063616cdb1e146105bb5761023b565b80632f745c591461041a5780633ccfd60b1461045757806342842e0e1461046e578063438b6300146104975780634f6ccce7146104d45761023b565b806316ba10e01161020357806316ba10e01461033757806316c38b3c1461036057806318160ddd1461038957806318cae269146103b457806323b872dd146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630c73542c1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061375d565b610957565b6040516102749190613e81565b60405180910390f35b34801561028957600080fd5b50610292610aa1565b60405161029f9190613e9c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613800565b610b33565b6040516102dc9190613df8565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136f0565b610bb8565b005b34801561031a57600080fd5b5061033560048036038101906103309190613730565b610cd1565b005b34801561034357600080fd5b5061035e600480360381019061035991906137b7565b610d6a565b005b34801561036c57600080fd5b5061038760048036038101906103829190613730565b610e00565b005b34801561039557600080fd5b5061039e610e99565b6040516103ab91906141fe565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061356d565b610ea3565b6040516103e891906141fe565b60405180910390f35b3480156103fd57600080fd5b50610418600480360381019061041391906135da565b610ebb565b005b34801561042657600080fd5b50610441600480360381019061043c91906136f0565b610ecb565b60405161044e91906141fe565b60405180910390f35b34801561046357600080fd5b5061046c6110bd565b005b34801561047a57600080fd5b50610495600480360381019061049091906135da565b6111e8565b005b3480156104a357600080fd5b506104be60048036038101906104b9919061356d565b611208565b6040516104cb9190613e5f565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613800565b611313565b60405161050891906141fe565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906137b7565b611366565b005b34801561054657600080fd5b5061054f6113fc565b60405161055c9190613e81565b60405180910390f35b34801561057157600080fd5b5061057a61140f565b6040516105879190613e9c565b60405180910390f35b34801561059c57600080fd5b506105a561149d565b6040516105b29190613e81565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613800565b6114b0565b005b3480156105f057600080fd5b5061060b60048036038101906106069190613800565b611536565b6040516106189190613df8565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061356d565b61154c565b60405161065591906141fe565b60405180910390f35b34801561066a57600080fd5b50610673611635565b005b34801561068157600080fd5b5061069c600480360381019061069791906137b7565b611772565b005b3480156106aa57600080fd5b506106b3611808565b6040516106c09190613df8565b60405180910390f35b3480156106d557600080fd5b506106de611832565b6040516106eb9190613e9c565b60405180910390f35b34801561070057600080fd5b506107096118c4565b60405161071691906141fe565b60405180910390f35b61073960048036038101906107349190613800565b6118ca565b005b34801561074757600080fd5b50610762600480360381019061075d91906136b0565b611c62565b005b34801561077057600080fd5b5061078b60048036038101906107869190613800565b611de3565b005b34801561079957600080fd5b506107b460048036038101906107af9190613800565b611e69565b005b3480156107c257600080fd5b506107cb611eef565b6040516107d891906141fe565b60405180910390f35b3480156107ed57600080fd5b506108086004803603810190610803919061362d565b611ef5565b005b34801561081657600080fd5b5061081f611f51565b60405161082c9190613e81565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613800565b611f64565b6040516108699190613e9c565b60405180910390f35b34801561087e57600080fd5b506108876120bd565b60405161089491906141fe565b60405180910390f35b3480156108a957600080fd5b506108b26120c3565b6040516108bf91906141fe565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea9190613730565b6120c9565b005b3480156108fd57600080fd5b506109186004803603810190610913919061359a565b612162565b6040516109259190613e81565b60405180910390f35b34801561093a57600080fd5b506109556004803603810190610950919061356d565b6121f6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9a5750610a99826123a2565b5b9050919050565b606060018054610ab090614507565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc90614507565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6000610b3e8261240c565b610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b74906141de565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc382611536565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906140fe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c53612419565b73ffffffffffffffffffffffffffffffffffffffff161480610c825750610c8181610c7c612419565b612162565b5b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890613fde565b60405180910390fd5b610ccc838383612421565b505050565b610cd9612419565b73ffffffffffffffffffffffffffffffffffffffff16610cf7611808565b73ffffffffffffffffffffffffffffffffffffffff1614610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061403e565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b610d72612419565b73ffffffffffffffffffffffffffffffffffffffff16610d90611808565b73ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd9061403e565b60405180910390fd5b8060099080519060200190610dfc929190613347565b5050565b610e08612419565b73ffffffffffffffffffffffffffffffffffffffff16610e26611808565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e739061403e565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600b54905090565b60106020528060005260406000206000915090505481565b610ec68383836124d3565b505050565b6000610ed68361154c565b8210610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90613ebe565b60405180910390fd5b6000610f21610e99565b905060008060005b8381101561107b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461101b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561106d57868414156110645781955050505050506110b7565b83806001019450505b508080600101915050610f29565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061419e565b60405180910390fd5b92915050565b6110c5612419565b73ffffffffffffffffffffffffffffffffffffffff166110e3611808565b73ffffffffffffffffffffffffffffffffffffffff1614611139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111309061403e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161115f90613de3565b60006040518083038185875af1925050503d806000811461119c576040519150601f19603f3d011682016040523d82523d6000602084013e6111a1565b606091505b50509050806111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc9061411e565b60405180910390fd5b50565b61120383838360405180602001604052806000815250611ef5565b505050565b606060006112158361154c565b905060008167ffffffffffffffff811115611233576112326146a0565b5b6040519080825280602002602001820160405280156112615781602001602082028036833780820191505090505b50905060006001905060005b838110801561127e575061270f8211155b1561130757600061128e83611536565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f357828483815181106112d8576112d7614671565b5b60200260200101818152505081806112ef9061456a565b9250505b82806112fe9061456a565b9350505061126d565b82945050505050919050565b600061131d610e99565b821061135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590613f7e565b60405180910390fd5b819050919050565b61136e612419565b73ffffffffffffffffffffffffffffffffffffffff1661138c611808565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061403e565b60405180910390fd5b80600a90805190602001906113f8929190613347565b5050565b600f60019054906101000a900460ff1681565b6009805461141c90614507565b80601f016020809104026020016040519081016040528092919081815260200182805461144890614507565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6114b8612419565b73ffffffffffffffffffffffffffffffffffffffff166114d6611808565b73ffffffffffffffffffffffffffffffffffffffff161461152c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115239061403e565b60405180910390fd5b80600c8190555050565b600061154182612a13565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613ffe565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61163d612419565b73ffffffffffffffffffffffffffffffffffffffff1661165b611808565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a89061403e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61177a612419565b73ffffffffffffffffffffffffffffffffffffffff16611798611808565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e59061403e565b60405180910390fd5b8060089080519060200190611804929190613347565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461184190614507565b80601f016020809104026020016040519081016040528092919081815260200182805461186d90614507565b80156118ba5780601f1061188f576101008083540402835291602001916118ba565b820191906000526020600020905b81548152906001019060200180831161189d57829003601f168201915b5050505050905090565b600e5481565b60006118d4610e99565b9050600f60009054906101000a900460ff1615611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d9061405e565b60405180910390fd5b60008211611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613ede565b60405180910390fd5b61270f8282611978919061433c565b11156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906140de565b60405180910390fd5b6119c1611808565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bae57600c54821115611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613f3e565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611a8b919061433c565b1115611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390613fbe565b60405180910390fd5b60011515600f60029054906101000a900460ff1615151415611b3f5782611af283612bad565b611afc91906143c3565b341015611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613f5e565b60405180910390fd5b5b60001515600f60029054906101000a900460ff1615151415611bac5782600e54611b6991906143c3565b341015611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613f5e565b60405180910390fd5b5b505b81600b6000828254611bc0919061433c565b9250508190555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c16919061433c565b92505081905550611c273383612be0565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611c5691906141fe565b60405180910390a15050565b611c6a612419565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf9061409e565b60405180910390fd5b8060066000611ce5612419565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d92612419565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd79190613e81565b60405180910390a35050565b611deb612419565b73ffffffffffffffffffffffffffffffffffffffff16611e09611808565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e569061403e565b60405180910390fd5b80600e8190555050565b611e71612419565b73ffffffffffffffffffffffffffffffffffffffff16611e8f611808565b73ffffffffffffffffffffffffffffffffffffffff1614611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc9061403e565b60405180910390fd5b80600d8190555050565b600d5481565b611f008484846124d3565b611f0c84848484612bfe565b611f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f429061413e565b60405180910390fd5b50505050565b600f60029054906101000a900460ff1681565b6060611f6f8261240c565b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa59061407e565b60405180910390fd5b60001515600f60019054906101000a900460ff161515141561205c57600a8054611fd790614507565b80601f016020809104026020016040519081016040528092919081815260200182805461200390614507565b80156120505780601f1061202557610100808354040283529160200191612050565b820191906000526020600020905b81548152906001019060200180831161203357829003601f168201915b505050505090506120b8565b6000612066612d95565b9050600081511161208657604051806020016040528060008152506120b4565b8061209084612e27565b60096040516020016120a493929190613db2565b6040516020818303038152906040525b9150505b919050565b61270f81565b600c5481565b6120d1612419565b73ffffffffffffffffffffffffffffffffffffffff166120ef611808565b73ffffffffffffffffffffffffffffffffffffffff1614612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c9061403e565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121fe612419565b73ffffffffffffffffffffffffffffffffffffffff1661221c611808565b73ffffffffffffffffffffffffffffffffffffffff1614612272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122699061403e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990613efe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124de82612a13565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612505612419565b73ffffffffffffffffffffffffffffffffffffffff161480612561575061252a612419565b73ffffffffffffffffffffffffffffffffffffffff1661254984610b33565b73ffffffffffffffffffffffffffffffffffffffff16145b8061257d575061257c8260000151612577612419565b612162565b5b9050806125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b6906140be565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126289061401e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890613f9e565b60405180910390fd5b6126ae8585856001612f88565b6126be6000848460000151612421565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129a3576129028161240c565b156129a25782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a0c8585856001612f8e565b5050505050565b612a1b6133cd565b612a248261240c565b612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90613f1e565b60405180910390fd5b60008290505b60008110612b6c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b5d578092505050612ba8565b50808060019003915050612a69565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9f906141be565b60405180910390fd5b919050565b60006103e8821015612bc25760009050612bdb565b61270f8211612bda5766232bff5f46c0009050612bdb565b5b919050565b612bfa828260405180602001604052806000815250612f94565b5050565b6000612c1f8473ffffffffffffffffffffffffffffffffffffffff16612fa6565b15612d88578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c48612419565b8786866040518563ffffffff1660e01b8152600401612c6a9493929190613e13565b602060405180830381600087803b158015612c8457600080fd5b505af1925050508015612cb557506040513d601f19601f82011682018060405250810190612cb2919061378a565b60015b612d38573d8060008114612ce5576040519150601f19603f3d011682016040523d82523d6000602084013e612cea565b606091505b50600081511415612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d279061413e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d8d565b600190505b949350505050565b606060088054612da490614507565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd090614507565b8015612e1d5780601f10612df257610100808354040283529160200191612e1d565b820191906000526020600020905b815481529060010190602001808311612e0057829003601f168201915b5050505050905090565b60606000821415612e6f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f83565b600082905060005b60008214612ea1578080612e8a9061456a565b915050600a82612e9a9190614392565b9150612e77565b60008167ffffffffffffffff811115612ebd57612ebc6146a0565b5b6040519080825280601f01601f191660200182016040528015612eef5781602001600182028036833780820191505090505b5090505b60008514612f7c57600182612f08919061441d565b9150600a85612f1791906145b3565b6030612f23919061433c565b60f81b818381518110612f3957612f38614671565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f759190614392565b9450612ef3565b8093505050505b919050565b50505050565b50505050565b612fa18383836001612fc9565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561303f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130369061415e565b60405180910390fd5b6000841415613083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307a9061417e565b60405180910390fd5b6130906000868387612f88565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613315576132d56000888488612bfe565b613314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330b9061413e565b60405180910390fd5b5b8180600101925050808060010191505061325e565b5080600081905550506133406000868387612f8e565b5050505050565b82805461335390614507565b90600052602060002090601f01602090048101928261337557600085556133bc565b82601f1061338e57805160ff19168380011785556133bc565b828001600101855582156133bc579182015b828111156133bb5782518255916020019190600101906133a0565b5b5090506133c99190613407565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613420576000816000905550600101613408565b5090565b60006134376134328461423e565b614219565b905082815260208101848484011115613453576134526146d4565b5b61345e8482856144c5565b509392505050565b60006134796134748461426f565b614219565b905082815260208101848484011115613495576134946146d4565b5b6134a08482856144c5565b509392505050565b6000813590506134b781614dcd565b92915050565b6000813590506134cc81614de4565b92915050565b6000813590506134e181614dfb565b92915050565b6000815190506134f681614dfb565b92915050565b600082601f830112613511576135106146cf565b5b8135613521848260208601613424565b91505092915050565b600082601f83011261353f5761353e6146cf565b5b813561354f848260208601613466565b91505092915050565b60008135905061356781614e12565b92915050565b600060208284031215613583576135826146de565b5b6000613591848285016134a8565b91505092915050565b600080604083850312156135b1576135b06146de565b5b60006135bf858286016134a8565b92505060206135d0858286016134a8565b9150509250929050565b6000806000606084860312156135f3576135f26146de565b5b6000613601868287016134a8565b9350506020613612868287016134a8565b925050604061362386828701613558565b9150509250925092565b60008060008060808587031215613647576136466146de565b5b6000613655878288016134a8565b9450506020613666878288016134a8565b935050604061367787828801613558565b925050606085013567ffffffffffffffff811115613698576136976146d9565b5b6136a4878288016134fc565b91505092959194509250565b600080604083850312156136c7576136c66146de565b5b60006136d5858286016134a8565b92505060206136e6858286016134bd565b9150509250929050565b60008060408385031215613707576137066146de565b5b6000613715858286016134a8565b925050602061372685828601613558565b9150509250929050565b600060208284031215613746576137456146de565b5b6000613754848285016134bd565b91505092915050565b600060208284031215613773576137726146de565b5b6000613781848285016134d2565b91505092915050565b6000602082840312156137a05761379f6146de565b5b60006137ae848285016134e7565b91505092915050565b6000602082840312156137cd576137cc6146de565b5b600082013567ffffffffffffffff8111156137eb576137ea6146d9565b5b6137f78482850161352a565b91505092915050565b600060208284031215613816576138156146de565b5b600061382484828501613558565b91505092915050565b60006138398383613d94565b60208301905092915050565b61384e81614451565b82525050565b600061385f826142c5565b61386981856142f3565b9350613874836142a0565b8060005b838110156138a557815161388c888261382d565b9750613897836142e6565b925050600181019050613878565b5085935050505092915050565b6138bb81614463565b82525050565b60006138cc826142d0565b6138d68185614304565b93506138e68185602086016144d4565b6138ef816146e3565b840191505092915050565b6000613905826142db565b61390f8185614320565b935061391f8185602086016144d4565b613928816146e3565b840191505092915050565b600061393e826142db565b6139488185614331565b93506139588185602086016144d4565b80840191505092915050565b6000815461397181614507565b61397b8186614331565b9450600182166000811461399657600181146139a7576139da565b60ff198316865281860193506139da565b6139b0856142b0565b60005b838110156139d2578154818901526001820191506020810190506139b3565b838801955050505b50505092915050565b60006139f0602283614320565b91506139fb826146f4565b604082019050919050565b6000613a13602e83614320565b9150613a1e82614743565b604082019050919050565b6000613a36602683614320565b9150613a4182614792565b604082019050919050565b6000613a59602a83614320565b9150613a64826147e1565b604082019050919050565b6000613a7c601483614320565b9150613a8782614830565b602082019050919050565b6000613a9f601083614320565b9150613aaa82614859565b602082019050919050565b6000613ac2602383614320565b9150613acd82614882565b604082019050919050565b6000613ae5602583614320565b9150613af0826148d1565b604082019050919050565b6000613b08601983614320565b9150613b1382614920565b602082019050919050565b6000613b2b603983614320565b9150613b3682614949565b604082019050919050565b6000613b4e602b83614320565b9150613b5982614998565b604082019050919050565b6000613b71602683614320565b9150613b7c826149e7565b604082019050919050565b6000613b94602083614320565b9150613b9f82614a36565b602082019050919050565b6000613bb7601783614320565b9150613bc282614a5f565b602082019050919050565b6000613bda602f83614320565b9150613be582614a88565b604082019050919050565b6000613bfd601a83614320565b9150613c0882614ad7565b602082019050919050565b6000613c20603283614320565b9150613c2b82614b00565b604082019050919050565b6000613c43601683614320565b9150613c4e82614b4f565b602082019050919050565b6000613c66602283614320565b9150613c7182614b78565b604082019050919050565b6000613c89600083614315565b9150613c9482614bc7565b600082019050919050565b6000613cac601083614320565b9150613cb782614bca565b602082019050919050565b6000613ccf603383614320565b9150613cda82614bf3565b604082019050919050565b6000613cf2602183614320565b9150613cfd82614c42565b604082019050919050565b6000613d15602883614320565b9150613d2082614c91565b604082019050919050565b6000613d38602e83614320565b9150613d4382614ce0565b604082019050919050565b6000613d5b602f83614320565b9150613d6682614d2f565b604082019050919050565b6000613d7e602d83614320565b9150613d8982614d7e565b604082019050919050565b613d9d816144bb565b82525050565b613dac816144bb565b82525050565b6000613dbe8286613933565b9150613dca8285613933565b9150613dd68284613964565b9150819050949350505050565b6000613dee82613c7c565b9150819050919050565b6000602082019050613e0d6000830184613845565b92915050565b6000608082019050613e286000830187613845565b613e356020830186613845565b613e426040830185613da3565b8181036060830152613e5481846138c1565b905095945050505050565b60006020820190508181036000830152613e798184613854565b905092915050565b6000602082019050613e9660008301846138b2565b92915050565b60006020820190508181036000830152613eb681846138fa565b905092915050565b60006020820190508181036000830152613ed7816139e3565b9050919050565b60006020820190508181036000830152613ef781613a06565b9050919050565b60006020820190508181036000830152613f1781613a29565b9050919050565b60006020820190508181036000830152613f3781613a4c565b9050919050565b60006020820190508181036000830152613f5781613a6f565b9050919050565b60006020820190508181036000830152613f7781613a92565b9050919050565b60006020820190508181036000830152613f9781613ab5565b9050919050565b60006020820190508181036000830152613fb781613ad8565b9050919050565b60006020820190508181036000830152613fd781613afb565b9050919050565b60006020820190508181036000830152613ff781613b1e565b9050919050565b6000602082019050818103600083015261401781613b41565b9050919050565b6000602082019050818103600083015261403781613b64565b9050919050565b6000602082019050818103600083015261405781613b87565b9050919050565b6000602082019050818103600083015261407781613baa565b9050919050565b6000602082019050818103600083015261409781613bcd565b9050919050565b600060208201905081810360008301526140b781613bf0565b9050919050565b600060208201905081810360008301526140d781613c13565b9050919050565b600060208201905081810360008301526140f781613c36565b9050919050565b6000602082019050818103600083015261411781613c59565b9050919050565b6000602082019050818103600083015261413781613c9f565b9050919050565b6000602082019050818103600083015261415781613cc2565b9050919050565b6000602082019050818103600083015261417781613ce5565b9050919050565b6000602082019050818103600083015261419781613d08565b9050919050565b600060208201905081810360008301526141b781613d2b565b9050919050565b600060208201905081810360008301526141d781613d4e565b9050919050565b600060208201905081810360008301526141f781613d71565b9050919050565b60006020820190506142136000830184613da3565b92915050565b6000614223614234565b905061422f8282614539565b919050565b6000604051905090565b600067ffffffffffffffff821115614259576142586146a0565b5b614262826146e3565b9050602081019050919050565b600067ffffffffffffffff82111561428a576142896146a0565b5b614293826146e3565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614347826144bb565b9150614352836144bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614387576143866145e4565b5b828201905092915050565b600061439d826144bb565b91506143a8836144bb565b9250826143b8576143b7614613565b5b828204905092915050565b60006143ce826144bb565b91506143d9836144bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614412576144116145e4565b5b828202905092915050565b6000614428826144bb565b9150614433836144bb565b925082821015614446576144456145e4565b5b828203905092915050565b600061445c8261449b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144f25780820151818401526020810190506144d7565b83811115614501576000848401525b50505050565b6000600282049050600182168061451f57607f821691505b6020821081141561453357614532614642565b5b50919050565b614542826146e3565b810181811067ffffffffffffffff82111715614561576145606146a0565b5b80604052505050565b6000614575826144bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145a8576145a76145e4565b5b600182019050919050565b60006145be826144bb565b91506145c9836144bb565b9250826145d9576145d8614613565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d61782070657220747820657863656564656421000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782070657220616464726573732065786365656465642100000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614dd681614451565b8114614de157600080fd5b50565b614ded81614463565b8114614df857600080fd5b50565b614e048161446f565b8114614e0f57600080fd5b50565b614e1b816144bb565b8114614e2657600080fd5b5056fea2646970667358221220f041e7c7ce05ca7d100b7431aef4c83cbe106fc25282c6b692501c72b3a7d00c64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063afdf6134116100ab578063d5abeb011161006f578063d5abeb0114610872578063de7fcb1d1461089d578063e0a80853146108c8578063e985e9c5146108f1578063f2fde38b1461092e5761023b565b8063afdf61341461078d578063b228d925146107b6578063b88d4fde146107e1578063be745f771461080a578063c87b56dd146108355761023b565b806395d89b41116100f257806395d89b41146106c9578063a035b1fe146106f4578063a0712d681461071f578063a22cb4651461073b578063a2b40d19146107645761023b565b80636352211e146105e457806370a0823114610621578063715018a61461065e5780637ec4a659146106755780638da5cb5b1461069e5761023b565b80632f745c59116101bc5780634fdd43cb116101805780634fdd43cb14610511578063518302271461053a5780635503a0e8146105655780635c975abb14610590578063616cdb1e146105bb5761023b565b80632f745c591461041a5780633ccfd60b1461045757806342842e0e1461046e578063438b6300146104975780634f6ccce7146104d45761023b565b806316ba10e01161020357806316ba10e01461033757806316c38b3c1461036057806318160ddd1461038957806318cae269146103b457806323b872dd146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630c73542c1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061375d565b610957565b6040516102749190613e81565b60405180910390f35b34801561028957600080fd5b50610292610aa1565b60405161029f9190613e9c565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613800565b610b33565b6040516102dc9190613df8565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136f0565b610bb8565b005b34801561031a57600080fd5b5061033560048036038101906103309190613730565b610cd1565b005b34801561034357600080fd5b5061035e600480360381019061035991906137b7565b610d6a565b005b34801561036c57600080fd5b5061038760048036038101906103829190613730565b610e00565b005b34801561039557600080fd5b5061039e610e99565b6040516103ab91906141fe565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061356d565b610ea3565b6040516103e891906141fe565b60405180910390f35b3480156103fd57600080fd5b50610418600480360381019061041391906135da565b610ebb565b005b34801561042657600080fd5b50610441600480360381019061043c91906136f0565b610ecb565b60405161044e91906141fe565b60405180910390f35b34801561046357600080fd5b5061046c6110bd565b005b34801561047a57600080fd5b50610495600480360381019061049091906135da565b6111e8565b005b3480156104a357600080fd5b506104be60048036038101906104b9919061356d565b611208565b6040516104cb9190613e5f565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190613800565b611313565b60405161050891906141fe565b60405180910390f35b34801561051d57600080fd5b50610538600480360381019061053391906137b7565b611366565b005b34801561054657600080fd5b5061054f6113fc565b60405161055c9190613e81565b60405180910390f35b34801561057157600080fd5b5061057a61140f565b6040516105879190613e9c565b60405180910390f35b34801561059c57600080fd5b506105a561149d565b6040516105b29190613e81565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613800565b6114b0565b005b3480156105f057600080fd5b5061060b60048036038101906106069190613800565b611536565b6040516106189190613df8565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061356d565b61154c565b60405161065591906141fe565b60405180910390f35b34801561066a57600080fd5b50610673611635565b005b34801561068157600080fd5b5061069c600480360381019061069791906137b7565b611772565b005b3480156106aa57600080fd5b506106b3611808565b6040516106c09190613df8565b60405180910390f35b3480156106d557600080fd5b506106de611832565b6040516106eb9190613e9c565b60405180910390f35b34801561070057600080fd5b506107096118c4565b60405161071691906141fe565b60405180910390f35b61073960048036038101906107349190613800565b6118ca565b005b34801561074757600080fd5b50610762600480360381019061075d91906136b0565b611c62565b005b34801561077057600080fd5b5061078b60048036038101906107869190613800565b611de3565b005b34801561079957600080fd5b506107b460048036038101906107af9190613800565b611e69565b005b3480156107c257600080fd5b506107cb611eef565b6040516107d891906141fe565b60405180910390f35b3480156107ed57600080fd5b506108086004803603810190610803919061362d565b611ef5565b005b34801561081657600080fd5b5061081f611f51565b60405161082c9190613e81565b60405180910390f35b34801561084157600080fd5b5061085c60048036038101906108579190613800565b611f64565b6040516108699190613e9c565b60405180910390f35b34801561087e57600080fd5b506108876120bd565b60405161089491906141fe565b60405180910390f35b3480156108a957600080fd5b506108b26120c3565b6040516108bf91906141fe565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea9190613730565b6120c9565b005b3480156108fd57600080fd5b506109186004803603810190610913919061359a565b612162565b6040516109259190613e81565b60405180910390f35b34801561093a57600080fd5b506109556004803603810190610950919061356d565b6121f6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9a5750610a99826123a2565b5b9050919050565b606060018054610ab090614507565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc90614507565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6000610b3e8261240c565b610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b74906141de565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc382611536565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906140fe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c53612419565b73ffffffffffffffffffffffffffffffffffffffff161480610c825750610c8181610c7c612419565b612162565b5b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890613fde565b60405180910390fd5b610ccc838383612421565b505050565b610cd9612419565b73ffffffffffffffffffffffffffffffffffffffff16610cf7611808565b73ffffffffffffffffffffffffffffffffffffffff1614610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d449061403e565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b610d72612419565b73ffffffffffffffffffffffffffffffffffffffff16610d90611808565b73ffffffffffffffffffffffffffffffffffffffff1614610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd9061403e565b60405180910390fd5b8060099080519060200190610dfc929190613347565b5050565b610e08612419565b73ffffffffffffffffffffffffffffffffffffffff16610e26611808565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e739061403e565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000600b54905090565b60106020528060005260406000206000915090505481565b610ec68383836124d3565b505050565b6000610ed68361154c565b8210610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90613ebe565b60405180910390fd5b6000610f21610e99565b905060008060005b8381101561107b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461101b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561106d57868414156110645781955050505050506110b7565b83806001019450505b508080600101915050610f29565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061419e565b60405180910390fd5b92915050565b6110c5612419565b73ffffffffffffffffffffffffffffffffffffffff166110e3611808565b73ffffffffffffffffffffffffffffffffffffffff1614611139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111309061403e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161115f90613de3565b60006040518083038185875af1925050503d806000811461119c576040519150601f19603f3d011682016040523d82523d6000602084013e6111a1565b606091505b50509050806111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc9061411e565b60405180910390fd5b50565b61120383838360405180602001604052806000815250611ef5565b505050565b606060006112158361154c565b905060008167ffffffffffffffff811115611233576112326146a0565b5b6040519080825280602002602001820160405280156112615781602001602082028036833780820191505090505b50905060006001905060005b838110801561127e575061270f8211155b1561130757600061128e83611536565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f357828483815181106112d8576112d7614671565b5b60200260200101818152505081806112ef9061456a565b9250505b82806112fe9061456a565b9350505061126d565b82945050505050919050565b600061131d610e99565b821061135e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135590613f7e565b60405180910390fd5b819050919050565b61136e612419565b73ffffffffffffffffffffffffffffffffffffffff1661138c611808565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061403e565b60405180910390fd5b80600a90805190602001906113f8929190613347565b5050565b600f60019054906101000a900460ff1681565b6009805461141c90614507565b80601f016020809104026020016040519081016040528092919081815260200182805461144890614507565b80156114955780601f1061146a57610100808354040283529160200191611495565b820191906000526020600020905b81548152906001019060200180831161147857829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b6114b8612419565b73ffffffffffffffffffffffffffffffffffffffff166114d6611808565b73ffffffffffffffffffffffffffffffffffffffff161461152c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115239061403e565b60405180910390fd5b80600c8190555050565b600061154182612a13565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613ffe565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61163d612419565b73ffffffffffffffffffffffffffffffffffffffff1661165b611808565b73ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a89061403e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61177a612419565b73ffffffffffffffffffffffffffffffffffffffff16611798611808565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e59061403e565b60405180910390fd5b8060089080519060200190611804929190613347565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461184190614507565b80601f016020809104026020016040519081016040528092919081815260200182805461186d90614507565b80156118ba5780601f1061188f576101008083540402835291602001916118ba565b820191906000526020600020905b81548152906001019060200180831161189d57829003601f168201915b5050505050905090565b600e5481565b60006118d4610e99565b9050600f60009054906101000a900460ff1615611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d9061405e565b60405180910390fd5b60008211611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090613ede565b60405180910390fd5b61270f8282611978919061433c565b11156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906140de565b60405180910390fd5b6119c1611808565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611bae57600c54821115611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613f3e565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548382611a8b919061433c565b1115611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac390613fbe565b60405180910390fd5b60011515600f60029054906101000a900460ff1615151415611b3f5782611af283612bad565b611afc91906143c3565b341015611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590613f5e565b60405180910390fd5b5b60001515600f60029054906101000a900460ff1615151415611bac5782600e54611b6991906143c3565b341015611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613f5e565b60405180910390fd5b5b505b81600b6000828254611bc0919061433c565b9250508190555081601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c16919061433c565b92505081905550611c273383612be0565b7f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611c5691906141fe565b60405180910390a15050565b611c6a612419565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf9061409e565b60405180910390fd5b8060066000611ce5612419565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d92612419565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611dd79190613e81565b60405180910390a35050565b611deb612419565b73ffffffffffffffffffffffffffffffffffffffff16611e09611808565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e569061403e565b60405180910390fd5b80600e8190555050565b611e71612419565b73ffffffffffffffffffffffffffffffffffffffff16611e8f611808565b73ffffffffffffffffffffffffffffffffffffffff1614611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc9061403e565b60405180910390fd5b80600d8190555050565b600d5481565b611f008484846124d3565b611f0c84848484612bfe565b611f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f429061413e565b60405180910390fd5b50505050565b600f60029054906101000a900460ff1681565b6060611f6f8261240c565b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa59061407e565b60405180910390fd5b60001515600f60019054906101000a900460ff161515141561205c57600a8054611fd790614507565b80601f016020809104026020016040519081016040528092919081815260200182805461200390614507565b80156120505780601f1061202557610100808354040283529160200191612050565b820191906000526020600020905b81548152906001019060200180831161203357829003601f168201915b505050505090506120b8565b6000612066612d95565b9050600081511161208657604051806020016040528060008152506120b4565b8061209084612e27565b60096040516020016120a493929190613db2565b6040516020818303038152906040525b9150505b919050565b61270f81565b600c5481565b6120d1612419565b73ffffffffffffffffffffffffffffffffffffffff166120ef611808565b73ffffffffffffffffffffffffffffffffffffffff1614612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c9061403e565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121fe612419565b73ffffffffffffffffffffffffffffffffffffffff1661221c611808565b73ffffffffffffffffffffffffffffffffffffffff1614612272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122699061403e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d990613efe565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124de82612a13565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612505612419565b73ffffffffffffffffffffffffffffffffffffffff161480612561575061252a612419565b73ffffffffffffffffffffffffffffffffffffffff1661254984610b33565b73ffffffffffffffffffffffffffffffffffffffff16145b8061257d575061257c8260000151612577612419565b612162565b5b9050806125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b6906140be565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126289061401e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269890613f9e565b60405180910390fd5b6126ae8585856001612f88565b6126be6000848460000151612421565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129a3576129028161240c565b156129a25782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a0c8585856001612f8e565b5050505050565b612a1b6133cd565b612a248261240c565b612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90613f1e565b60405180910390fd5b60008290505b60008110612b6c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b5d578092505050612ba8565b50808060019003915050612a69565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9f906141be565b60405180910390fd5b919050565b60006103e8821015612bc25760009050612bdb565b61270f8211612bda5766232bff5f46c0009050612bdb565b5b919050565b612bfa828260405180602001604052806000815250612f94565b5050565b6000612c1f8473ffffffffffffffffffffffffffffffffffffffff16612fa6565b15612d88578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c48612419565b8786866040518563ffffffff1660e01b8152600401612c6a9493929190613e13565b602060405180830381600087803b158015612c8457600080fd5b505af1925050508015612cb557506040513d601f19601f82011682018060405250810190612cb2919061378a565b60015b612d38573d8060008114612ce5576040519150601f19603f3d011682016040523d82523d6000602084013e612cea565b606091505b50600081511415612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d279061413e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d8d565b600190505b949350505050565b606060088054612da490614507565b80601f0160208091040260200160405190810160405280929190818152602001828054612dd090614507565b8015612e1d5780601f10612df257610100808354040283529160200191612e1d565b820191906000526020600020905b815481529060010190602001808311612e0057829003601f168201915b5050505050905090565b60606000821415612e6f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f83565b600082905060005b60008214612ea1578080612e8a9061456a565b915050600a82612e9a9190614392565b9150612e77565b60008167ffffffffffffffff811115612ebd57612ebc6146a0565b5b6040519080825280601f01601f191660200182016040528015612eef5781602001600182028036833780820191505090505b5090505b60008514612f7c57600182612f08919061441d565b9150600a85612f1791906145b3565b6030612f23919061433c565b60f81b818381518110612f3957612f38614671565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f759190614392565b9450612ef3565b8093505050505b919050565b50505050565b50505050565b612fa18383836001612fc9565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561303f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130369061415e565b60405180910390fd5b6000841415613083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307a9061417e565b60405180910390fd5b6130906000868387612f88565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613315576132d56000888488612bfe565b613314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330b9061413e565b60405180910390fd5b5b8180600101925050808060010191505061325e565b5080600081905550506133406000868387612f8e565b5050505050565b82805461335390614507565b90600052602060002090601f01602090048101928261337557600085556133bc565b82601f1061338e57805160ff19168380011785556133bc565b828001600101855582156133bc579182015b828111156133bb5782518255916020019190600101906133a0565b5b5090506133c99190613407565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613420576000816000905550600101613408565b5090565b60006134376134328461423e565b614219565b905082815260208101848484011115613453576134526146d4565b5b61345e8482856144c5565b509392505050565b60006134796134748461426f565b614219565b905082815260208101848484011115613495576134946146d4565b5b6134a08482856144c5565b509392505050565b6000813590506134b781614dcd565b92915050565b6000813590506134cc81614de4565b92915050565b6000813590506134e181614dfb565b92915050565b6000815190506134f681614dfb565b92915050565b600082601f830112613511576135106146cf565b5b8135613521848260208601613424565b91505092915050565b600082601f83011261353f5761353e6146cf565b5b813561354f848260208601613466565b91505092915050565b60008135905061356781614e12565b92915050565b600060208284031215613583576135826146de565b5b6000613591848285016134a8565b91505092915050565b600080604083850312156135b1576135b06146de565b5b60006135bf858286016134a8565b92505060206135d0858286016134a8565b9150509250929050565b6000806000606084860312156135f3576135f26146de565b5b6000613601868287016134a8565b9350506020613612868287016134a8565b925050604061362386828701613558565b9150509250925092565b60008060008060808587031215613647576136466146de565b5b6000613655878288016134a8565b9450506020613666878288016134a8565b935050604061367787828801613558565b925050606085013567ffffffffffffffff811115613698576136976146d9565b5b6136a4878288016134fc565b91505092959194509250565b600080604083850312156136c7576136c66146de565b5b60006136d5858286016134a8565b92505060206136e6858286016134bd565b9150509250929050565b60008060408385031215613707576137066146de565b5b6000613715858286016134a8565b925050602061372685828601613558565b9150509250929050565b600060208284031215613746576137456146de565b5b6000613754848285016134bd565b91505092915050565b600060208284031215613773576137726146de565b5b6000613781848285016134d2565b91505092915050565b6000602082840312156137a05761379f6146de565b5b60006137ae848285016134e7565b91505092915050565b6000602082840312156137cd576137cc6146de565b5b600082013567ffffffffffffffff8111156137eb576137ea6146d9565b5b6137f78482850161352a565b91505092915050565b600060208284031215613816576138156146de565b5b600061382484828501613558565b91505092915050565b60006138398383613d94565b60208301905092915050565b61384e81614451565b82525050565b600061385f826142c5565b61386981856142f3565b9350613874836142a0565b8060005b838110156138a557815161388c888261382d565b9750613897836142e6565b925050600181019050613878565b5085935050505092915050565b6138bb81614463565b82525050565b60006138cc826142d0565b6138d68185614304565b93506138e68185602086016144d4565b6138ef816146e3565b840191505092915050565b6000613905826142db565b61390f8185614320565b935061391f8185602086016144d4565b613928816146e3565b840191505092915050565b600061393e826142db565b6139488185614331565b93506139588185602086016144d4565b80840191505092915050565b6000815461397181614507565b61397b8186614331565b9450600182166000811461399657600181146139a7576139da565b60ff198316865281860193506139da565b6139b0856142b0565b60005b838110156139d2578154818901526001820191506020810190506139b3565b838801955050505b50505092915050565b60006139f0602283614320565b91506139fb826146f4565b604082019050919050565b6000613a13602e83614320565b9150613a1e82614743565b604082019050919050565b6000613a36602683614320565b9150613a4182614792565b604082019050919050565b6000613a59602a83614320565b9150613a64826147e1565b604082019050919050565b6000613a7c601483614320565b9150613a8782614830565b602082019050919050565b6000613a9f601083614320565b9150613aaa82614859565b602082019050919050565b6000613ac2602383614320565b9150613acd82614882565b604082019050919050565b6000613ae5602583614320565b9150613af0826148d1565b604082019050919050565b6000613b08601983614320565b9150613b1382614920565b602082019050919050565b6000613b2b603983614320565b9150613b3682614949565b604082019050919050565b6000613b4e602b83614320565b9150613b5982614998565b604082019050919050565b6000613b71602683614320565b9150613b7c826149e7565b604082019050919050565b6000613b94602083614320565b9150613b9f82614a36565b602082019050919050565b6000613bb7601783614320565b9150613bc282614a5f565b602082019050919050565b6000613bda602f83614320565b9150613be582614a88565b604082019050919050565b6000613bfd601a83614320565b9150613c0882614ad7565b602082019050919050565b6000613c20603283614320565b9150613c2b82614b00565b604082019050919050565b6000613c43601683614320565b9150613c4e82614b4f565b602082019050919050565b6000613c66602283614320565b9150613c7182614b78565b604082019050919050565b6000613c89600083614315565b9150613c9482614bc7565b600082019050919050565b6000613cac601083614320565b9150613cb782614bca565b602082019050919050565b6000613ccf603383614320565b9150613cda82614bf3565b604082019050919050565b6000613cf2602183614320565b9150613cfd82614c42565b604082019050919050565b6000613d15602883614320565b9150613d2082614c91565b604082019050919050565b6000613d38602e83614320565b9150613d4382614ce0565b604082019050919050565b6000613d5b602f83614320565b9150613d6682614d2f565b604082019050919050565b6000613d7e602d83614320565b9150613d8982614d7e565b604082019050919050565b613d9d816144bb565b82525050565b613dac816144bb565b82525050565b6000613dbe8286613933565b9150613dca8285613933565b9150613dd68284613964565b9150819050949350505050565b6000613dee82613c7c565b9150819050919050565b6000602082019050613e0d6000830184613845565b92915050565b6000608082019050613e286000830187613845565b613e356020830186613845565b613e426040830185613da3565b8181036060830152613e5481846138c1565b905095945050505050565b60006020820190508181036000830152613e798184613854565b905092915050565b6000602082019050613e9660008301846138b2565b92915050565b60006020820190508181036000830152613eb681846138fa565b905092915050565b60006020820190508181036000830152613ed7816139e3565b9050919050565b60006020820190508181036000830152613ef781613a06565b9050919050565b60006020820190508181036000830152613f1781613a29565b9050919050565b60006020820190508181036000830152613f3781613a4c565b9050919050565b60006020820190508181036000830152613f5781613a6f565b9050919050565b60006020820190508181036000830152613f7781613a92565b9050919050565b60006020820190508181036000830152613f9781613ab5565b9050919050565b60006020820190508181036000830152613fb781613ad8565b9050919050565b60006020820190508181036000830152613fd781613afb565b9050919050565b60006020820190508181036000830152613ff781613b1e565b9050919050565b6000602082019050818103600083015261401781613b41565b9050919050565b6000602082019050818103600083015261403781613b64565b9050919050565b6000602082019050818103600083015261405781613b87565b9050919050565b6000602082019050818103600083015261407781613baa565b9050919050565b6000602082019050818103600083015261409781613bcd565b9050919050565b600060208201905081810360008301526140b781613bf0565b9050919050565b600060208201905081810360008301526140d781613c13565b9050919050565b600060208201905081810360008301526140f781613c36565b9050919050565b6000602082019050818103600083015261411781613c59565b9050919050565b6000602082019050818103600083015261413781613c9f565b9050919050565b6000602082019050818103600083015261415781613cc2565b9050919050565b6000602082019050818103600083015261417781613ce5565b9050919050565b6000602082019050818103600083015261419781613d08565b9050919050565b600060208201905081810360008301526141b781613d2b565b9050919050565b600060208201905081810360008301526141d781613d4e565b9050919050565b600060208201905081810360008301526141f781613d71565b9050919050565b60006020820190506142136000830184613da3565b92915050565b6000614223614234565b905061422f8282614539565b919050565b6000604051905090565b600067ffffffffffffffff821115614259576142586146a0565b5b614262826146e3565b9050602081019050919050565b600067ffffffffffffffff82111561428a576142896146a0565b5b614293826146e3565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614347826144bb565b9150614352836144bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614387576143866145e4565b5b828201905092915050565b600061439d826144bb565b91506143a8836144bb565b9250826143b8576143b7614613565b5b828204905092915050565b60006143ce826144bb565b91506143d9836144bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614412576144116145e4565b5b828202905092915050565b6000614428826144bb565b9150614433836144bb565b925082821015614446576144456145e4565b5b828203905092915050565b600061445c8261449b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156144f25780820151818401526020810190506144d7565b83811115614501576000848401525b50505050565b6000600282049050600182168061451f57607f821691505b6020821081141561453357614532614642565b5b50919050565b614542826146e3565b810181811067ffffffffffffffff82111715614561576145606146a0565b5b80604052505050565b6000614575826144bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145a8576145a76145e4565b5b600182019050919050565b60006145be826144bb565b91506145c9836144bb565b9250826145d9576145d8614613565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d61782070657220747820657863656564656421000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782070657220616464726573732065786365656465642100000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614dd681614451565b8114614de157600080fd5b50565b614ded81614463565b8114614df857600080fd5b50565b614e048161446f565b8114614e0f57600080fd5b50565b614e1b816144bb565b8114614e2657600080fd5b5056fea2646970667358221220f041e7c7ce05ca7d100b7431aef4c83cbe106fc25282c6b692501c72b3a7d00c64736f6c63430008070033

Deployed Bytecode Sourcemap

62760:4664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49566:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53023:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52544:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67210:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67021:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67127:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63543:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63435:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53899:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48487:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63751:182;;;;;;;;;;;;;:::i;:::-;;54132:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65235:703;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48000:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66773:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63366:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62915:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63336:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66531:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51261:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50002:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15105:148;;;;;;;;;;;;;:::i;:::-;;66913:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14454:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51621:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63289:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64209:1018;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53309:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63648:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66643:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63244:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54380:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63398:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65946:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63123:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63206:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66442:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53668:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15408:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49566:372;49668:4;49720:25;49705:40;;;:11;:40;;;;:105;;;;49777:33;49762:48;;;:11;:48;;;;49705:105;:172;;;;49842:35;49827:50;;;:11;:50;;;;49705:172;:225;;;;49894:36;49918:11;49894:23;:36::i;:::-;49705:225;49685:245;;49566:372;;;:::o;51452:100::-;51506:13;51539:5;51532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51452:100;:::o;53023:214::-;53091:7;53119:16;53127:7;53119;:16::i;:::-;53111:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53205:15;:24;53221:7;53205:24;;;;;;;;;;;;;;;;;;;;;53198:31;;53023:214;;;:::o;52544:413::-;52617:13;52633:24;52649:7;52633:15;:24::i;:::-;52617:40;;52682:5;52676:11;;:2;:11;;;;52668:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52777:5;52761:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;52786:37;52803:5;52810:12;:10;:12::i;:::-;52786:16;:37::i;:::-;52761:62;52739:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;52921:28;52930:2;52934:7;52943:5;52921:8;:28::i;:::-;52606:351;52544:413;;:::o;67210:93::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67289:6:::1;67275:11;;:20;;;;;;;;;;;;;;;;;;67210:93:::0;:::o;67021:100::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67105:10:::1;67093:9;:22;;;;;;;;;;;;:::i;:::-;;67021:100:::0;:::o;67127:77::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67192:6:::1;67183;;:15;;;;;;;;;;;;;;;;;;67127:77:::0;:::o;63543:97::-;63596:7;63623:9;;63616:16;;63543:97;:::o;63435:56::-;;;;;;;;;;;;;;;;;:::o;53899:162::-;54025:28;54035:4;54041:2;54045:7;54025:9;:28::i;:::-;53899:162;;;:::o;48487:1007::-;48576:7;48612:16;48622:5;48612:9;:16::i;:::-;48604:5;:24;48596:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48678:22;48703:13;:11;:13::i;:::-;48678:38;;48727:19;48757:25;48946:9;48941:466;48961:14;48957:1;:18;48941:466;;;49001:31;49035:11;:14;49047:1;49035:14;;;;;;;;;;;49001:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49098:1;49072:28;;:9;:14;;;:28;;;49068:111;;49145:9;:14;;;49125:34;;49068:111;49222:5;49201:26;;:17;:26;;;49197:195;;;49271:5;49256:11;:20;49252:85;;;49312:1;49305:8;;;;;;;;;49252:85;49359:13;;;;;;;49197:195;48982:425;48977:3;;;;;;;48941:466;;;;49430:56;;;;;;;;;;:::i;:::-;;;;;;;;48487:1007;;;;;:::o;63751:182::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63802:12:::1;63828:10;63820:24;;63852:21;63820:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63801:77;;;63897:7;63889:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63790:143;63751:182::o:0;54132:177::-;54262:39;54279:4;54285:2;54289:7;54262:39;;;;;;;;;;;;:16;:39::i;:::-;54132:177;;;:::o;65235:703::-;65322:16;65356:23;65382:17;65392:6;65382:9;:17::i;:::-;65356:43;;65410:30;65457:15;65443:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65410:63;;65484:22;65509:1;65484:26;;65521:23;65561:339;65586:15;65568;:33;:64;;;;;63159:4;65605:14;:27;;65568:64;65561:339;;;65645:25;65673:23;65681:14;65673:7;:23::i;:::-;65645:51;;65736:6;65715:27;;:17;:27;;;65711:151;;;65796:14;65763:13;65777:15;65763:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;65829:17;;;;;:::i;:::-;;;;65711:151;65872:16;;;;;:::i;:::-;;;;65634:266;65561:339;;;65917:13;65910:20;;;;;;65235:703;;;:::o;48000:187::-;48067:7;48103:13;:11;:13::i;:::-;48095:5;:21;48087:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48174:5;48167:12;;48000:187;;;:::o;66773:132::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66881:18:::1;66861:17;:38;;;;;;;;;;;;:::i;:::-;;66773:132:::0;:::o;63366:27::-;;;;;;;;;;;;;:::o;62915:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63336:25::-;;;;;;;;;;;;;:::o;66531:106::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66618:13:::1;66603:12;:28;;;;66531:106:::0;:::o;51261:124::-;51325:7;51352:20;51364:7;51352:11;:20::i;:::-;:25;;;51345:32;;51261:124;;;:::o;50002:221::-;50066:7;50111:1;50094:19;;:5;:19;;;;50086:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;50187:12;:19;50200:5;50187:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;50179:36;;50172:43;;50002:221;;;:::o;15105:148::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15212:1:::1;15175:40;;15196:6;;;;;;;;;;;15175:40;;;;;;;;;;;;15243:1;15226:6;;:19;;;;;;;;;;;;;;;;;;15105:148::o:0;66913:100::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66997:10:::1;66985:9;:22;;;;;;;;;;;;:::i;:::-;;66913:100:::0;:::o;14454:87::-;14500:7;14527:6;;;;;;;;;;;14520:13;;14454:87;:::o;51621:104::-;51677:13;51710:7;51703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51621:104;:::o;63289:35::-;;;;:::o;64209:1018::-;64266:14;64283:13;:11;:13::i;:::-;64266:30;;64312:6;;;;;;;;;;;64311:7;64303:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64375:1;64361:11;:15;64353:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;63159:4;64451:11;64442:6;:20;;;;:::i;:::-;:33;;64434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64529:7;:5;:7::i;:::-;64515:21;;:10;:21;;;64511:546;;64572:12;;64557:11;:27;;64549:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;64622:24;64649:20;:32;64670:10;64649:32;;;;;;;;;;;;;;;;64622:59;;64735:16;;64720:11;64701:16;:30;;;;:::i;:::-;:50;;64692:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;64812:4;64797:19;;:11;;;;;;;;;;;:19;;;64794:131;;;64881:11;64854:24;64871:6;64854:16;:24::i;:::-;:38;;;;:::i;:::-;64841:9;:51;;64833:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;64794:131;64955:5;64940:20;;:11;;;;;;;;;;;:20;;;64937:113;;;65006:11;64998:5;;:19;;;;:::i;:::-;64985:9;:32;;64977:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;64937:113;64538:519;64511:546;65079:11;65066:9;;:24;;;;;;;:::i;:::-;;;;;;;;65132:11;65097:20;:32;65118:10;65097:32;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;65156:34;65166:10;65178:11;65156:9;:34::i;:::-;65202:19;65209:11;65202:19;;;;;;:::i;:::-;;;;;;;;64259:968;64209:1018;:::o;53309:288::-;53416:12;:10;:12::i;:::-;53404:24;;:8;:24;;;;53396:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53517:8;53472:18;:32;53491:12;:10;:12::i;:::-;53472:32;;;;;;;;;;;;;;;:42;53505:8;53472:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;53570:8;53541:48;;53556:12;:10;:12::i;:::-;53541:48;;;53580:8;53541:48;;;;;;:::i;:::-;;;;;;;;53309:288;;:::o;63648:95::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63726:9:::1;63718:5;:17;;;;63648:95:::0;:::o;66643:122::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66742:17:::1;66723:16;:36;;;;66643:122:::0;:::o;63244:35::-;;;;:::o;54380:355::-;54539:28;54549:4;54555:2;54559:7;54539:9;:28::i;:::-;54600:48;54623:4;54629:2;54633:7;54642:5;54600:22;:48::i;:::-;54578:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;54380:355;;;;:::o;63398:30::-;;;;;;;;;;;;;:::o;65946:490::-;66045:13;66086:17;66094:8;66086:7;:17::i;:::-;66070:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66191:5;66179:17;;:8;;;;;;;;;;;:17;;;66175:64;;;66214:17;66207:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66175:64;66245:28;66276:10;:8;:10::i;:::-;66245:41;;66331:1;66306:14;66300:28;:32;:130;;;;;;;;;;;;;;;;;66368:14;66384:19;:8;:17;:19::i;:::-;66405:9;66351:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66300:130;66293:137;;;65946:490;;;;:::o;63123:40::-;63159:4;63123:40;:::o;63206:31::-;;;;:::o;66442:81::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66511:6:::1;66500:8;;:17;;;;;;;;;;;;;;;;;;66442:81:::0;:::o;53668:164::-;53765:4;53789:18;:25;53808:5;53789:25;;;;;;;;;;;;;;;:35;53815:8;53789:35;;;;;;;;;;;;;;;;;;;;;;;;;53782:42;;53668:164;;;;:::o;15408:244::-;14685:12;:10;:12::i;:::-;14674:23;;:7;:5;:7::i;:::-;:23;;;14666:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15517:1:::1;15497:22;;:8;:22;;;;15489:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15607:8;15578:38;;15599:6;;;;;;;;;;;15578:38;;;;;;;;;;;;15636:8;15627:6;;:17;;;;;;;;;;;;;;;;;;15408:244:::0;:::o;22728:157::-;22813:4;22852:25;22837:40;;;:11;:40;;;;22830:47;;22728:157;;;:::o;54990:111::-;55047:4;55081:12;;55071:7;:22;55064:29;;54990:111;;;:::o;9480:98::-;9533:7;9560:10;9553:17;;9480:98;:::o;59910:196::-;60052:2;60025:15;:24;60041:7;60025:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60090:7;60086:2;60070:28;;60079:5;60070:28;;;;;;;;;;;;59910:196;;;:::o;57790:2002::-;57905:35;57943:20;57955:7;57943:11;:20::i;:::-;57905:58;;57976:22;58018:13;:18;;;58002:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;58077:12;:10;:12::i;:::-;58053:36;;:20;58065:7;58053:11;:20::i;:::-;:36;;;58002:87;:154;;;;58106:50;58123:13;:18;;;58143:12;:10;:12::i;:::-;58106:16;:50::i;:::-;58002:154;57976:181;;58178:17;58170:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;58293:4;58271:26;;:13;:18;;;:26;;;58263:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58373:1;58359:16;;:2;:16;;;;58351:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58430:43;58452:4;58458:2;58462:7;58471:1;58430:21;:43::i;:::-;58538:49;58555:1;58559:7;58568:13;:18;;;58538:8;:49::i;:::-;58913:1;58883:12;:18;58896:4;58883:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58957:1;58929:12;:16;58942:2;58929:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59003:2;58975:11;:20;58987:7;58975:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;59065:15;59020:11;:20;59032:7;59020:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;59333:19;59365:1;59355:7;:11;59333:33;;59426:1;59385:43;;:11;:24;59397:11;59385:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;59381:295;;;59453:20;59461:11;59453:7;:20::i;:::-;59449:212;;;59530:13;:18;;;59498:11;:24;59510:11;59498:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;59613:13;:28;;;59571:11;:24;59583:11;59571:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;59449:212;59381:295;58858:829;59723:7;59719:2;59704:27;;59713:4;59704:27;;;;;;;;;;;;59742:42;59763:4;59769:2;59773:7;59782:1;59742:20;:42::i;:::-;57894:1898;;57790:2002;;;:::o;50662:537::-;50723:21;;:::i;:::-;50765:16;50773:7;50765;:16::i;:::-;50757:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50871:12;50886:7;50871:22;;50866:245;50903:1;50895:4;:9;50866:245;;50933:31;50967:11;:17;50979:4;50967:17;;;;;;;;;;;50933:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51033:1;51007:28;;:9;:14;;;:28;;;51003:93;;51067:9;51060:16;;;;;;51003:93;50914:197;50906:6;;;;;;;;50866:245;;;;51134:57;;;;;;;;;;:::i;:::-;;;;;;;;50662:537;;;;:::o;63941:239::-;64007:13;64045:4;64035:7;:14;64032:60;;;64073:7;64066:14;;;;64032:60;63159:4;64105:7;:20;64102:71;;64149:12;64142:19;;;;64102:71;63941:239;;;;:::o;55109:104::-;55178:27;55188:2;55192:8;55178:27;;;;;;;;;;;;:9;:27::i;:::-;55109:104;;:::o;60671:804::-;60826:4;60847:15;:2;:13;;;:15::i;:::-;60843:625;;;60899:2;60883:36;;;60920:12;:10;:12::i;:::-;60934:4;60940:7;60949:5;60883:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60879:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61146:1;61129:6;:13;:18;61125:273;;;61172:61;;;;;;;;;;:::i;:::-;;;;;;;;61125:273;61348:6;61342:13;61333:6;61329:2;61325:15;61318:38;60879:534;61016:45;;;61006:55;;;:6;:55;;;;60999:62;;;;;60843:625;61452:4;61445:11;;60671:804;;;;;;;:::o;67311:110::-;67371:13;67404:9;67397:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67311:110;:::o;10163:723::-;10219:13;10449:1;10440:5;:10;10436:53;;;10467:10;;;;;;;;;;;;;;;;;;;;;10436:53;10499:12;10514:5;10499:20;;10530:14;10555:78;10570:1;10562:4;:9;10555:78;;10588:8;;;;;:::i;:::-;;;;10619:2;10611:10;;;;;:::i;:::-;;;10555:78;;;10643:19;10675:6;10665:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10643:39;;10693:154;10709:1;10700:5;:10;10693:154;;10737:1;10727:11;;;;;:::i;:::-;;;10804:2;10796:5;:10;;;;:::i;:::-;10783:2;:24;;;;:::i;:::-;10770:39;;10753:6;10760;10753:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10833:2;10824:11;;;;;:::i;:::-;;;10693:154;;;10871:6;10857:21;;;;;10163:723;;;;:::o;61963:159::-;;;;;:::o;62534:158::-;;;;;:::o;55576:163::-;55699:32;55705:2;55709:8;55719:5;55726:4;55699:5;:32::i;:::-;55576:163;;;:::o;1618:326::-;1678:4;1935:1;1913:7;:19;;;:23;1906:30;;1618:326;;;:::o;55998:1538::-;56137:20;56160:12;;56137:35;;56205:1;56191:16;;:2;:16;;;;56183:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56276:1;56264:8;:13;;56256:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56335:61;56365:1;56369:2;56373:12;56387:8;56335:21;:61::i;:::-;56710:8;56674:12;:16;56687:2;56674:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56775:8;56734:12;:16;56747:2;56734:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56834:2;56801:11;:25;56813:12;56801:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;56901:15;56851:11;:25;56863:12;56851:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;56934:20;56957:12;56934:35;;56991:9;56986:415;57006:8;57002:1;:12;56986:415;;;57070:12;57066:2;57045:38;;57062:1;57045:38;;;;;;;;;;;;57106:4;57102:249;;;57169:59;57200:1;57204:2;57208:12;57222:5;57169:22;:59::i;:::-;57135:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;57102:249;57371:14;;;;;;;57016:3;;;;;;;56986:415;;;;57432:12;57417;:27;;;;56649:807;57468:60;57497:1;57501:2;57505:12;57519:8;57468:20;:60::i;:::-;56126:1410;55998:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:398::-;17900:3;17921:83;18002:1;17997:3;17921:83;:::i;:::-;17914:90;;18013:93;18102:3;18013:93;:::i;:::-;18131:1;18126:3;18122:11;18115:18;;17741:398;;;:::o;18145:366::-;18287:3;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18384:93;18473:3;18384:93;:::i;:::-;18502:2;18497:3;18493:12;18486:19;;18145:366;;;:::o;18517:::-;18659:3;18680:67;18744:2;18739:3;18680:67;:::i;:::-;18673:74;;18756:93;18845:3;18756:93;:::i;:::-;18874:2;18869:3;18865:12;18858:19;;18517:366;;;:::o;18889:::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:::-;20147:3;20168:67;20232:2;20227:3;20168:67;:::i;:::-;20161:74;;20244:93;20333:3;20244:93;:::i;:::-;20362:2;20357:3;20353:12;20346:19;;20005:366;;;:::o;20377:::-;20519:3;20540:67;20604:2;20599:3;20540:67;:::i;:::-;20533:74;;20616:93;20705:3;20616:93;:::i;:::-;20734:2;20729:3;20725:12;20718:19;;20377:366;;;:::o;20749:108::-;20826:24;20844:5;20826:24;:::i;:::-;20821:3;20814:37;20749:108;;:::o;20863:118::-;20950:24;20968:5;20950:24;:::i;:::-;20945:3;20938:37;20863:118;;:::o;20987:589::-;21212:3;21234:95;21325:3;21316:6;21234:95;:::i;:::-;21227:102;;21346:95;21437:3;21428:6;21346:95;:::i;:::-;21339:102;;21458:92;21546:3;21537:6;21458:92;:::i;:::-;21451:99;;21567:3;21560:10;;20987:589;;;;;;:::o;21582:379::-;21766:3;21788:147;21931:3;21788:147;:::i;:::-;21781:154;;21952:3;21945:10;;21582:379;;;:::o;21967:222::-;22060:4;22098:2;22087:9;22083:18;22075:26;;22111:71;22179:1;22168:9;22164:17;22155:6;22111:71;:::i;:::-;21967:222;;;;:::o;22195:640::-;22390:4;22428:3;22417:9;22413:19;22405:27;;22442:71;22510:1;22499:9;22495:17;22486:6;22442:71;:::i;:::-;22523:72;22591:2;22580:9;22576:18;22567:6;22523:72;:::i;:::-;22605;22673:2;22662:9;22658:18;22649:6;22605:72;:::i;:::-;22724:9;22718:4;22714:20;22709:2;22698:9;22694:18;22687:48;22752:76;22823:4;22814:6;22752:76;:::i;:::-;22744:84;;22195:640;;;;;;;:::o;22841:373::-;22984:4;23022:2;23011:9;23007:18;22999:26;;23071:9;23065:4;23061:20;23057:1;23046:9;23042:17;23035:47;23099:108;23202:4;23193:6;23099:108;:::i;:::-;23091:116;;22841:373;;;;:::o;23220:210::-;23307:4;23345:2;23334:9;23330:18;23322:26;;23358:65;23420:1;23409:9;23405:17;23396:6;23358:65;:::i;:::-;23220:210;;;;:::o;23436:313::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:78;23737:4;23728:6;23664:78;:::i;:::-;23656:86;;23436:313;;;;:::o;23755:419::-;23921:4;23959:2;23948:9;23944:18;23936:26;;24008:9;24002:4;23998:20;23994:1;23983:9;23979:17;23972:47;24036:131;24162:4;24036:131;:::i;:::-;24028:139;;23755:419;;;:::o;24180:::-;24346:4;24384:2;24373:9;24369:18;24361:26;;24433:9;24427:4;24423:20;24419:1;24408:9;24404:17;24397:47;24461:131;24587:4;24461:131;:::i;:::-;24453:139;;24180:419;;;:::o;24605:::-;24771:4;24809:2;24798:9;24794:18;24786:26;;24858:9;24852:4;24848:20;24844:1;24833:9;24829:17;24822:47;24886:131;25012:4;24886:131;:::i;:::-;24878:139;;24605:419;;;:::o;25030:::-;25196:4;25234:2;25223:9;25219:18;25211:26;;25283:9;25277:4;25273:20;25269:1;25258:9;25254:17;25247:47;25311:131;25437:4;25311:131;:::i;:::-;25303:139;;25030:419;;;:::o;25455:::-;25621:4;25659:2;25648:9;25644:18;25636:26;;25708:9;25702:4;25698:20;25694:1;25683:9;25679:17;25672:47;25736:131;25862:4;25736:131;:::i;:::-;25728:139;;25455:419;;;:::o;25880:::-;26046:4;26084:2;26073:9;26069:18;26061:26;;26133:9;26127:4;26123:20;26119:1;26108:9;26104:17;26097:47;26161:131;26287:4;26161:131;:::i;:::-;26153:139;;25880:419;;;:::o;26305:::-;26471:4;26509:2;26498:9;26494:18;26486:26;;26558:9;26552:4;26548:20;26544:1;26533:9;26529:17;26522:47;26586:131;26712:4;26586:131;:::i;:::-;26578:139;;26305:419;;;:::o;26730:::-;26896:4;26934:2;26923:9;26919:18;26911:26;;26983:9;26977:4;26973:20;26969:1;26958:9;26954:17;26947:47;27011:131;27137:4;27011:131;:::i;:::-;27003:139;;26730:419;;;:::o;27155:::-;27321:4;27359:2;27348:9;27344:18;27336:26;;27408:9;27402:4;27398:20;27394:1;27383:9;27379:17;27372:47;27436:131;27562:4;27436:131;:::i;:::-;27428:139;;27155:419;;;:::o;27580:::-;27746:4;27784:2;27773:9;27769:18;27761:26;;27833:9;27827:4;27823:20;27819:1;27808:9;27804:17;27797:47;27861:131;27987:4;27861:131;:::i;:::-;27853:139;;27580:419;;;:::o;28005:::-;28171:4;28209:2;28198:9;28194:18;28186:26;;28258:9;28252:4;28248:20;28244:1;28233:9;28229:17;28222:47;28286:131;28412:4;28286:131;:::i;:::-;28278:139;;28005:419;;;:::o;28430:::-;28596:4;28634:2;28623:9;28619:18;28611:26;;28683:9;28677:4;28673:20;28669:1;28658:9;28654:17;28647:47;28711:131;28837:4;28711:131;:::i;:::-;28703:139;;28430:419;;;:::o;28855:::-;29021:4;29059:2;29048:9;29044:18;29036:26;;29108:9;29102:4;29098:20;29094:1;29083:9;29079:17;29072:47;29136:131;29262:4;29136:131;:::i;:::-;29128:139;;28855:419;;;:::o;29280:::-;29446:4;29484:2;29473:9;29469:18;29461:26;;29533:9;29527:4;29523:20;29519:1;29508:9;29504:17;29497:47;29561:131;29687:4;29561:131;:::i;:::-;29553:139;;29280:419;;;:::o;29705:::-;29871:4;29909:2;29898:9;29894:18;29886:26;;29958:9;29952:4;29948:20;29944:1;29933:9;29929:17;29922:47;29986:131;30112:4;29986:131;:::i;:::-;29978:139;;29705:419;;;:::o;30130:::-;30296:4;30334:2;30323:9;30319:18;30311:26;;30383:9;30377:4;30373:20;30369:1;30358:9;30354:17;30347:47;30411:131;30537:4;30411:131;:::i;:::-;30403:139;;30130:419;;;:::o;30555:::-;30721:4;30759:2;30748:9;30744:18;30736:26;;30808:9;30802:4;30798:20;30794:1;30783:9;30779:17;30772:47;30836:131;30962:4;30836:131;:::i;:::-;30828:139;;30555:419;;;:::o;30980:::-;31146:4;31184:2;31173:9;31169:18;31161:26;;31233:9;31227:4;31223:20;31219:1;31208:9;31204:17;31197:47;31261:131;31387:4;31261:131;:::i;:::-;31253:139;;30980:419;;;:::o;31405:::-;31571:4;31609:2;31598:9;31594:18;31586:26;;31658:9;31652:4;31648:20;31644:1;31633:9;31629:17;31622:47;31686:131;31812:4;31686:131;:::i;:::-;31678:139;;31405:419;;;:::o;31830:::-;31996:4;32034:2;32023:9;32019:18;32011:26;;32083:9;32077:4;32073:20;32069:1;32058:9;32054:17;32047:47;32111:131;32237:4;32111:131;:::i;:::-;32103:139;;31830:419;;;:::o;32255:::-;32421:4;32459:2;32448:9;32444:18;32436:26;;32508:9;32502:4;32498:20;32494:1;32483:9;32479:17;32472:47;32536:131;32662:4;32536:131;:::i;:::-;32528:139;;32255:419;;;:::o;32680:::-;32846:4;32884:2;32873:9;32869:18;32861:26;;32933:9;32927:4;32923:20;32919:1;32908:9;32904:17;32897:47;32961:131;33087:4;32961:131;:::i;:::-;32953:139;;32680:419;;;:::o;33105:::-;33271:4;33309:2;33298:9;33294:18;33286:26;;33358:9;33352:4;33348:20;33344:1;33333:9;33329:17;33322:47;33386:131;33512:4;33386:131;:::i;:::-;33378:139;;33105:419;;;:::o;33530:::-;33696:4;33734:2;33723:9;33719:18;33711:26;;33783:9;33777:4;33773:20;33769:1;33758:9;33754:17;33747:47;33811:131;33937:4;33811:131;:::i;:::-;33803:139;;33530:419;;;:::o;33955:::-;34121:4;34159:2;34148:9;34144:18;34136:26;;34208:9;34202:4;34198:20;34194:1;34183:9;34179:17;34172:47;34236:131;34362:4;34236:131;:::i;:::-;34228:139;;33955:419;;;:::o;34380:::-;34546:4;34584:2;34573:9;34569:18;34561:26;;34633:9;34627:4;34623:20;34619:1;34608:9;34604:17;34597:47;34661:131;34787:4;34661:131;:::i;:::-;34653:139;;34380:419;;;:::o;34805:222::-;34898:4;34936:2;34925:9;34921:18;34913:26;;34949:71;35017:1;35006:9;35002:17;34993:6;34949:71;:::i;:::-;34805:222;;;;:::o;35033:129::-;35067:6;35094:20;;:::i;:::-;35084:30;;35123:33;35151:4;35143:6;35123:33;:::i;:::-;35033:129;;;:::o;35168:75::-;35201:6;35234:2;35228:9;35218:19;;35168:75;:::o;35249:307::-;35310:4;35400:18;35392:6;35389:30;35386:56;;;35422:18;;:::i;:::-;35386:56;35460:29;35482:6;35460:29;:::i;:::-;35452:37;;35544:4;35538;35534:15;35526:23;;35249:307;;;:::o;35562:308::-;35624:4;35714:18;35706:6;35703:30;35700:56;;;35736:18;;:::i;:::-;35700:56;35774:29;35796:6;35774:29;:::i;:::-;35766:37;;35858:4;35852;35848:15;35840:23;;35562:308;;;:::o;35876:132::-;35943:4;35966:3;35958:11;;35996:4;35991:3;35987:14;35979:22;;35876:132;;;:::o;36014:141::-;36063:4;36086:3;36078:11;;36109:3;36106:1;36099:14;36143:4;36140:1;36130:18;36122:26;;36014:141;;;:::o;36161:114::-;36228:6;36262:5;36256:12;36246:22;;36161:114;;;:::o;36281:98::-;36332:6;36366:5;36360:12;36350:22;;36281:98;;;:::o;36385:99::-;36437:6;36471:5;36465:12;36455:22;;36385:99;;;:::o;36490:113::-;36560:4;36592;36587:3;36583:14;36575:22;;36490:113;;;:::o;36609:184::-;36708:11;36742:6;36737:3;36730:19;36782:4;36777:3;36773:14;36758:29;;36609:184;;;;:::o;36799:168::-;36882:11;36916:6;36911:3;36904:19;36956:4;36951:3;36947:14;36932:29;;36799:168;;;;:::o;36973:147::-;37074:11;37111:3;37096:18;;36973:147;;;;:::o;37126:169::-;37210:11;37244:6;37239:3;37232:19;37284:4;37279:3;37275:14;37260:29;;37126:169;;;;:::o;37301:148::-;37403:11;37440:3;37425:18;;37301:148;;;;:::o;37455:305::-;37495:3;37514:20;37532:1;37514:20;:::i;:::-;37509:25;;37548:20;37566:1;37548:20;:::i;:::-;37543:25;;37702:1;37634:66;37630:74;37627:1;37624:81;37621:107;;;37708:18;;:::i;:::-;37621:107;37752:1;37749;37745:9;37738:16;;37455:305;;;;:::o;37766:185::-;37806:1;37823:20;37841:1;37823:20;:::i;:::-;37818:25;;37857:20;37875:1;37857:20;:::i;:::-;37852:25;;37896:1;37886:35;;37901:18;;:::i;:::-;37886:35;37943:1;37940;37936:9;37931:14;;37766:185;;;;:::o;37957:348::-;37997:7;38020:20;38038:1;38020:20;:::i;:::-;38015:25;;38054:20;38072:1;38054:20;:::i;:::-;38049:25;;38242:1;38174:66;38170:74;38167:1;38164:81;38159:1;38152:9;38145:17;38141:105;38138:131;;;38249:18;;:::i;:::-;38138:131;38297:1;38294;38290:9;38279:20;;37957:348;;;;:::o;38311:191::-;38351:4;38371:20;38389:1;38371:20;:::i;:::-;38366:25;;38405:20;38423:1;38405:20;:::i;:::-;38400:25;;38444:1;38441;38438:8;38435:34;;;38449:18;;:::i;:::-;38435:34;38494:1;38491;38487:9;38479:17;;38311:191;;;;:::o;38508:96::-;38545:7;38574:24;38592:5;38574:24;:::i;:::-;38563:35;;38508:96;;;:::o;38610:90::-;38644:7;38687:5;38680:13;38673:21;38662:32;;38610:90;;;:::o;38706:149::-;38742:7;38782:66;38775:5;38771:78;38760:89;;38706:149;;;:::o;38861:126::-;38898:7;38938:42;38931:5;38927:54;38916:65;;38861:126;;;:::o;38993:77::-;39030:7;39059:5;39048:16;;38993:77;;;:::o;39076:154::-;39160:6;39155:3;39150;39137:30;39222:1;39213:6;39208:3;39204:16;39197:27;39076:154;;;:::o;39236:307::-;39304:1;39314:113;39328:6;39325:1;39322:13;39314:113;;;39413:1;39408:3;39404:11;39398:18;39394:1;39389:3;39385:11;39378:39;39350:2;39347:1;39343:10;39338:15;;39314:113;;;39445:6;39442:1;39439:13;39436:101;;;39525:1;39516:6;39511:3;39507:16;39500:27;39436:101;39285:258;39236:307;;;:::o;39549:320::-;39593:6;39630:1;39624:4;39620:12;39610:22;;39677:1;39671:4;39667:12;39698:18;39688:81;;39754:4;39746:6;39742:17;39732:27;;39688:81;39816:2;39808:6;39805:14;39785:18;39782:38;39779:84;;;39835:18;;:::i;:::-;39779:84;39600:269;39549:320;;;:::o;39875:281::-;39958:27;39980:4;39958:27;:::i;:::-;39950:6;39946:40;40088:6;40076:10;40073:22;40052:18;40040:10;40037:34;40034:62;40031:88;;;40099:18;;:::i;:::-;40031:88;40139:10;40135:2;40128:22;39918:238;39875:281;;:::o;40162:233::-;40201:3;40224:24;40242:5;40224:24;:::i;:::-;40215:33;;40270:66;40263:5;40260:77;40257:103;;;40340:18;;:::i;:::-;40257:103;40387:1;40380:5;40376:13;40369:20;;40162:233;;;:::o;40401:176::-;40433:1;40450:20;40468:1;40450:20;:::i;:::-;40445:25;;40484:20;40502:1;40484:20;:::i;:::-;40479:25;;40523:1;40513:35;;40528:18;;:::i;:::-;40513:35;40569:1;40566;40562:9;40557:14;;40401:176;;;;:::o;40583:180::-;40631:77;40628:1;40621:88;40728:4;40725:1;40718:15;40752:4;40749:1;40742:15;40769:180;40817:77;40814:1;40807:88;40914:4;40911:1;40904:15;40938:4;40935:1;40928:15;40955:180;41003:77;41000:1;40993:88;41100:4;41097:1;41090:15;41124:4;41121:1;41114:15;41141:180;41189:77;41186:1;41179:88;41286:4;41283:1;41276:15;41310:4;41307:1;41300:15;41327:180;41375:77;41372:1;41365:88;41472:4;41469:1;41462:15;41496:4;41493:1;41486:15;41513:117;41622:1;41619;41612:12;41636:117;41745:1;41742;41735:12;41759:117;41868:1;41865;41858:12;41882:117;41991:1;41988;41981:12;42005:102;42046:6;42097:2;42093:7;42088:2;42081:5;42077:14;42073:28;42063:38;;42005:102;;;:::o;42113:221::-;42253:34;42249:1;42241:6;42237:14;42230:58;42322:4;42317:2;42309:6;42305:15;42298:29;42113:221;:::o;42340:233::-;42480:34;42476:1;42468:6;42464:14;42457:58;42549:16;42544:2;42536:6;42532:15;42525:41;42340:233;:::o;42579:225::-;42719:34;42715:1;42707:6;42703:14;42696:58;42788:8;42783:2;42775:6;42771:15;42764:33;42579:225;:::o;42810:229::-;42950:34;42946:1;42938:6;42934:14;42927:58;43019:12;43014:2;43006:6;43002:15;42995:37;42810:229;:::o;43045:170::-;43185:22;43181:1;43173:6;43169:14;43162:46;43045:170;:::o;43221:166::-;43361:18;43357:1;43349:6;43345:14;43338:42;43221:166;:::o;43393:222::-;43533:34;43529:1;43521:6;43517:14;43510:58;43602:5;43597:2;43589:6;43585:15;43578:30;43393:222;:::o;43621:224::-;43761:34;43757:1;43749:6;43745:14;43738:58;43830:7;43825:2;43817:6;43813:15;43806:32;43621:224;:::o;43851:175::-;43991:27;43987:1;43979:6;43975:14;43968:51;43851:175;:::o;44032:244::-;44172:34;44168:1;44160:6;44156:14;44149:58;44241:27;44236:2;44228:6;44224:15;44217:52;44032:244;:::o;44282:230::-;44422:34;44418:1;44410:6;44406:14;44399:58;44491:13;44486:2;44478:6;44474:15;44467:38;44282:230;:::o;44518:225::-;44658:34;44654:1;44646:6;44642:14;44635:58;44727:8;44722:2;44714:6;44710:15;44703:33;44518:225;:::o;44749:182::-;44889:34;44885:1;44877:6;44873:14;44866:58;44749:182;:::o;44937:173::-;45077:25;45073:1;45065:6;45061:14;45054:49;44937:173;:::o;45116:234::-;45256:34;45252:1;45244:6;45240:14;45233:58;45325:17;45320:2;45312:6;45308:15;45301:42;45116:234;:::o;45356:176::-;45496:28;45492:1;45484:6;45480:14;45473:52;45356:176;:::o;45538:237::-;45678:34;45674:1;45666:6;45662:14;45655:58;45747:20;45742:2;45734:6;45730:15;45723:45;45538:237;:::o;45781:172::-;45921:24;45917:1;45909:6;45905:14;45898:48;45781:172;:::o;45959:221::-;46099:34;46095:1;46087:6;46083:14;46076:58;46168:4;46163:2;46155:6;46151:15;46144:29;45959:221;:::o;46186:114::-;;:::o;46306:166::-;46446:18;46442:1;46434:6;46430:14;46423:42;46306:166;:::o;46478:238::-;46618:34;46614:1;46606:6;46602:14;46595:58;46687:21;46682:2;46674:6;46670:15;46663:46;46478:238;:::o;46722:220::-;46862:34;46858:1;46850:6;46846:14;46839:58;46931:3;46926:2;46918:6;46914:15;46907:28;46722:220;:::o;46948:227::-;47088:34;47084:1;47076:6;47072:14;47065:58;47157:10;47152:2;47144:6;47140:15;47133:35;46948:227;:::o;47181:233::-;47321:34;47317:1;47309:6;47305:14;47298:58;47390:16;47385:2;47377:6;47373:15;47366:41;47181:233;:::o;47420:234::-;47560:34;47556:1;47548:6;47544:14;47537:58;47629:17;47624:2;47616:6;47612:15;47605:42;47420:234;:::o;47660:232::-;47800:34;47796:1;47788:6;47784:14;47777:58;47869:15;47864:2;47856:6;47852:15;47845:40;47660:232;:::o;47898:122::-;47971:24;47989:5;47971:24;:::i;:::-;47964:5;47961:35;47951:63;;48010:1;48007;48000:12;47951:63;47898:122;:::o;48026:116::-;48096:21;48111:5;48096:21;:::i;:::-;48089:5;48086:32;48076:60;;48132:1;48129;48122:12;48076:60;48026:116;:::o;48148:120::-;48220:23;48237:5;48220:23;:::i;:::-;48213:5;48210:34;48200:62;;48258:1;48255;48248:12;48200:62;48148:120;:::o;48274:122::-;48347:24;48365:5;48347:24;:::i;:::-;48340:5;48337:35;48327:63;;48386:1;48383;48376:12;48327:63;48274:122;:::o

Swarm Source

ipfs://f041e7c7ce05ca7d100b7431aef4c83cbe106fc25282c6b692501c72b3a7d00c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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