ETH Price: $3,422.70 (-1.51%)
Gas: 5 Gwei

Boardwalk Resistance (REBELS)
 

Overview

TokenID

1091

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
Rebels

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-04
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-07
*/

/**
 *Submitted for verification at Etherscan.io on 2021-09-14
*/

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


/**
 * @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 view returns (string memory);
}


// File @openzeppelin/contracts/utils/[email protected]


/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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


// File @openzeppelin/contracts/utils/[email protected]


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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/[email protected]


/**
 * @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/introspection/[email protected]


/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


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

        _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 {
        require(operator != _msgSender(), "ERC721: 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 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


/**
 * @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 @openzeppelin/contracts/access/[email protected]


/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}





contract Rebels is ERC721Enumerable, Ownable {
    
    
    address private _controlCenter;
    /*address private _bacContract = '0x6C9343CA5c2Ef3a35a83438344Bb3cbE3c249f65'; //Main Net*/
    address private _bacContract = 0xf5a451b6d283ac017080231DBE624b3482E44D86; //Test Net
    uint256 public constant max_rebels = 3333 ;
    uint256 private _maxRedemption = 10;
    uint256 private _mintLimit = 10;
    uint256 private _price = 70000000000000000; 
    uint256 private _memberPrice = 50000000000000000;
    uint256 private _publicSaleTime = 1682787600;
    uint256 private _memberSaleTime = 1682784000;
    uint256 private _earlyAccessTime = 1681089300;
    uint256 private _earlyAccessClaimed = 0;
    uint256 private _totalMaxEarlyAccess = 1600;
    uint256 private _indMaxEarlyAccess = 5;
    uint256 private _eaIndex = 0;
    ControlCenter private cc = ControlCenter(_controlCenter);
    string private _uriPrefix;
    string private _baseTokenURI;
    
    string private _provenanceHash;
    
    mapping(address => uint256) private _walletMinted;
    mapping(address => uint256) private _eAMinted;
    mapping(address => bool) private _walletApproved;
    
    address[] private _bacOwners;
    bytes32[] private _tokenURIs;
    bool private _snapshotSet;
    

    constructor(string memory baseURI)
        ERC721("Boardwalk Resistance", "REBELS")
    {   
        setBaseURI(baseURI);
        _uriPrefix = "https://arweave.net/"; //default to arweave
    }
    
    function getControlCenter() public view returns(address){
        return _controlCenter;
    }
    function setURIPrefix (string calldata uriPrefix) public onlyOwner{
        _uriPrefix = uriPrefix;
    }

    function getEarlyAccessBalance (address owner) public view returns (uint256) {
        return _eAMinted[owner];
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setBacOwners(address[] calldata owners) public onlyOwner {
        _bacOwners = owners;
    }
  
    function viewBacOwners(uint256 atIndex) public view returns (address){
        return _bacOwners[atIndex];
    }

    function updateControlCenterAddress(address _cca) public onlyOwner {
        _controlCenter = _cca;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        
        return string(abi.encodePacked(_uriPrefix,_baseTokenURI));
    }
    
    function setTokenURIs(bytes32[] calldata uris) public onlyOwner{
        _tokenURIs = uris;
    }
    function getURI(uint256 i) public view returns(string memory){
        return string(abi.encodePacked(_tokenURIs[i]));
    }
     function setEarlyAccessSaleTime(uint256 _time) public onlyOwner {
        _earlyAccessTime = _time;
    }
    function setMemberSaleTime(uint256 _time) public onlyOwner {
        _memberSaleTime = _time;
    }
    function setPublicSaleTime(uint256 _time) public onlyOwner {
        _publicSaleTime = _time;
    }
    
   
    function inEarlyAccess() public view returns(bool){
        return (block.timestamp >= _earlyAccessTime && block.timestamp < _memberSaleTime);
        /*if (block.timestamp >= _earlyAccessTime && block.timestamp < _memberSaleTime) {
            return true;
        } else {
            return false;
        }*/
    }
    function getNormalSaleTime(address user) public view returns (uint256) {
        ControlCenter c = ControlCenter(_controlCenter);
        if(user !=address(0) ){
            if (walletApprovedForEA(user) && _eAMinted[user] <_indMaxEarlyAccess && _earlyAccessClaimed < _totalMaxEarlyAccess && block.timestamp < _memberSaleTime && block.timestamp < _publicSaleTime){
                return _earlyAccessTime;
            } else{
                if(c.getBalance(user) > 0){
                    return _memberSaleTime;
                } else {
                    return _publicSaleTime;
                }
            }
        } else {
            return _publicSaleTime;
        }
    }
    function getBlockTime () public view returns(uint256) {
        return block.timestamp;}

    function getTimeUntilSale (address user) public view returns (uint256){
        uint256 saleTime =  getNormalSaleTime(user);
        if(block.timestamp >= saleTime){
            return 0;
        } else {
            return SafeMath.sub(saleTime,block.timestamp);
        }
    }
    function setPrice(uint256 _newWEIPrice) public onlyOwner {
        _price = _newWEIPrice;
    }
    function setMemberPrice(uint256 _newWEIPrice) public onlyOwner {
        _memberPrice = _newWEIPrice;
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }
    function pairWithControlCenter(address _conCenter) public onlyOwner{
        if(_controlCenter != _conCenter){
            _controlCenter = _conCenter;
        }
        ControlCenter controlCenter = ControlCenter(_controlCenter);
        controlCenter.pairContract(address(this),_maxRedemption);
    }
    
    function getCallerPrice(uint256 _quantityMint) public view returns (uint256){
        ControlCenter controlCenter = ControlCenter(_controlCenter);
        uint256 _eligibleBalance = controlCenter.getBalance(msg.sender);
        if(_eligibleBalance > 0){
          return SafeMath.mul(_memberPrice,_quantityMint);
        } else {
            return SafeMath.mul(_price,_quantityMint);
        }
    }


    function approveFreeMints() public onlyOwner {
        uint256 functionIndex = _eaIndex;
        //require(_snapshotSet,"Snapshot has not been completed.");
        do {
           if (_walletApproved[_bacOwners[functionIndex]] == false){
             _walletApproved[_bacOwners[functionIndex]] = true ;  
           }
           functionIndex += 1;
        } while (gasleft() > 30000 && functionIndex < _bacOwners.length);
        _eaIndex = functionIndex;
    }

    function checkWhitelistStatus() public view returns(bool) {
        return _eaIndex == (_bacOwners.length);
    }
    function checkWhiteListIndex() public view returns (uint256){
        return _eaIndex;
    }

    function walletApprovedForEA(address _checkWallet) public view returns (bool){
        for(uint256 i = 0; i < _bacOwners.length;i++){
            if (_checkWallet == _bacOwners[i]){
                return true;
            }
        }
        return false;
    }
    function getEarlyAccessClaimed() public view returns(uint256){
        return _earlyAccessClaimed;
    }

    function earlyAccessMint (uint256 _count) public payable{
        uint256 totSupply = totalSupply();
        require(block.timestamp >= _earlyAccessTime);
        require(walletApprovedForEA(msg.sender),"Wallet Not Approved for Early Access");
        require(tx.origin == msg.sender);
        require(totSupply < max_rebels, "All Rebels have been Claimed.");
        require(totSupply + _count <= max_rebels,"There are not enough Rebels available");
        require(_eAMinted[msg.sender] + _count <= _indMaxEarlyAccess, "Wallet would exceed EA limit");
        require(_count + _earlyAccessClaimed <= _totalMaxEarlyAccess, "Early Access Limit Reached.");       
        //require(msg.value == getCallerPrice(_count),"Price was not correct. Please send with the right amount of ETH.");

        for(uint i = 0; i < _count; i++) {
            uint mintIndex = totalSupply();
            if (mintIndex < max_rebels) {
                _safeMint(msg.sender, mintIndex);
                _eAMinted[msg.sender] ++;
                _earlyAccessClaimed ++;
            }
        }
    } 
    function mint(uint256 _count) public payable {
        uint256 totSupply = totalSupply();
        require(tx.origin == msg.sender);
        require(block.timestamp >= getNormalSaleTime(msg.sender), "Sale is not yet open.");
        require(totSupply < max_rebels, "All Rebels have been Claimed.");
        require(totSupply + _count <= max_rebels,"There are not enough Rebels available");
        require(_walletMinted[msg.sender] + _count <= _maxRedemption, "Wallet would exceed mint limit");       
        require(msg.value == getCallerPrice(_count),"Price was not correct. Please send with the right amount of ETH.");

        for(uint i = 0; i < _count; i++) {
            uint mintIndex = totalSupply();
            if (mintIndex < max_rebels) {
                _safeMint(msg.sender, mintIndex);
                _walletMinted[msg.sender] ++;
            }
        }
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        }

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

abstract contract ControlCenter {
    //_tokenContractAddresses: Array of all potential ERC721 contracts that any token that interfaces with ControlCenter can access.
    address[] private _tokenContractAddresses;
    //_usingControlCenter keeps track of the contracts paired with this ControlCenter.
    address[] private _usingControlCenter;
    //owner: ControlCenter Owner 
    address private owner;
    //_maxRedemptions: where address: Child Contract Address (external contract using the ControlCenter) mapped to the maximum number of redemptions allowed for that Child Contract (e.g. contract 0x123 only allows 3 redemptions per wallet);
    mapping(address=>uint256) private _maxRedemptions;
    //_activeTokenContracts: where address is one of the _contractAddress members mapped to a boolean denoting whether or not to ignore that contract in downstream functions. Setting this to false will effectively 'shut off' a specific contract from any considersations made by the ControlCenter
    mapping(address => bool) private _activeTokenContracts;
    //_contractEligibility: where address1 = similar to _activeTokenContracts but on a specific Child Contract level, setting [ChildContractAddress][TokenContractAddress] = false removes the [TokenContractAddress] from being considered as a redeemable token contract for the Child Contract. 
    mapping(address=> mapping(address=>bool)) private _contractEligibility;
    mapping(address => mapping(address => mapping(uint256 => bool))) private tokenVer; //Mapping of [Child Contract] => [Corresponding ERC721 Token Contract] => [Corresponding ERC721 Token's Token ID] => [Redeemed (True/False)] whether a token has been redeemed for a specific Child Contract
    //_walletRedeemed: the number of tokens redeemed for a specific Child Contract. [Child Contract Address] => [Wallet Address] => [Number of Tokens Redeemed]
    mapping(address => mapping(address=>uint256)) private _walletRedeemed;
    
    constructor(){
        owner = msg.sender;
    }
    
    
    /*
    *@dev Returns the balance of all active Token Contracts on the ControlCenter
    * @param _addy address Wallet address of a given user.
    */
    function getBalance(address _addy) public view returns (uint256) {
        uint256 _balance =0;
        for (uint256 i=0;i<_tokenContractAddresses.length;i++){
            if (_activeTokenContracts[_tokenContractAddresses[i]]){
                _balance = SafeMath.add(_balance,ERC721(_tokenContractAddresses[i]).balanceOf(_addy));
            }
        }
        return _balance;
    }
    
    /*
    *@dev Returns the maximum token redemptions allowed for a given Child Contract
    *Used to verify contract was onboarded to the ControlCenter correctly
    * @param _childContract address Address of a Child Contract implementing ControlCenter functions
    */
    function checkContractStats(address _childContract) public view returns(uint256) {
        return (_maxRedemptions[_childContract]);
    }
    
    /*@dev This function checks the eligible balance of an address for a certain Child Contract. 
    *While a caller may have any number of tokens, eligibility is determined by the maximum number of tokens a Child Contract supports as defined by the _maxRedemptions mapping and how many times a wallet 
    *has redeemed tokens (_walletRedeemed) against the Child Contract (also determined by _maxRedemptions)
    *@param _childContract address Address of a Child Contract implementing ControlCenter functions
    *@param _addy address Wallet address of a given user (typically implemented as msg.sender from the Child Contract).
    */
    function getEligibleBalance(address _childContract, address _addy) public view returns (uint256){
        uint256 foundCount = 0;
        for (uint256 i = 0; i<_tokenContractAddresses.length;i++){
            if(_contractEligibility[_childContract][_tokenContractAddresses[i]] && _activeTokenContracts[_tokenContractAddresses[i]]){
                ERC721Enumerable con = ERC721Enumerable(_tokenContractAddresses[i]);
                uint256 conBalance = con.balanceOf(_addy);
                if ( conBalance > 0){
                    for (uint256 ii = 0; ii<conBalance; ii++){
                        ERC721Enumerable conE = ERC721Enumerable(_tokenContractAddresses[i]);
                        uint256 tokenID = conE.tokenOfOwnerByIndex(_addy,ii);
                        if(tokenVer[_childContract][_tokenContractAddresses[i]][tokenID] == false){
                            foundCount++;
                        }
                    }
                }
            }
            
        }
        if (foundCount > 0){
            if (foundCount >= _maxRedemptions[_childContract] && _maxRedemptions[_childContract] >= _walletRedeemed[_childContract][_addy]){
                return SafeMath.sub(_maxRedemptions[_childContract], _walletRedeemed[_childContract][_addy]);
            } else if (foundCount<=_maxRedemptions[_childContract] && foundCount >= _walletRedeemed[_childContract][_addy]){
                return SafeMath.sub(foundCount,_walletRedeemed[_childContract][_addy]);
            } else {
                return 0;
            }
        }
        else {
            return 0;
        }
    }
    
    /*@dev This function is called when onboarding a new Child Contract to this ControlCenter
    *@param _childContract address Address of a Child Contract implementing ControlCenter functions
    *@param _maxRed uint256 maximum number of tokens that can be redeemed against a certain Child Contract.
    */
    function pairContract(address _childContract, uint256 _maxRed) public{
        require(msg.sender == owner || msg.sender == _childContract, "Caller not authorized for this function");
         _maxRedemptions[_childContract] = _maxRed;
        for(uint256 i =0; i<_tokenContractAddresses.length;i++){
            _contractEligibility[_childContract][_tokenContractAddresses[i]] = true;
        }
        activateTokenContract(_childContract);
    }
    
    /*@dev This function can be used to manually override which Token Contracts are eligible to be redeemed for a certain Child Contract
    *@param _childContract address Address of a Child Contract implementing ControlCenter functions
    *@param _targetContract address Address of a target Token Contract whose state is being modified.
    *@param _newEligibility bool Whether or not the _targetContract can be redeemed against the given _childContract
    */
    function setChildContractEligibility (address _childContract, address _targetContract, bool _newEligibility) public {
        require(msg.sender == owner || msg.sender == _childContract, "Caller not authorized for this function.");
        _contractEligibility[_childContract][_targetContract] = _newEligibility;
        
    }
    
    /*@dev This function handles the interal considerations for token redemptions.
    *This function in this version of ControlCenter is pretty indiscriminate in regards to which tokens it takes for redemption.
    *It's not so much concerned about what or where the tokens come from, so much as it is concerned that they are or are not available tokens to be redeemed.
    *If they are redeeemable per the Child Contract, then they're set to 'redeemed' and cannot be redeemed again for that particular Child Contract.
    *Additionally, redeeming a token from any given wallet will count against that wallet's total redemption number for a given Child Contract.
    *Once a token has been redeemed for a Child Contract it cannot be redeemed again, similarly a wallet cannot reduce the number of redemptions by sending a token elsewhere.
    *@param _childContract address Address of a Child Contract implementing ControlCenter functions
    *@param _redemptionNumber uint256 Number of tokens requested to be redeemed.
    *@param _addy address Wallet address of a given user (typically implemented as msg.sender from the Child Contract).
    */
    function redeemEligibleTokens(address _childContract, uint256 _redemptionNumber, address _addy) public {
        //Must meet a number of requirements to continue to log a token as redeemed.
        require(msg.sender == owner || msg.sender == _childContract,"Caller not authorized for this function");
        require(_redemptionNumber > 0, "Cannot redeem 0 tokens, you dork.");
        require(_walletRedeemed[_childContract][_addy] < _maxRedemptions[_childContract], "Caller has already redeemed maximum number of Tokens");
        require(_redemptionNumber <= getEligibleBalance(_childContract, _addy),"This wallet cannot redeem this many tokens, please adjust_redemptionAmount");
        require(getEligibleBalance(_childContract, _addy) > 0, "Caller has no Eligible Tokens for this Contract");
        
        uint256 _foundCount = 0;
        uint256 _functionalLimit = getEligibleBalance(_childContract, _addy);
        
        //Functional limit is meant to cut down on potential wasted gas by taking the lesser of either what the user has opted to redeem or how many tokens the user is eligible to redeem
        if (_functionalLimit > _redemptionNumber) {
            _functionalLimit = _redemptionNumber;
        }
        
        if (_functionalLimit > 0){
            //Seeks to save gas by breaking out of the loop if the _foundCount reaches the functionalLimit (meaning if it finds enough eligible tokens there's no point continuing to run the loop)
            for (uint256 i = 0; i<_tokenContractAddresses.length && _foundCount < _functionalLimit;i++){ 
                if(_contractEligibility[_childContract][_tokenContractAddresses[i]] && _activeTokenContracts[_tokenContractAddresses[i]]){
                    ERC721Enumerable con = ERC721Enumerable(_tokenContractAddresses[i]);
                    uint256 conBalance = con.balanceOf(_addy); //number of tokens owned by _addy on a given TokenContract[i]
                    if ( conBalance > 0){
                        //similar gas saving effort here
                        for (uint256 ii = 0; ii<conBalance && _foundCount < _functionalLimit; ii++){
                            ERC721Enumerable conE = ERC721Enumerable(_tokenContractAddresses[i]);
                            uint256 tokenID = conE.tokenOfOwnerByIndex(_addy,ii);
                            if(tokenVer[_childContract][_tokenContractAddresses[i]][tokenID] == false){
                                tokenVer[_childContract][_tokenContractAddresses[i]][tokenID] = true; 
                                _foundCount++;
                            }
                        }
                    }
                }
                
            }
        }
        //Adds the number of foundTokens to the wallet's child contract mapping. This only occurs after all of the tokens have been set as redeemed.
        _walletRedeemed[_childContract][_addy] = SafeMath.add(_walletRedeemed[_childContract][_addy],_foundCount);
    }
    
    function checkTokenRedemptionStatus(address _childContract,address _tokenAddress, uint256 _tokenID) public view returns (bool){
        return (tokenVer[_childContract][_tokenAddress][_tokenID]);
    }
    
    function activateTokenContract(address _contract) public {
        require(msg.sender == owner || msg.sender == _contract, "E:ActivateToken - Caller is not the owner");
        require(_activeTokenContracts[_contract] == false, "Contract already active");
        
        if(_isTokenContractOnControlCenter(_contract) == false){
            _activeTokenContracts[_contract] = true;
            _tokenContractAddresses.push(_contract);
        } else {
            _activeTokenContracts[_contract] = true;
        }
        
    }
    function deactivateTokenContract(address _contract) public {
        require(msg.sender == owner, "Sender is not owner");
        require(_activeTokenContracts[_contract] == true, "Contract isn't active.");
        _activeTokenContracts[_contract] = false;
    }
    
    function _isTokenContractOnControlCenter (address _contract) internal view returns(bool){
        uint256 count = 0;
        for(uint256 i=0;i<_tokenContractAddresses.length;i++){
            if(_tokenContractAddresses[i] == _contract){
                count++;
            }
        }
        return count > 0;
    }
    
    
    function checkWalletRedeption(address _addy, address _childContract)public view returns(uint256){
        return _walletRedeemed[_childContract][_addy]; 
    }
    function viewControlCenterContracts() public view returns (address[] memory){
        return _tokenContractAddresses;
    }
    
   
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approveFreeMints","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":[],"name":"checkWhiteListIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkWhitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"earlyAccessMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantityMint","type":"uint256"}],"name":"getCallerPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getControlCenter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getEarlyAccessBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEarlyAccessClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNormalSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getTimeUntilSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"getURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inEarlyAccess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"max_rebels","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","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":[{"internalType":"address","name":"_conCenter","type":"address"}],"name":"pairWithControlCenter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"address[]","name":"owners","type":"address[]"}],"name":"setBacOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setEarlyAccessSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setMemberPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setMemberSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"uris","type":"bytes32[]"}],"name":"setTokenURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uriPrefix","type":"string"}],"name":"setURIPrefix","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":[{"internalType":"address","name":"_cca","type":"address"}],"name":"updateControlCenterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"atIndex","type":"uint256"}],"name":"viewBacOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_checkWallet","type":"address"}],"name":"walletApprovedForEA","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

608060405273f5a451b6d283ac017080231dbe624b3482e44d86600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600a600d55600a600e5566f8b0a10e470000600f5566b1a2bc2ec5000060105563644d4d1060115563644d3f006012556364336314601355600060145561064060155560056016556000601755600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011657600080fd5b506040516200687c3803806200687c83398181016040528101906200013c91906200057c565b6040518060400160405280601481526020017f426f61726477616c6b20526573697374616e63650000000000000000000000008152506040518060400160405280600681526020017f524542454c5300000000000000000000000000000000000000000000000000008152508160009081620001b9919062000818565b508060019081620001cb919062000818565b505050620001ee620001e26200024d60201b60201c565b6200025560201b60201c565b620001ff816200031b60201b60201c565b6040518060400160405280601481526020017f68747470733a2f2f617277656176652e6e65742f0000000000000000000000008152506019908162000245919062000818565b505062000982565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200032b6200024d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000351620003bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a19062000960565b60405180910390fd5b80601a9081620003bb919062000818565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004528262000407565b810181811067ffffffffffffffff8211171562000474576200047362000418565b5b80604052505050565b600062000489620003e9565b905062000497828262000447565b919050565b600067ffffffffffffffff821115620004ba57620004b962000418565b5b620004c58262000407565b9050602081019050919050565b60005b83811015620004f2578082015181840152602081019050620004d5565b60008484015250505050565b6000620005156200050f846200049c565b6200047d565b90508281526020810184848401111562000534576200053362000402565b5b62000541848285620004d2565b509392505050565b600082601f830112620005615762000560620003fd565b5b815162000573848260208601620004fe565b91505092915050565b600060208284031215620005955762000594620003f3565b5b600082015167ffffffffffffffff811115620005b657620005b5620003f8565b5b620005c48482850162000549565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062057607f821691505b602082108103620006365762000635620005d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000661565b620006ac868362000661565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006f9620006f3620006ed84620006c4565b620006ce565b620006c4565b9050919050565b6000819050919050565b6200071583620006d8565b6200072d620007248262000700565b8484546200066e565b825550505050565b600090565b6200074462000735565b620007518184846200070a565b505050565b5b8181101562000779576200076d6000826200073a565b60018101905062000757565b5050565b601f821115620007c85762000792816200063c565b6200079d8462000651565b81016020851015620007ad578190505b620007c5620007bc8562000651565b83018262000756565b50505b505050565b600082821c905092915050565b6000620007ed60001984600802620007cd565b1980831691505092915050565b6000620008088383620007da565b9150826002028217905092915050565b6200082382620005cd565b67ffffffffffffffff8111156200083f576200083e62000418565b5b6200084b825462000607565b620008588282856200077d565b600060209050601f8311600181146200089057600084156200087b578287015190505b620008878582620007fa565b865550620008f7565b601f198416620008a0866200063c565b60005b82811015620008ca57848901518255600182019150602085019450602081019050620008a3565b86831015620008ea5784890151620008e6601f891682620007da565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000948602083620008ff565b9150620009558262000910565b602082019050919050565b600060208201905081810360008301526200097b8162000939565b9050919050565b615eea80620009926000396000f3fe6080604052600436106102c95760003560e01c80637fb74d1a11610175578063a246b3f3116100dc578063cd26d39a11610095578063e985e9c51161006f578063e985e9c514610aff578063f2fde38b14610b3c578063fb2f175614610b65578063fb63f59b14610ba2576102c9565b8063cd26d39a14610a82578063d35037e814610aab578063e15d6ec114610ad4576102c9565b8063a246b3f314610974578063aca540d71461099d578063b2420792146109da578063b742c6ce14610a05578063b88d4fde14610a1c578063c87b56dd14610a45576102c9565b80639247c44e1161012e5780639247c44e1461087357806395d89b411461089c57806398d5fdca146108c75780639b1f09f1146108f2578063a0712d681461092f578063a22cb4651461094b576102c9565b80637fb74d1a14610798578063806c12e5146107c1578063853828b6146107ea57806387ceff09146107f45780638da5cb5b1461081f57806391b7f5ed1461084a576102c9565b806339723bba1161023457806355f804b3116101ed5780636352211e116101c75780636352211e146106de5780636bff2c241461071b57806370a0823114610744578063715018a614610781576102c9565b806355f804b31461065c5780635a5f77a9146106855780635aa66840146106a1576102c9565b806339723bba1461052657806342842e0e14610551578063438b63001461057a5780634e211a43146105b75780634e962520146105f45780634f6ccce71461061f576102c9565b806311b7e5e71161028657806311b7e5e71461040457806318160ddd1461042d57806319acf877146104585780631aa347dc1461048357806323b872dd146104c05780632f745c59146104e9576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b314610373578063098194881461039c5780630ffb7ec6146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613ede565b610bcb565b6040516103029190613f26565b60405180910390f35b34801561031757600080fd5b50610320610c45565b60405161032d9190613fd1565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190614029565b610cd7565b60405161036a9190614097565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906140de565b610d5c565b005b3480156103a857600080fd5b506103b1610e73565b6040516103be919061412d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190614029565b610e7d565b6040516103fb919061412d565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614029565b610f57565b005b34801561043957600080fd5b50610442610fdd565b60405161044f919061412d565b60405180910390f35b34801561046457600080fd5b5061046d610fea565b60405161047a9190613f26565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190614029565b610ffb565b6040516104b79190613fd1565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190614148565b611042565b005b3480156104f557600080fd5b50610510600480360381019061050b91906140de565b6110a2565b60405161051d919061412d565b60405180910390f35b34801561053257600080fd5b5061053b611147565b6040516105489190613f26565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190614148565b611161565b005b34801561058657600080fd5b506105a1600480360381019061059c919061419b565b611181565b6040516105ae9190614286565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061419b565b61128a565b6040516105eb919061412d565b60405180910390f35b34801561060057600080fd5b50610609611418565b604051610616919061412d565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614029565b611422565b604051610653919061412d565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e91906143dd565b611493565b005b61069f600480360381019061069a9190614029565b611522565b005b3480156106ad57600080fd5b506106c860048036038101906106c3919061419b565b6117e4565b6040516106d5919061412d565b60405180910390f35b3480156106ea57600080fd5b5061070560048036038101906107009190614029565b61182d565b6040516107129190614097565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190614486565b6118de565b005b34801561075057600080fd5b5061076b6004803603810190610766919061419b565b611970565b604051610778919061412d565b60405180910390f35b34801561078d57600080fd5b50610796611a27565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190614529565b611aaf565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190614029565b611b41565b005b6107f2611bc7565b005b34801561080057600080fd5b50610809611c83565b604051610816919061412d565b60405180910390f35b34801561082b57600080fd5b50610834611c8b565b6040516108419190614097565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190614029565b611cb5565b005b34801561087f57600080fd5b5061089a6004803603810190610895919061419b565b611d3b565b005b3480156108a857600080fd5b506108b1611ee8565b6040516108be9190613fd1565b60405180910390f35b3480156108d357600080fd5b506108dc611f7a565b6040516108e9919061412d565b60405180910390f35b3480156108fe57600080fd5b506109196004803603810190610914919061419b565b611f84565b6040516109269190613f26565b60405180910390f35b61094960048036038101906109449190614029565b612032565b005b34801561095757600080fd5b50610972600480360381019061096d91906145a2565b6122c8565b005b34801561098057600080fd5b5061099b60048036038101906109969190614029565b612448565b005b3480156109a957600080fd5b506109c460048036038101906109bf9190614029565b6124ce565b6040516109d19190614097565b60405180910390f35b3480156109e657600080fd5b506109ef612516565b6040516109fc9190614097565b60405180910390f35b348015610a1157600080fd5b50610a1a612540565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190614683565b612723565b005b348015610a5157600080fd5b50610a6c6004803603810190610a679190614029565b612785565b604051610a799190613fd1565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061419b565b61282c565b005b348015610ab757600080fd5b50610ad26004803603810190610acd919061475c565b6128ec565b005b348015610ae057600080fd5b50610ae961297e565b604051610af6919061412d565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b2191906147a9565b612984565b604051610b339190613f26565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e919061419b565b612a18565b005b348015610b7157600080fd5b50610b8c6004803603810190610b87919061419b565b612b0f565b604051610b99919061412d565b60405180910390f35b348015610bae57600080fd5b50610bc96004803603810190610bc49190614029565b612b41565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3e5750610c3d82612bc7565b5b9050919050565b606060008054610c5490614818565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8090614818565b8015610ccd5780601f10610ca257610100808354040283529160200191610ccd565b820191906000526020600020905b815481529060010190602001808311610cb057829003601f168201915b5050505050905090565b6000610ce282612ca9565b610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d18906148bb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d678261182d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061494d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df6612d15565b73ffffffffffffffffffffffffffffffffffffffff161480610e255750610e2481610e1f612d15565b612984565b5b610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906149df565b60405180910390fd5b610e6e8383612d1d565b505050565b6000601754905090565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663f8b2cb4f336040518263ffffffff1660e01b8152600401610ee09190614097565b602060405180830381865afa158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190614a14565b90506000811115610f4157610f3860105485612dd6565b92505050610f52565b610f4d600f5485612dd6565b925050505b919050565b610f5f612d15565b73ffffffffffffffffffffffffffffffffffffffff16610f7d611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90614a8d565b60405180910390fd5b8060118190555050565b6000600880549050905090565b6000601f8054905060175414905090565b60606020828154811061101157611010614aad565b5b906000526020600020015460405160200161102c9190614b07565b6040516020818303038152906040529050919050565b61105361104d612d15565b82612e50565b611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614b94565b60405180910390fd5b61109d838383612f2e565b505050565b60006110ad83611970565b82106110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614c26565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601354421015801561115c575060125442105b905090565b61117c83838360405180602001604052806000815250612723565b505050565b6060600061118e83611970565b9050600081036111ea57600067ffffffffffffffff8111156111b3576111b26142b2565b5b6040519080825280602002602001820160405280156111e15781602001602082028036833780820191505090505b50915050611285565b60008167ffffffffffffffff811115611206576112056142b2565b5b6040519080825280602002602001820160405280156112345781602001602082028036833780820191505090505b50905060005b8281101561127e5761124c85826110a2565b82828151811061125f5761125e614aad565b5b602002602001018181525050808061127690614c75565b91505061123a565b5080925050505b919050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461140c576112ef83611f84565b801561133b5750601654601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b801561134a5750601554601454105b8015611357575060125442105b8015611364575060115442105b1561137457601354915050611413565b60008173ffffffffffffffffffffffffffffffffffffffff1663f8b2cb4f856040518263ffffffff1660e01b81526004016113af9190614097565b602060405180830381865afa1580156113cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f09190614a14565b111561140157601254915050611413565b601154915050611413565b6011549150505b919050565b6000601454905090565b600061142c610fdd565b821061146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490614d2f565b60405180910390fd5b6008828154811061148157611480614aad565b5b90600052602060002001549050919050565b61149b612d15565b73ffffffffffffffffffffffffffffffffffffffff166114b9611c8b565b73ffffffffffffffffffffffffffffffffffffffff161461150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614a8d565b60405180910390fd5b80601a908161151e9190614efb565b5050565b600061152c610fdd565b905060135442101561153d57600080fd5b61154633611f84565b611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061503f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115bd57600080fd5b610d058110611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f8906150ab565b60405180910390fd5b610d05828261161091906150cb565b1115611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890615171565b60405180910390fd5b60165482601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169f91906150cb565b11156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d7906151dd565b60405180910390fd5b601554601454836116f191906150cb565b1115611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990615249565b60405180910390fd5b60005b828110156117df576000611747610fdd565b9050610d058110156117cb5761175d3382613189565b601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117ad90614c75565b9190505550601460008154809291906117c590614c75565b91905055505b5080806117d790614c75565b915050611735565b505050565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906152db565b60405180910390fd5b80915050919050565b6118e6612d15565b73ffffffffffffffffffffffffffffffffffffffff16611904611c8b565b73ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190614a8d565b60405180910390fd5b81816019918261196b929190615306565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790615448565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a2f612d15565b73ffffffffffffffffffffffffffffffffffffffff16611a4d611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9a90614a8d565b60405180910390fd5b611aad60006131a7565b565b611ab7612d15565b73ffffffffffffffffffffffffffffffffffffffff16611ad5611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614a8d565b60405180910390fd5b818160209190611b3c929190613d4b565b505050565b611b49612d15565b73ffffffffffffffffffffffffffffffffffffffff16611b67611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614a8d565b60405180910390fd5b8060108190555050565b611bcf612d15565b73ffffffffffffffffffffffffffffffffffffffff16611bed611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614a8d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611c8157600080fd5b565b600042905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cbd612d15565b73ffffffffffffffffffffffffffffffffffffffff16611cdb611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890614a8d565b60405180910390fd5b80600f8190555050565b611d43612d15565b73ffffffffffffffffffffffffffffffffffffffff16611d61611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614a8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4e5780600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636541f6d330600d546040518363ffffffff1660e01b8152600401611eb2929190615468565b600060405180830381600087803b158015611ecc57600080fd5b505af1158015611ee0573d6000803e3d6000fd5b505050505050565b606060018054611ef790614818565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2390614818565b8015611f705780601f10611f4557610100808354040283529160200191611f70565b820191906000526020600020905b815481529060010190602001808311611f5357829003601f168201915b5050505050905090565b6000600f54905090565b600080600090505b601f8054905081101561202757601f8181548110611fad57611fac614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361201457600191505061202d565b808061201f90614c75565b915050611f8c565b50600090505b919050565b600061203c610fdd565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461207657600080fd5b61207f3361128a565b4210156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906154dd565b60405180910390fd5b610d058110612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906150ab565b60405180910390fd5b610d05828261211491906150cb565b1115612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90615171565b60405180910390fd5b600d5482601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121a391906150cb565b11156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90615549565b60405180910390fd5b6121ed82610e7d565b341461222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906155db565b60405180910390fd5b60005b828110156122c3576000612243610fdd565b9050610d058110156122af576122593382613189565b601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906122a990614c75565b91905055505b5080806122bb90614c75565b915050612231565b505050565b6122d0612d15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490615647565b60405180910390fd5b806005600061234a612d15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123f7612d15565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161243c9190613f26565b60405180910390a35050565b612450612d15565b73ffffffffffffffffffffffffffffffffffffffff1661246e611c8b565b73ffffffffffffffffffffffffffffffffffffffff16146124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614a8d565b60405180910390fd5b8060128190555050565b6000601f82815481106124e4576124e3614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612548612d15565b73ffffffffffffffffffffffffffffffffffffffff16612566611c8b565b73ffffffffffffffffffffffffffffffffffffffff16146125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614a8d565b60405180910390fd5b600060175490505b60001515601e6000601f84815481106125e0576125df614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036126f1576001601e6000601f848154811061267457612673614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6001816126fe91906150cb565b90506175305a1180156127155750601f8054905081105b6125c4578060178190555050565b61273461272e612d15565b83612e50565b612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90614b94565b60405180910390fd5b61277f8484848461326d565b50505050565b606061279082612ca9565b6127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c6906156d9565b60405180910390fd5b60006127d96132c9565b905060008151116127f95760405180602001604052806000815250612824565b80612803846132f4565b604051602001612814929190615781565b6040516020818303038152906040525b915050919050565b612834612d15565b73ffffffffffffffffffffffffffffffffffffffff16612852611c8b565b73ffffffffffffffffffffffffffffffffffffffff16146128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f90614a8d565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6128f4612d15565b73ffffffffffffffffffffffffffffffffffffffff16612912611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90614a8d565b60405180910390fd5b8181601f9190612979929190613d98565b505050565b610d0581565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a20612d15565b73ffffffffffffffffffffffffffffffffffffffff16612a3e611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b90614a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa90615822565b60405180910390fd5b612b0c816131a7565b50565b600080612b1b8361128a565b9050804210612b2e576000915050612b3c565b612b388142613454565b9150505b919050565b612b49612d15565b73ffffffffffffffffffffffffffffffffffffffff16612b67611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb490614a8d565b60405180910390fd5b8060138190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c9257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ca25750612ca18261349e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d908361182d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808303612de85760009050612e4a565b60008284612df69190615842565b9050828482612e0591906158b3565b14612e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3c90615956565b60405180910390fd5b809150505b92915050565b6000612e5b82612ca9565b612e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e91906159e8565b60405180910390fd5b6000612ea58361182d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f1457508373ffffffffffffffffffffffffffffffffffffffff16612efc84610cd7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f255750612f248185612984565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f4e8261182d565b73ffffffffffffffffffffffffffffffffffffffff1614612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b90615a7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90615b0c565b60405180910390fd5b61301e838383613508565b613029600082612d1d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130799190615b2c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130d091906150cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131a382826040518060200160405280600081525061361a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613278848484612f2e565b61328484848484613675565b6132c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ba90615bd2565b60405180910390fd5b50505050565b60606019601a6040516020016132e0929190615c75565b604051602081830303815290604052905090565b60606000820361333b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061344f565b600082905060005b6000821461336d57808061335690614c75565b915050600a8261336691906158b3565b9150613343565b60008167ffffffffffffffff811115613389576133886142b2565b5b6040519080825280601f01601f1916602001820160405280156133bb5781602001600182028036833780820191505090505b5090505b60008514613448576001826133d49190615b2c565b9150600a856133e39190615c99565b60306133ef91906150cb565b60f81b81838151811061340557613404614aad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344191906158b3565b94506133bf565b8093505050505b919050565b600061349683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506137fc565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613513838383613860565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135555761355081613865565b613594565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135935761359283826138ae565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135d6576135d181613a1b565b613615565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613614576136138282613aec565b5b5b505050565b6136248383613b6b565b6136316000848484613675565b613670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366790615bd2565b60405180910390fd5b505050565b60006136968473ffffffffffffffffffffffffffffffffffffffff16613d38565b156137ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136bf612d15565b8786866040518563ffffffff1660e01b81526004016136e19493929190615d1f565b6020604051808303816000875af192505050801561371d57506040513d601f19601f8201168201806040525081019061371a9190615d80565b60015b61379f573d806000811461374d576040519150601f19603f3d011682016040523d82523d6000602084013e613752565b606091505b506000815103613797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378e90615bd2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137f4565b600190505b949350505050565b6000838311158290613844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383b9190613fd1565b60405180910390fd5b50600083856138539190615b2c565b9050809150509392505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138bb84611970565b6138c59190615b2c565b90506000600760008481526020019081526020016000205490508181146139aa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a2f9190615b2c565b9050600060096000848152602001908152602001600020549050600060088381548110613a5f57613a5e614aad565b5b906000526020600020015490508060088381548110613a8157613a80614aad565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ad057613acf615dad565b5b6001900381819060005260206000200160009055905550505050565b6000613af783611970565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd190615e28565b60405180910390fd5b613be381612ca9565b15613c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1a90615e94565b60405180910390fd5b613c2f60008383613508565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c7f91906150cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054828255906000526020600020908101928215613d87579160200282015b82811115613d86578235825591602001919060010190613d6b565b5b509050613d949190613e38565b5090565b828054828255906000526020600020908101928215613e27579160200282015b82811115613e2657823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613db8565b5b509050613e349190613e55565b5090565b5b80821115613e51576000816000905550600101613e39565b5090565b5b80821115613e6e576000816000905550600101613e56565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ebb81613e86565b8114613ec657600080fd5b50565b600081359050613ed881613eb2565b92915050565b600060208284031215613ef457613ef3613e7c565b5b6000613f0284828501613ec9565b91505092915050565b60008115159050919050565b613f2081613f0b565b82525050565b6000602082019050613f3b6000830184613f17565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f7b578082015181840152602081019050613f60565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fa382613f41565b613fad8185613f4c565b9350613fbd818560208601613f5d565b613fc681613f87565b840191505092915050565b60006020820190508181036000830152613feb8184613f98565b905092915050565b6000819050919050565b61400681613ff3565b811461401157600080fd5b50565b60008135905061402381613ffd565b92915050565b60006020828403121561403f5761403e613e7c565b5b600061404d84828501614014565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408182614056565b9050919050565b61409181614076565b82525050565b60006020820190506140ac6000830184614088565b92915050565b6140bb81614076565b81146140c657600080fd5b50565b6000813590506140d8816140b2565b92915050565b600080604083850312156140f5576140f4613e7c565b5b6000614103858286016140c9565b925050602061411485828601614014565b9150509250929050565b61412781613ff3565b82525050565b6000602082019050614142600083018461411e565b92915050565b60008060006060848603121561416157614160613e7c565b5b600061416f868287016140c9565b9350506020614180868287016140c9565b925050604061419186828701614014565b9150509250925092565b6000602082840312156141b1576141b0613e7c565b5b60006141bf848285016140c9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141fd81613ff3565b82525050565b600061420f83836141f4565b60208301905092915050565b6000602082019050919050565b6000614233826141c8565b61423d81856141d3565b9350614248836141e4565b8060005b838110156142795781516142608882614203565b975061426b8361421b565b92505060018101905061424c565b5085935050505092915050565b600060208201905081810360008301526142a08184614228565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142ea82613f87565b810181811067ffffffffffffffff82111715614309576143086142b2565b5b80604052505050565b600061431c613e72565b905061432882826142e1565b919050565b600067ffffffffffffffff821115614348576143476142b2565b5b61435182613f87565b9050602081019050919050565b82818337600083830152505050565b600061438061437b8461432d565b614312565b90508281526020810184848401111561439c5761439b6142ad565b5b6143a784828561435e565b509392505050565b600082601f8301126143c4576143c36142a8565b5b81356143d484826020860161436d565b91505092915050565b6000602082840312156143f3576143f2613e7c565b5b600082013567ffffffffffffffff81111561441157614410613e81565b5b61441d848285016143af565b91505092915050565b600080fd5b600080fd5b60008083601f840112614446576144456142a8565b5b8235905067ffffffffffffffff81111561446357614462614426565b5b60208301915083600182028301111561447f5761447e61442b565b5b9250929050565b6000806020838503121561449d5761449c613e7c565b5b600083013567ffffffffffffffff8111156144bb576144ba613e81565b5b6144c785828601614430565b92509250509250929050565b60008083601f8401126144e9576144e86142a8565b5b8235905067ffffffffffffffff81111561450657614505614426565b5b6020830191508360208202830111156145225761452161442b565b5b9250929050565b600080602083850312156145405761453f613e7c565b5b600083013567ffffffffffffffff81111561455e5761455d613e81565b5b61456a858286016144d3565b92509250509250929050565b61457f81613f0b565b811461458a57600080fd5b50565b60008135905061459c81614576565b92915050565b600080604083850312156145b9576145b8613e7c565b5b60006145c7858286016140c9565b92505060206145d88582860161458d565b9150509250929050565b600067ffffffffffffffff8211156145fd576145fc6142b2565b5b61460682613f87565b9050602081019050919050565b6000614626614621846145e2565b614312565b905082815260208101848484011115614642576146416142ad565b5b61464d84828561435e565b509392505050565b600082601f83011261466a576146696142a8565b5b813561467a848260208601614613565b91505092915050565b6000806000806080858703121561469d5761469c613e7c565b5b60006146ab878288016140c9565b94505060206146bc878288016140c9565b93505060406146cd87828801614014565b925050606085013567ffffffffffffffff8111156146ee576146ed613e81565b5b6146fa87828801614655565b91505092959194509250565b60008083601f84011261471c5761471b6142a8565b5b8235905067ffffffffffffffff81111561473957614738614426565b5b6020830191508360208202830111156147555761475461442b565b5b9250929050565b6000806020838503121561477357614772613e7c565b5b600083013567ffffffffffffffff81111561479157614790613e81565b5b61479d85828601614706565b92509250509250929050565b600080604083850312156147c0576147bf613e7c565b5b60006147ce858286016140c9565b92505060206147df858286016140c9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061483057607f821691505b602082108103614843576148426147e9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148a5602c83613f4c565b91506148b082614849565b604082019050919050565b600060208201905081810360008301526148d481614898565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614937602183613f4c565b9150614942826148db565b604082019050919050565b600060208201905081810360008301526149668161492a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006149c9603883613f4c565b91506149d48261496d565b604082019050919050565b600060208201905081810360008301526149f8816149bc565b9050919050565b600081519050614a0e81613ffd565b92915050565b600060208284031215614a2a57614a29613e7c565b5b6000614a38848285016149ff565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a77602083613f4c565b9150614a8282614a41565b602082019050919050565b60006020820190508181036000830152614aa681614a6a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b614b01614afc82614adc565b614ae6565b82525050565b6000614b138284614af0565b60208201915081905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614b7e603183613f4c565b9150614b8982614b22565b604082019050919050565b60006020820190508181036000830152614bad81614b71565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614c10602b83613f4c565b9150614c1b82614bb4565b604082019050919050565b60006020820190508181036000830152614c3f81614c03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c8082613ff3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614cb257614cb1614c46565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614d19602c83613f4c565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614db17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d74565b614dbb8683614d74565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614df8614df3614dee84613ff3565b614dd3565b613ff3565b9050919050565b6000819050919050565b614e1283614ddd565b614e26614e1e82614dff565b848454614d81565b825550505050565b600090565b614e3b614e2e565b614e46818484614e09565b505050565b5b81811015614e6a57614e5f600082614e33565b600181019050614e4c565b5050565b601f821115614eaf57614e8081614d4f565b614e8984614d64565b81016020851015614e98578190505b614eac614ea485614d64565b830182614e4b565b50505b505050565b600082821c905092915050565b6000614ed260001984600802614eb4565b1980831691505092915050565b6000614eeb8383614ec1565b9150826002028217905092915050565b614f0482613f41565b67ffffffffffffffff811115614f1d57614f1c6142b2565b5b614f278254614818565b614f32828285614e6e565b600060209050601f831160018114614f655760008415614f53578287015190505b614f5d8582614edf565b865550614fc5565b601f198416614f7386614d4f565b60005b82811015614f9b57848901518255600182019150602085019450602081019050614f76565b86831015614fb85784890151614fb4601f891682614ec1565b8355505b6001600288020188555050505b505050505050565b7f57616c6c6574204e6f7420417070726f76656420666f72204561726c7920416360008201527f6365737300000000000000000000000000000000000000000000000000000000602082015250565b6000615029602483613f4c565b915061503482614fcd565b604082019050919050565b600060208201905081810360008301526150588161501c565b9050919050565b7f416c6c20526562656c732068617665206265656e20436c61696d65642e000000600082015250565b6000615095601d83613f4c565b91506150a08261505f565b602082019050919050565b600060208201905081810360008301526150c481615088565b9050919050565b60006150d682613ff3565b91506150e183613ff3565b92508282019050808211156150f9576150f8614c46565b5b92915050565b7f546865726520617265206e6f7420656e6f75676820526562656c73206176616960008201527f6c61626c65000000000000000000000000000000000000000000000000000000602082015250565b600061515b602583613f4c565b9150615166826150ff565b604082019050919050565b6000602082019050818103600083015261518a8161514e565b9050919050565b7f57616c6c657420776f756c6420657863656564204541206c696d697400000000600082015250565b60006151c7601c83613f4c565b91506151d282615191565b602082019050919050565b600060208201905081810360008301526151f6816151ba565b9050919050565b7f4561726c7920416363657373204c696d697420526561636865642e0000000000600082015250565b6000615233601b83613f4c565b915061523e826151fd565b602082019050919050565b6000602082019050818103600083015261526281615226565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006152c5602983613f4c565b91506152d082615269565b604082019050919050565b600060208201905081810360008301526152f4816152b8565b9050919050565b600082905092915050565b61531083836152fb565b67ffffffffffffffff811115615329576153286142b2565b5b6153338254614818565b61533e828285614e6e565b6000601f83116001811461536d576000841561535b578287013590505b6153658582614edf565b8655506153cd565b601f19841661537b86614d4f565b60005b828110156153a35784890135825560018201915060208501945060208101905061537e565b868310156153c057848901356153bc601f891682614ec1565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615432602a83613f4c565b915061543d826153d6565b604082019050919050565b6000602082019050818103600083015261546181615425565b9050919050565b600060408201905061547d6000830185614088565b61548a602083018461411e565b9392505050565b7f53616c65206973206e6f7420796574206f70656e2e0000000000000000000000600082015250565b60006154c7601583613f4c565b91506154d282615491565b602082019050919050565b600060208201905081810360008301526154f6816154ba565b9050919050565b7f57616c6c657420776f756c6420657863656564206d696e74206c696d69740000600082015250565b6000615533601e83613f4c565b915061553e826154fd565b602082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b7f507269636520776173206e6f7420636f72726563742e20506c6561736520736560008201527f6e6420776974682074686520726967687420616d6f756e74206f66204554482e602082015250565b60006155c5604083613f4c565b91506155d082615569565b604082019050919050565b600060208201905081810360008301526155f4816155b8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615631601983613f4c565b915061563c826155fb565b602082019050919050565b6000602082019050818103600083015261566081615624565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006156c3602f83613f4c565b91506156ce82615667565b604082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b600081905092915050565b600061570f82613f41565b61571981856156f9565b9350615729818560208601613f5d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061576b6005836156f9565b915061577682615735565b600582019050919050565b600061578d8285615704565b91506157998284615704565b91506157a48261575e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061580c602683613f4c565b9150615817826157b0565b604082019050919050565b6000602082019050818103600083015261583b816157ff565b9050919050565b600061584d82613ff3565b915061585883613ff3565b925082820261586681613ff3565b9150828204841483151761587d5761587c614c46565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006158be82613ff3565b91506158c983613ff3565b9250826158d9576158d8615884565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615940602183613f4c565b915061594b826158e4565b604082019050919050565b6000602082019050818103600083015261596f81615933565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006159d2602c83613f4c565b91506159dd82615976565b604082019050919050565b60006020820190508181036000830152615a01816159c5565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615a64602983613f4c565b9150615a6f82615a08565b604082019050919050565b60006020820190508181036000830152615a9381615a57565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615af6602483613f4c565b9150615b0182615a9a565b604082019050919050565b60006020820190508181036000830152615b2581615ae9565b9050919050565b6000615b3782613ff3565b9150615b4283613ff3565b9250828203905081811115615b5a57615b59614c46565b5b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615bbc603283613f4c565b9150615bc782615b60565b604082019050919050565b60006020820190508181036000830152615beb81615baf565b9050919050565b60008154615bff81614818565b615c0981866156f9565b94506001821660008114615c245760018114615c3957615c6c565b60ff1983168652811515820286019350615c6c565b615c4285614d4f565b60005b83811015615c6457815481890152600182019150602081019050615c45565b838801955050505b50505092915050565b6000615c818285615bf2565b9150615c8d8284615bf2565b91508190509392505050565b6000615ca482613ff3565b9150615caf83613ff3565b925082615cbf57615cbe615884565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615cf182615cca565b615cfb8185615cd5565b9350615d0b818560208601613f5d565b615d1481613f87565b840191505092915050565b6000608082019050615d346000830187614088565b615d416020830186614088565b615d4e604083018561411e565b8181036060830152615d608184615ce6565b905095945050505050565b600081519050615d7a81613eb2565b92915050565b600060208284031215615d9657615d95613e7c565b5b6000615da484828501615d6b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e12602083613f4c565b9150615e1d82615ddc565b602082019050919050565b60006020820190508181036000830152615e4181615e05565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e7e601c83613f4c565b9150615e8982615e48565b602082019050919050565b60006020820190508181036000830152615ead81615e71565b905091905056fea2646970667358221220f65a2572622cb00f410939656aed190dfd39b3cfa2567c9431376783cd2affc264736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80637fb74d1a11610175578063a246b3f3116100dc578063cd26d39a11610095578063e985e9c51161006f578063e985e9c514610aff578063f2fde38b14610b3c578063fb2f175614610b65578063fb63f59b14610ba2576102c9565b8063cd26d39a14610a82578063d35037e814610aab578063e15d6ec114610ad4576102c9565b8063a246b3f314610974578063aca540d71461099d578063b2420792146109da578063b742c6ce14610a05578063b88d4fde14610a1c578063c87b56dd14610a45576102c9565b80639247c44e1161012e5780639247c44e1461087357806395d89b411461089c57806398d5fdca146108c75780639b1f09f1146108f2578063a0712d681461092f578063a22cb4651461094b576102c9565b80637fb74d1a14610798578063806c12e5146107c1578063853828b6146107ea57806387ceff09146107f45780638da5cb5b1461081f57806391b7f5ed1461084a576102c9565b806339723bba1161023457806355f804b3116101ed5780636352211e116101c75780636352211e146106de5780636bff2c241461071b57806370a0823114610744578063715018a614610781576102c9565b806355f804b31461065c5780635a5f77a9146106855780635aa66840146106a1576102c9565b806339723bba1461052657806342842e0e14610551578063438b63001461057a5780634e211a43146105b75780634e962520146105f45780634f6ccce71461061f576102c9565b806311b7e5e71161028657806311b7e5e71461040457806318160ddd1461042d57806319acf877146104585780631aa347dc1461048357806323b872dd146104c05780632f745c59146104e9576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b314610373578063098194881461039c5780630ffb7ec6146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613ede565b610bcb565b6040516103029190613f26565b60405180910390f35b34801561031757600080fd5b50610320610c45565b60405161032d9190613fd1565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190614029565b610cd7565b60405161036a9190614097565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906140de565b610d5c565b005b3480156103a857600080fd5b506103b1610e73565b6040516103be919061412d565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190614029565b610e7d565b6040516103fb919061412d565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614029565b610f57565b005b34801561043957600080fd5b50610442610fdd565b60405161044f919061412d565b60405180910390f35b34801561046457600080fd5b5061046d610fea565b60405161047a9190613f26565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190614029565b610ffb565b6040516104b79190613fd1565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190614148565b611042565b005b3480156104f557600080fd5b50610510600480360381019061050b91906140de565b6110a2565b60405161051d919061412d565b60405180910390f35b34801561053257600080fd5b5061053b611147565b6040516105489190613f26565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190614148565b611161565b005b34801561058657600080fd5b506105a1600480360381019061059c919061419b565b611181565b6040516105ae9190614286565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061419b565b61128a565b6040516105eb919061412d565b60405180910390f35b34801561060057600080fd5b50610609611418565b604051610616919061412d565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614029565b611422565b604051610653919061412d565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e91906143dd565b611493565b005b61069f600480360381019061069a9190614029565b611522565b005b3480156106ad57600080fd5b506106c860048036038101906106c3919061419b565b6117e4565b6040516106d5919061412d565b60405180910390f35b3480156106ea57600080fd5b5061070560048036038101906107009190614029565b61182d565b6040516107129190614097565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d9190614486565b6118de565b005b34801561075057600080fd5b5061076b6004803603810190610766919061419b565b611970565b604051610778919061412d565b60405180910390f35b34801561078d57600080fd5b50610796611a27565b005b3480156107a457600080fd5b506107bf60048036038101906107ba9190614529565b611aaf565b005b3480156107cd57600080fd5b506107e860048036038101906107e39190614029565b611b41565b005b6107f2611bc7565b005b34801561080057600080fd5b50610809611c83565b604051610816919061412d565b60405180910390f35b34801561082b57600080fd5b50610834611c8b565b6040516108419190614097565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190614029565b611cb5565b005b34801561087f57600080fd5b5061089a6004803603810190610895919061419b565b611d3b565b005b3480156108a857600080fd5b506108b1611ee8565b6040516108be9190613fd1565b60405180910390f35b3480156108d357600080fd5b506108dc611f7a565b6040516108e9919061412d565b60405180910390f35b3480156108fe57600080fd5b506109196004803603810190610914919061419b565b611f84565b6040516109269190613f26565b60405180910390f35b61094960048036038101906109449190614029565b612032565b005b34801561095757600080fd5b50610972600480360381019061096d91906145a2565b6122c8565b005b34801561098057600080fd5b5061099b60048036038101906109969190614029565b612448565b005b3480156109a957600080fd5b506109c460048036038101906109bf9190614029565b6124ce565b6040516109d19190614097565b60405180910390f35b3480156109e657600080fd5b506109ef612516565b6040516109fc9190614097565b60405180910390f35b348015610a1157600080fd5b50610a1a612540565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190614683565b612723565b005b348015610a5157600080fd5b50610a6c6004803603810190610a679190614029565b612785565b604051610a799190613fd1565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061419b565b61282c565b005b348015610ab757600080fd5b50610ad26004803603810190610acd919061475c565b6128ec565b005b348015610ae057600080fd5b50610ae961297e565b604051610af6919061412d565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b2191906147a9565b612984565b604051610b339190613f26565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e919061419b565b612a18565b005b348015610b7157600080fd5b50610b8c6004803603810190610b87919061419b565b612b0f565b604051610b99919061412d565b60405180910390f35b348015610bae57600080fd5b50610bc96004803603810190610bc49190614029565b612b41565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3e5750610c3d82612bc7565b5b9050919050565b606060008054610c5490614818565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8090614818565b8015610ccd5780601f10610ca257610100808354040283529160200191610ccd565b820191906000526020600020905b815481529060010190602001808311610cb057829003601f168201915b5050505050905090565b6000610ce282612ca9565b610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d18906148bb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d678261182d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061494d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610df6612d15565b73ffffffffffffffffffffffffffffffffffffffff161480610e255750610e2481610e1f612d15565b612984565b5b610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906149df565b60405180910390fd5b610e6e8383612d1d565b505050565b6000601754905090565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663f8b2cb4f336040518263ffffffff1660e01b8152600401610ee09190614097565b602060405180830381865afa158015610efd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f219190614a14565b90506000811115610f4157610f3860105485612dd6565b92505050610f52565b610f4d600f5485612dd6565b925050505b919050565b610f5f612d15565b73ffffffffffffffffffffffffffffffffffffffff16610f7d611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90614a8d565b60405180910390fd5b8060118190555050565b6000600880549050905090565b6000601f8054905060175414905090565b60606020828154811061101157611010614aad565b5b906000526020600020015460405160200161102c9190614b07565b6040516020818303038152906040529050919050565b61105361104d612d15565b82612e50565b611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614b94565b60405180910390fd5b61109d838383612f2e565b505050565b60006110ad83611970565b82106110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590614c26565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601354421015801561115c575060125442105b905090565b61117c83838360405180602001604052806000815250612723565b505050565b6060600061118e83611970565b9050600081036111ea57600067ffffffffffffffff8111156111b3576111b26142b2565b5b6040519080825280602002602001820160405280156111e15781602001602082028036833780820191505090505b50915050611285565b60008167ffffffffffffffff811115611206576112056142b2565b5b6040519080825280602002602001820160405280156112345781602001602082028036833780820191505090505b50905060005b8281101561127e5761124c85826110a2565b82828151811061125f5761125e614aad565b5b602002602001018181525050808061127690614c75565b91505061123a565b5080925050505b919050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461140c576112ef83611f84565b801561133b5750601654601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b801561134a5750601554601454105b8015611357575060125442105b8015611364575060115442105b1561137457601354915050611413565b60008173ffffffffffffffffffffffffffffffffffffffff1663f8b2cb4f856040518263ffffffff1660e01b81526004016113af9190614097565b602060405180830381865afa1580156113cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f09190614a14565b111561140157601254915050611413565b601154915050611413565b6011549150505b919050565b6000601454905090565b600061142c610fdd565b821061146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490614d2f565b60405180910390fd5b6008828154811061148157611480614aad565b5b90600052602060002001549050919050565b61149b612d15565b73ffffffffffffffffffffffffffffffffffffffff166114b9611c8b565b73ffffffffffffffffffffffffffffffffffffffff161461150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690614a8d565b60405180910390fd5b80601a908161151e9190614efb565b5050565b600061152c610fdd565b905060135442101561153d57600080fd5b61154633611f84565b611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061503f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115bd57600080fd5b610d058110611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f8906150ab565b60405180910390fd5b610d05828261161091906150cb565b1115611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890615171565b60405180910390fd5b60165482601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461169f91906150cb565b11156116e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d7906151dd565b60405180910390fd5b601554601454836116f191906150cb565b1115611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990615249565b60405180910390fd5b60005b828110156117df576000611747610fdd565b9050610d058110156117cb5761175d3382613189565b601d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906117ad90614c75565b9190505550601460008154809291906117c590614c75565b91905055505b5080806117d790614c75565b915050611735565b505050565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906152db565b60405180910390fd5b80915050919050565b6118e6612d15565b73ffffffffffffffffffffffffffffffffffffffff16611904611c8b565b73ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195190614a8d565b60405180910390fd5b81816019918261196b929190615306565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790615448565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a2f612d15565b73ffffffffffffffffffffffffffffffffffffffff16611a4d611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9a90614a8d565b60405180910390fd5b611aad60006131a7565b565b611ab7612d15565b73ffffffffffffffffffffffffffffffffffffffff16611ad5611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2290614a8d565b60405180910390fd5b818160209190611b3c929190613d4b565b505050565b611b49612d15565b73ffffffffffffffffffffffffffffffffffffffff16611b67611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb490614a8d565b60405180910390fd5b8060108190555050565b611bcf612d15565b73ffffffffffffffffffffffffffffffffffffffff16611bed611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90614a8d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611c8157600080fd5b565b600042905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611cbd612d15565b73ffffffffffffffffffffffffffffffffffffffff16611cdb611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890614a8d565b60405180910390fd5b80600f8190555050565b611d43612d15565b73ffffffffffffffffffffffffffffffffffffffff16611d61611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90614a8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e4e5780600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636541f6d330600d546040518363ffffffff1660e01b8152600401611eb2929190615468565b600060405180830381600087803b158015611ecc57600080fd5b505af1158015611ee0573d6000803e3d6000fd5b505050505050565b606060018054611ef790614818565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2390614818565b8015611f705780601f10611f4557610100808354040283529160200191611f70565b820191906000526020600020905b815481529060010190602001808311611f5357829003601f168201915b5050505050905090565b6000600f54905090565b600080600090505b601f8054905081101561202757601f8181548110611fad57611fac614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361201457600191505061202d565b808061201f90614c75565b915050611f8c565b50600090505b919050565b600061203c610fdd565b90503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461207657600080fd5b61207f3361128a565b4210156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906154dd565b60405180910390fd5b610d058110612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906150ab565b60405180910390fd5b610d05828261211491906150cb565b1115612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90615171565b60405180910390fd5b600d5482601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121a391906150cb565b11156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90615549565b60405180910390fd5b6121ed82610e7d565b341461222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906155db565b60405180910390fd5b60005b828110156122c3576000612243610fdd565b9050610d058110156122af576122593382613189565b601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906122a990614c75565b91905055505b5080806122bb90614c75565b915050612231565b505050565b6122d0612d15565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361233d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233490615647565b60405180910390fd5b806005600061234a612d15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123f7612d15565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161243c9190613f26565b60405180910390a35050565b612450612d15565b73ffffffffffffffffffffffffffffffffffffffff1661246e611c8b565b73ffffffffffffffffffffffffffffffffffffffff16146124c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bb90614a8d565b60405180910390fd5b8060128190555050565b6000601f82815481106124e4576124e3614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612548612d15565b73ffffffffffffffffffffffffffffffffffffffff16612566611c8b565b73ffffffffffffffffffffffffffffffffffffffff16146125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614a8d565b60405180910390fd5b600060175490505b60001515601e6000601f84815481106125e0576125df614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036126f1576001601e6000601f848154811061267457612673614aad565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6001816126fe91906150cb565b90506175305a1180156127155750601f8054905081105b6125c4578060178190555050565b61273461272e612d15565b83612e50565b612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90614b94565b60405180910390fd5b61277f8484848461326d565b50505050565b606061279082612ca9565b6127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c6906156d9565b60405180910390fd5b60006127d96132c9565b905060008151116127f95760405180602001604052806000815250612824565b80612803846132f4565b604051602001612814929190615781565b6040516020818303038152906040525b915050919050565b612834612d15565b73ffffffffffffffffffffffffffffffffffffffff16612852611c8b565b73ffffffffffffffffffffffffffffffffffffffff16146128a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289f90614a8d565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6128f4612d15565b73ffffffffffffffffffffffffffffffffffffffff16612912611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f90614a8d565b60405180910390fd5b8181601f9190612979929190613d98565b505050565b610d0581565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612a20612d15565b73ffffffffffffffffffffffffffffffffffffffff16612a3e611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b90614a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa90615822565b60405180910390fd5b612b0c816131a7565b50565b600080612b1b8361128a565b9050804210612b2e576000915050612b3c565b612b388142613454565b9150505b919050565b612b49612d15565b73ffffffffffffffffffffffffffffffffffffffff16612b67611c8b565b73ffffffffffffffffffffffffffffffffffffffff1614612bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb490614a8d565b60405180910390fd5b8060138190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c9257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ca25750612ca18261349e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d908361182d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808303612de85760009050612e4a565b60008284612df69190615842565b9050828482612e0591906158b3565b14612e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3c90615956565b60405180910390fd5b809150505b92915050565b6000612e5b82612ca9565b612e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e91906159e8565b60405180910390fd5b6000612ea58361182d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f1457508373ffffffffffffffffffffffffffffffffffffffff16612efc84610cd7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f255750612f248185612984565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f4e8261182d565b73ffffffffffffffffffffffffffffffffffffffff1614612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b90615a7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300a90615b0c565b60405180910390fd5b61301e838383613508565b613029600082612d1d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130799190615b2c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130d091906150cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131a382826040518060200160405280600081525061361a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613278848484612f2e565b61328484848484613675565b6132c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ba90615bd2565b60405180910390fd5b50505050565b60606019601a6040516020016132e0929190615c75565b604051602081830303815290604052905090565b60606000820361333b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061344f565b600082905060005b6000821461336d57808061335690614c75565b915050600a8261336691906158b3565b9150613343565b60008167ffffffffffffffff811115613389576133886142b2565b5b6040519080825280601f01601f1916602001820160405280156133bb5781602001600182028036833780820191505090505b5090505b60008514613448576001826133d49190615b2c565b9150600a856133e39190615c99565b60306133ef91906150cb565b60f81b81838151811061340557613404614aad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344191906158b3565b94506133bf565b8093505050505b919050565b600061349683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506137fc565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613513838383613860565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135555761355081613865565b613594565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135935761359283826138ae565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135d6576135d181613a1b565b613615565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613614576136138282613aec565b5b5b505050565b6136248383613b6b565b6136316000848484613675565b613670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366790615bd2565b60405180910390fd5b505050565b60006136968473ffffffffffffffffffffffffffffffffffffffff16613d38565b156137ef578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136bf612d15565b8786866040518563ffffffff1660e01b81526004016136e19493929190615d1f565b6020604051808303816000875af192505050801561371d57506040513d601f19601f8201168201806040525081019061371a9190615d80565b60015b61379f573d806000811461374d576040519150601f19603f3d011682016040523d82523d6000602084013e613752565b606091505b506000815103613797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378e90615bd2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137f4565b600190505b949350505050565b6000838311158290613844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383b9190613fd1565b60405180910390fd5b50600083856138539190615b2c565b9050809150509392505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138bb84611970565b6138c59190615b2c565b90506000600760008481526020019081526020016000205490508181146139aa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a2f9190615b2c565b9050600060096000848152602001908152602001600020549050600060088381548110613a5f57613a5e614aad565b5b906000526020600020015490508060088381548110613a8157613a80614aad565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ad057613acf615dad565b5b6001900381819060005260206000200160009055905550505050565b6000613af783611970565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bd190615e28565b60405180910390fd5b613be381612ca9565b15613c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c1a90615e94565b60405180910390fd5b613c2f60008383613508565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c7f91906150cb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054828255906000526020600020908101928215613d87579160200282015b82811115613d86578235825591602001919060010190613d6b565b5b509050613d949190613e38565b5090565b828054828255906000526020600020908101928215613e27579160200282015b82811115613e2657823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613db8565b5b509050613e349190613e55565b5090565b5b80821115613e51576000816000905550600101613e39565b5090565b5b80821115613e6e576000816000905550600101613e56565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ebb81613e86565b8114613ec657600080fd5b50565b600081359050613ed881613eb2565b92915050565b600060208284031215613ef457613ef3613e7c565b5b6000613f0284828501613ec9565b91505092915050565b60008115159050919050565b613f2081613f0b565b82525050565b6000602082019050613f3b6000830184613f17565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f7b578082015181840152602081019050613f60565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fa382613f41565b613fad8185613f4c565b9350613fbd818560208601613f5d565b613fc681613f87565b840191505092915050565b60006020820190508181036000830152613feb8184613f98565b905092915050565b6000819050919050565b61400681613ff3565b811461401157600080fd5b50565b60008135905061402381613ffd565b92915050565b60006020828403121561403f5761403e613e7c565b5b600061404d84828501614014565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408182614056565b9050919050565b61409181614076565b82525050565b60006020820190506140ac6000830184614088565b92915050565b6140bb81614076565b81146140c657600080fd5b50565b6000813590506140d8816140b2565b92915050565b600080604083850312156140f5576140f4613e7c565b5b6000614103858286016140c9565b925050602061411485828601614014565b9150509250929050565b61412781613ff3565b82525050565b6000602082019050614142600083018461411e565b92915050565b60008060006060848603121561416157614160613e7c565b5b600061416f868287016140c9565b9350506020614180868287016140c9565b925050604061419186828701614014565b9150509250925092565b6000602082840312156141b1576141b0613e7c565b5b60006141bf848285016140c9565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141fd81613ff3565b82525050565b600061420f83836141f4565b60208301905092915050565b6000602082019050919050565b6000614233826141c8565b61423d81856141d3565b9350614248836141e4565b8060005b838110156142795781516142608882614203565b975061426b8361421b565b92505060018101905061424c565b5085935050505092915050565b600060208201905081810360008301526142a08184614228565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142ea82613f87565b810181811067ffffffffffffffff82111715614309576143086142b2565b5b80604052505050565b600061431c613e72565b905061432882826142e1565b919050565b600067ffffffffffffffff821115614348576143476142b2565b5b61435182613f87565b9050602081019050919050565b82818337600083830152505050565b600061438061437b8461432d565b614312565b90508281526020810184848401111561439c5761439b6142ad565b5b6143a784828561435e565b509392505050565b600082601f8301126143c4576143c36142a8565b5b81356143d484826020860161436d565b91505092915050565b6000602082840312156143f3576143f2613e7c565b5b600082013567ffffffffffffffff81111561441157614410613e81565b5b61441d848285016143af565b91505092915050565b600080fd5b600080fd5b60008083601f840112614446576144456142a8565b5b8235905067ffffffffffffffff81111561446357614462614426565b5b60208301915083600182028301111561447f5761447e61442b565b5b9250929050565b6000806020838503121561449d5761449c613e7c565b5b600083013567ffffffffffffffff8111156144bb576144ba613e81565b5b6144c785828601614430565b92509250509250929050565b60008083601f8401126144e9576144e86142a8565b5b8235905067ffffffffffffffff81111561450657614505614426565b5b6020830191508360208202830111156145225761452161442b565b5b9250929050565b600080602083850312156145405761453f613e7c565b5b600083013567ffffffffffffffff81111561455e5761455d613e81565b5b61456a858286016144d3565b92509250509250929050565b61457f81613f0b565b811461458a57600080fd5b50565b60008135905061459c81614576565b92915050565b600080604083850312156145b9576145b8613e7c565b5b60006145c7858286016140c9565b92505060206145d88582860161458d565b9150509250929050565b600067ffffffffffffffff8211156145fd576145fc6142b2565b5b61460682613f87565b9050602081019050919050565b6000614626614621846145e2565b614312565b905082815260208101848484011115614642576146416142ad565b5b61464d84828561435e565b509392505050565b600082601f83011261466a576146696142a8565b5b813561467a848260208601614613565b91505092915050565b6000806000806080858703121561469d5761469c613e7c565b5b60006146ab878288016140c9565b94505060206146bc878288016140c9565b93505060406146cd87828801614014565b925050606085013567ffffffffffffffff8111156146ee576146ed613e81565b5b6146fa87828801614655565b91505092959194509250565b60008083601f84011261471c5761471b6142a8565b5b8235905067ffffffffffffffff81111561473957614738614426565b5b6020830191508360208202830111156147555761475461442b565b5b9250929050565b6000806020838503121561477357614772613e7c565b5b600083013567ffffffffffffffff81111561479157614790613e81565b5b61479d85828601614706565b92509250509250929050565b600080604083850312156147c0576147bf613e7c565b5b60006147ce858286016140c9565b92505060206147df858286016140c9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061483057607f821691505b602082108103614843576148426147e9565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148a5602c83613f4c565b91506148b082614849565b604082019050919050565b600060208201905081810360008301526148d481614898565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614937602183613f4c565b9150614942826148db565b604082019050919050565b600060208201905081810360008301526149668161492a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006149c9603883613f4c565b91506149d48261496d565b604082019050919050565b600060208201905081810360008301526149f8816149bc565b9050919050565b600081519050614a0e81613ffd565b92915050565b600060208284031215614a2a57614a29613e7c565b5b6000614a38848285016149ff565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a77602083613f4c565b9150614a8282614a41565b602082019050919050565b60006020820190508181036000830152614aa681614a6a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b614b01614afc82614adc565b614ae6565b82525050565b6000614b138284614af0565b60208201915081905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614b7e603183613f4c565b9150614b8982614b22565b604082019050919050565b60006020820190508181036000830152614bad81614b71565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614c10602b83613f4c565b9150614c1b82614bb4565b604082019050919050565b60006020820190508181036000830152614c3f81614c03565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c8082613ff3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614cb257614cb1614c46565b5b600182019050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614d19602c83613f4c565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614db17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614d74565b614dbb8683614d74565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614df8614df3614dee84613ff3565b614dd3565b613ff3565b9050919050565b6000819050919050565b614e1283614ddd565b614e26614e1e82614dff565b848454614d81565b825550505050565b600090565b614e3b614e2e565b614e46818484614e09565b505050565b5b81811015614e6a57614e5f600082614e33565b600181019050614e4c565b5050565b601f821115614eaf57614e8081614d4f565b614e8984614d64565b81016020851015614e98578190505b614eac614ea485614d64565b830182614e4b565b50505b505050565b600082821c905092915050565b6000614ed260001984600802614eb4565b1980831691505092915050565b6000614eeb8383614ec1565b9150826002028217905092915050565b614f0482613f41565b67ffffffffffffffff811115614f1d57614f1c6142b2565b5b614f278254614818565b614f32828285614e6e565b600060209050601f831160018114614f655760008415614f53578287015190505b614f5d8582614edf565b865550614fc5565b601f198416614f7386614d4f565b60005b82811015614f9b57848901518255600182019150602085019450602081019050614f76565b86831015614fb85784890151614fb4601f891682614ec1565b8355505b6001600288020188555050505b505050505050565b7f57616c6c6574204e6f7420417070726f76656420666f72204561726c7920416360008201527f6365737300000000000000000000000000000000000000000000000000000000602082015250565b6000615029602483613f4c565b915061503482614fcd565b604082019050919050565b600060208201905081810360008301526150588161501c565b9050919050565b7f416c6c20526562656c732068617665206265656e20436c61696d65642e000000600082015250565b6000615095601d83613f4c565b91506150a08261505f565b602082019050919050565b600060208201905081810360008301526150c481615088565b9050919050565b60006150d682613ff3565b91506150e183613ff3565b92508282019050808211156150f9576150f8614c46565b5b92915050565b7f546865726520617265206e6f7420656e6f75676820526562656c73206176616960008201527f6c61626c65000000000000000000000000000000000000000000000000000000602082015250565b600061515b602583613f4c565b9150615166826150ff565b604082019050919050565b6000602082019050818103600083015261518a8161514e565b9050919050565b7f57616c6c657420776f756c6420657863656564204541206c696d697400000000600082015250565b60006151c7601c83613f4c565b91506151d282615191565b602082019050919050565b600060208201905081810360008301526151f6816151ba565b9050919050565b7f4561726c7920416363657373204c696d697420526561636865642e0000000000600082015250565b6000615233601b83613f4c565b915061523e826151fd565b602082019050919050565b6000602082019050818103600083015261526281615226565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006152c5602983613f4c565b91506152d082615269565b604082019050919050565b600060208201905081810360008301526152f4816152b8565b9050919050565b600082905092915050565b61531083836152fb565b67ffffffffffffffff811115615329576153286142b2565b5b6153338254614818565b61533e828285614e6e565b6000601f83116001811461536d576000841561535b578287013590505b6153658582614edf565b8655506153cd565b601f19841661537b86614d4f565b60005b828110156153a35784890135825560018201915060208501945060208101905061537e565b868310156153c057848901356153bc601f891682614ec1565b8355505b6001600288020188555050505b50505050505050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000615432602a83613f4c565b915061543d826153d6565b604082019050919050565b6000602082019050818103600083015261546181615425565b9050919050565b600060408201905061547d6000830185614088565b61548a602083018461411e565b9392505050565b7f53616c65206973206e6f7420796574206f70656e2e0000000000000000000000600082015250565b60006154c7601583613f4c565b91506154d282615491565b602082019050919050565b600060208201905081810360008301526154f6816154ba565b9050919050565b7f57616c6c657420776f756c6420657863656564206d696e74206c696d69740000600082015250565b6000615533601e83613f4c565b915061553e826154fd565b602082019050919050565b6000602082019050818103600083015261556281615526565b9050919050565b7f507269636520776173206e6f7420636f72726563742e20506c6561736520736560008201527f6e6420776974682074686520726967687420616d6f756e74206f66204554482e602082015250565b60006155c5604083613f4c565b91506155d082615569565b604082019050919050565b600060208201905081810360008301526155f4816155b8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615631601983613f4c565b915061563c826155fb565b602082019050919050565b6000602082019050818103600083015261566081615624565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006156c3602f83613f4c565b91506156ce82615667565b604082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b600081905092915050565b600061570f82613f41565b61571981856156f9565b9350615729818560208601613f5d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061576b6005836156f9565b915061577682615735565b600582019050919050565b600061578d8285615704565b91506157998284615704565b91506157a48261575e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061580c602683613f4c565b9150615817826157b0565b604082019050919050565b6000602082019050818103600083015261583b816157ff565b9050919050565b600061584d82613ff3565b915061585883613ff3565b925082820261586681613ff3565b9150828204841483151761587d5761587c614c46565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006158be82613ff3565b91506158c983613ff3565b9250826158d9576158d8615884565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615940602183613f4c565b915061594b826158e4565b604082019050919050565b6000602082019050818103600083015261596f81615933565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006159d2602c83613f4c565b91506159dd82615976565b604082019050919050565b60006020820190508181036000830152615a01816159c5565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615a64602983613f4c565b9150615a6f82615a08565b604082019050919050565b60006020820190508181036000830152615a9381615a57565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615af6602483613f4c565b9150615b0182615a9a565b604082019050919050565b60006020820190508181036000830152615b2581615ae9565b9050919050565b6000615b3782613ff3565b9150615b4283613ff3565b9250828203905081811115615b5a57615b59614c46565b5b92915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615bbc603283613f4c565b9150615bc782615b60565b604082019050919050565b60006020820190508181036000830152615beb81615baf565b9050919050565b60008154615bff81614818565b615c0981866156f9565b94506001821660008114615c245760018114615c3957615c6c565b60ff1983168652811515820286019350615c6c565b615c4285614d4f565b60005b83811015615c6457815481890152600182019150602081019050615c45565b838801955050505b50505092915050565b6000615c818285615bf2565b9150615c8d8284615bf2565b91508190509392505050565b6000615ca482613ff3565b9150615caf83613ff3565b925082615cbf57615cbe615884565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615cf182615cca565b615cfb8185615cd5565b9350615d0b818560208601613f5d565b615d1481613f87565b840191505092915050565b6000608082019050615d346000830187614088565b615d416020830186614088565b615d4e604083018561411e565b8181036060830152615d608184615ce6565b905095945050505050565b600081519050615d7a81613eb2565b92915050565b600060208284031215615d9657615d95613e7c565b5b6000615da484828501615d6b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e12602083613f4c565b9150615e1d82615ddc565b602082019050919050565b60006020820190508181036000830152615e4181615e05565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e7e601c83613f4c565b9150615e8982615e48565b602082019050919050565b60006020820190508181036000830152615ead81615e71565b905091905056fea2646970667358221220f65a2572622cb00f410939656aed190dfd39b3cfa2567c9431376783cd2affc264736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47757:9200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39346:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21435:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23002:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22525:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53902:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52882:408;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50712:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39986:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53781:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50359:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23892:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39654:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50830:325;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24302:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56397:426;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51161:698;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54279:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40176:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49620:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54393:1096;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49495:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21129:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49380:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20859:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47120:94;;;;;;;;;;;;;:::i;:::-;;50254:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52357:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56831:123;;;:::i;:::-;;51865:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46469:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52254:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52562:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21604:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52474:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54004:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55496:893;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23295:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50605:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49844:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49278:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53300:473;;;;;;;;;;;;;:::i;:::-;;24558:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21779:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49966:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49730:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48046:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23661:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47369:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51962:286;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50492:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39346:224;39448:4;39487:35;39472:50;;;:11;:50;;;;:90;;;;39526:36;39550:11;39526:23;:36::i;:::-;39472:90;39465:97;;39346:224;;;:::o;21435:100::-;21489:13;21522:5;21515:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21435:100;:::o;23002:221::-;23078:7;23106:16;23114:7;23106;:16::i;:::-;23098:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23191:15;:24;23207:7;23191:24;;;;;;;;;;;;;;;;;;;;;23184:31;;23002:221;;;:::o;22525:411::-;22606:13;22622:23;22637:7;22622:14;:23::i;:::-;22606:39;;22670:5;22664:11;;:2;:11;;;22656:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22764:5;22748:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22773:37;22790:5;22797:12;:10;:12::i;:::-;22773:16;:37::i;:::-;22748:62;22726:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22907:21;22916:2;22920:7;22907:8;:21::i;:::-;22595:341;22525:411;;:::o;53902:94::-;53954:7;53980:8;;53973:15;;53902:94;:::o;52882:408::-;52950:7;52969:27;53013:14;;;;;;;;;;;52969:59;;53039:24;53066:13;:24;;;53091:10;53066:36;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53039:63;;53135:1;53116:16;:20;53113:170;;;53157:40;53170:12;;53183:13;53157:12;:40::i;:::-;53150:47;;;;;;53113:170;53237:34;53250:6;;53257:13;53237:12;:34::i;:::-;53230:41;;;;52882:408;;;;:::o;50712:101::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50800:5:::1;50782:15;:23;;;;50712:101:::0;:::o;39986:113::-;40047:7;40074:10;:17;;;;40067:24;;39986:113;:::o;53781:115::-;53833:4;53870:10;:17;;;;53857:8;;:31;53850:38;;53781:115;:::o;50359:126::-;50406:13;50462:10;50473:1;50462:13;;;;;;;;:::i;:::-;;;;;;;;;;50445:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;50431:46;;50359:126;;;:::o;23892:339::-;24087:41;24106:12;:10;:12::i;:::-;24120:7;24087:18;:41::i;:::-;24079:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24195:28;24205:4;24211:2;24215:7;24195:9;:28::i;:::-;23892:339;;;:::o;39654:256::-;39751:7;39787:23;39804:5;39787:16;:23::i;:::-;39779:5;:31;39771:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39876:12;:19;39889:5;39876:19;;;;;;;;;;;;;;;:26;39896:5;39876:26;;;;;;;;;;;;39869:33;;39654:256;;;;:::o;50830:325::-;50875:4;50918:16;;50899:15;:35;;:72;;;;;50956:15;;50938;:33;50899:72;50891:81;;50830:325;:::o;24302:185::-;24440:39;24457:4;24463:2;24467:7;24440:39;;;;;;;;;;;;:16;:39::i;:::-;24302:185;;;:::o;56397:426::-;56457:16;56486:18;56507:17;56517:6;56507:9;:17::i;:::-;56486:38;;56553:1;56539:10;:15;56535:71;;56592:1;56578:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56571:23;;;;;56535:71;56618:25;56660:10;56646:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56618:53;;56687:9;56682:108;56702:10;56698:1;:14;56682:108;;;56748:30;56768:6;56776:1;56748:19;:30::i;:::-;56734:8;56743:1;56734:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;56714:3;;;;;:::i;:::-;;;;56682:108;;;;56807:8;56800:15;;;;56397:426;;;;:::o;51161:698::-;51223:7;51243:15;51275:14;;;;;;;;;;;51243:47;;51319:1;51304:17;;:4;:17;;;51301:551;;51342:25;51362:4;51342:19;:25::i;:::-;:64;;;;;51388:18;;51371:9;:15;51381:4;51371:15;;;;;;;;;;;;;;;;:35;51342:64;:110;;;;;51432:20;;51410:19;;:42;51342:110;:147;;;;;51474:15;;51456;:33;51342:147;:184;;;;;51511:15;;51493;:33;51342:184;51338:448;;;51553:16;;51546:23;;;;;51338:448;51633:1;51612;:12;;;51625:4;51612:18;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:22;51609:162;;;51665:15;;51658:22;;;;;51609:162;51736:15;;51729:22;;;;;51301:551;51825:15;;51818:22;;;51161:698;;;;:::o;54279:106::-;54332:7;54358:19;;54351:26;;54279:106;:::o;40176:233::-;40251:7;40287:30;:28;:30::i;:::-;40279:5;:38;40271:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40384:10;40395:5;40384:17;;;;;;;;:::i;:::-;;;;;;;;;;40377:24;;40176:233;;;:::o;49620:102::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49707:7:::1;49691:13;:23;;;;;;:::i;:::-;;49620:102:::0;:::o;54393:1096::-;54460:17;54480:13;:11;:13::i;:::-;54460:33;;54531:16;;54512:15;:35;;54504:44;;;;;;54567:31;54587:10;54567:19;:31::i;:::-;54559:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;54670:10;54657:23;;:9;:23;;;54649:32;;;;;;48083:4;54700:9;:22;54692:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48083:4;54787:6;54775:9;:18;;;;:::i;:::-;:32;;54767:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54901:18;;54891:6;54867:9;:21;54877:10;54867:21;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:52;;54859:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;55003:20;;54980:19;;54971:6;:28;;;;:::i;:::-;:52;;54963:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;55203:6;55199:283;55219:6;55215:1;:10;55199:283;;;55247:14;55264:13;:11;:13::i;:::-;55247:30;;48083:4;55296:9;:22;55292:179;;;55339:32;55349:10;55361:9;55339;:32::i;:::-;55390:9;:21;55400:10;55390:21;;;;;;;;;;;;;;;;:24;;;;;;;;;:::i;:::-;;;;;;55433:19;;:22;;;;;;;;;:::i;:::-;;;;;;55292:179;55232:250;55227:3;;;;;:::i;:::-;;;;55199:283;;;;54449:1040;54393:1096;:::o;49495:119::-;49563:7;49590:9;:16;49600:5;49590:16;;;;;;;;;;;;;;;;49583:23;;49495:119;;;:::o;21129:239::-;21201:7;21221:13;21237:7;:16;21245:7;21237:16;;;;;;;;;;;;;;;;;;;;;21221:32;;21289:1;21272:19;;:5;:19;;;21264:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21355:5;21348:12;;;21129:239;;;:::o;49380:107::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49470:9:::1;;49457:10;:22;;;;;;;:::i;:::-;;49380:107:::0;;:::o;20859:208::-;20931:7;20976:1;20959:19;;:5;:19;;;20951:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21043:9;:16;21053:5;21043:16;;;;;;;;;;;;;;;;21036:23;;20859:208;;;:::o;47120:94::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47185:21:::1;47203:1;47185:9;:21::i;:::-;47120:94::o:0;50254:99::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50341:4:::1;;50328:10;:17;;;;;;;:::i;:::-;;50254:99:::0;;:::o;52357:109::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52446:12:::1;52431;:27;;;;52357:109:::0;:::o;56831:123::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56906:10:::1;56898:24;;:47;56923:21;56898:47;;;;;;;;;;;;;;;;;;;;;;;56890:56;;;::::0;::::1;;56831:123::o:0;51865:89::-;51910:7;51937:15;51930:22;;51865:89;:::o;46469:87::-;46515:7;46542:6;;;;;;;;;;;46535:13;;46469:87;:::o;52254:97::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52331:12:::1;52322:6;:21;;;;52254:97:::0;:::o;52562:308::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52661:10:::1;52643:28;;:14;;;;;;;;;;;:28;;;52640:86;;52704:10;52687:14;;:27;;;;;;;;;;;;;;;;;;52640:86;52736:27;52780:14;;;;;;;;;;;52736:59;;52806:13;:26;;;52841:4;52847:14;;52806:56;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52629:241;52562:308:::0;:::o;21604:104::-;21660:13;21693:7;21686:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21604:104;:::o;52474:82::-;52515:7;52542:6;;52535:13;;52474:82;:::o;54004:269::-;54076:4;54096:9;54108:1;54096:13;;54092:151;54115:10;:17;;;;54111:1;:21;54092:151;;;54172:10;54183:1;54172:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54156:29;;:12;:29;;;54152:80;;54212:4;54205:11;;;;;54152:80;54133:3;;;;;:::i;:::-;;;;54092:151;;;;54260:5;54253:12;;54004:269;;;;:::o;55496:893::-;55552:17;55572:13;:11;:13::i;:::-;55552:33;;55617:10;55604:23;;:9;:23;;;55596:32;;;;;;55666:29;55684:10;55666:17;:29::i;:::-;55647:15;:48;;55639:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;48083:4;55740:9;:22;55732:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48083:4;55827:6;55815:9;:18;;;;:::i;:::-;:32;;55807:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;55945:14;;55935:6;55907:13;:25;55921:10;55907:25;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:52;;55899:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;56033:22;56048:6;56033:14;:22::i;:::-;56020:9;:35;56012:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56140:6;56136:246;56156:6;56152:1;:10;56136:246;;;56184:14;56201:13;:11;:13::i;:::-;56184:30;;48083:4;56233:9;:22;56229:142;;;56276:32;56286:10;56298:9;56276;:32::i;:::-;56327:13;:25;56341:10;56327:25;;;;;;;;;;;;;;;;:28;;;;;;;;;:::i;:::-;;;;;;56229:142;56169:213;56164:3;;;;;:::i;:::-;;;;56136:246;;;;55541:848;55496:893;:::o;23295:295::-;23410:12;:10;:12::i;:::-;23398:24;;:8;:24;;;23390:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23510:8;23465:18;:32;23484:12;:10;:12::i;:::-;23465:32;;;;;;;;;;;;;;;:42;23498:8;23465:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23563:8;23534:48;;23549:12;:10;:12::i;:::-;23534:48;;;23573:8;23534:48;;;;;;:::i;:::-;;;;;;;;23295:295;;:::o;50605:101::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50693:5:::1;50675:15;:23;;;;50605:101:::0;:::o;49844:114::-;49905:7;49931:10;49942:7;49931:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49924:26;;49844:114;;;:::o;49278:96::-;49326:7;49352:14;;;;;;;;;;;49345:21;;49278:96;:::o;53300:473::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53356:21:::1;53380:8;;53356:32;;53468:263;53535:5;53489:51;;:15;:42;53505:10;53516:13;53505:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53489:42;;;;;;;;;;;;;;;;;;;;;;;;;:51;;::::0;53485:139:::1;;53602:4;53557:15;:42;53573:10;53584:13;53573:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53557:42;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;53485:139;53654:1;53637:18;;;;;:::i;:::-;;;53687:5;53675:9;:17;:54;;;;;53712:10;:17;;;;53696:13;:33;53675:54;53468:263;;53752:13;53741:8;:24;;;;53345:428;53300:473::o:0;24558:328::-;24733:41;24752:12;:10;:12::i;:::-;24766:7;24733:18;:41::i;:::-;24725:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24839:39;24853:4;24859:2;24863:7;24872:5;24839:13;:39::i;:::-;24558:328;;;;:::o;21779:342::-;21852:13;21886:16;21894:7;21886;:16::i;:::-;21878:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21967:21;21991:10;:8;:10::i;:::-;21967:34;;22043:1;22025:7;22019:21;:25;:94;;;;;;;;;;;;;;;;;22071:7;22080:18;:7;:16;:18::i;:::-;22054:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22019:94;22012:101;;;21779:342;;;:::o;49966:107::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50061:4:::1;50044:14;;:21;;;;;;;;;;;;;;;;;;49966:107:::0;:::o;49730:104::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49820:6:::1;;49807:10;:19;;;;;;;:::i;:::-;;49730:104:::0;;:::o;48046:41::-;48083:4;48046:41;:::o;23661:164::-;23758:4;23782:18;:25;23801:5;23782:25;;;;;;;;;;;;;;;:35;23808:8;23782:35;;;;;;;;;;;;;;;;;;;;;;;;;23775:42;;23661:164;;;;:::o;47369:192::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47478:1:::1;47458:22;;:8;:22;;::::0;47450:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47534:19;47544:8;47534:9;:19::i;:::-;47369:192:::0;:::o;51962:286::-;52024:7;52043:16;52063:23;52081:4;52063:17;:23::i;:::-;52043:43;;52119:8;52100:15;:27;52097:144;;52150:1;52143:8;;;;;52097:144;52191:38;52204:8;52213:15;52191:12;:38::i;:::-;52184:45;;;51962:286;;;;:::o;50492:107::-;46700:12;:10;:12::i;:::-;46689:23;;:7;:5;:7::i;:::-;:23;;;46681:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50586:5:::1;50567:16;:24;;;;50492:107:::0;:::o;20490:305::-;20592:4;20644:25;20629:40;;;:11;:40;;;;:105;;;;20701:33;20686:48;;;:11;:48;;;;20629:105;:158;;;;20751:36;20775:11;20751:23;:36::i;:::-;20629:158;20609:178;;20490:305;;;:::o;26396:127::-;26461:4;26513:1;26485:30;;:7;:16;26493:7;26485:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26478:37;;26396:127;;;:::o;15991:98::-;16044:7;16071:10;16064:17;;15991:98;:::o;30378:174::-;30480:2;30453:15;:24;30469:7;30453:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30536:7;30532:2;30498:46;;30507:23;30522:7;30507:14;:23::i;:::-;30498:46;;;;;;;;;;;;30378:174;;:::o;34252:471::-;34310:7;34560:1;34555;:6;34551:47;;34585:1;34578:8;;;;34551:47;34610:9;34626:1;34622;:5;;;;:::i;:::-;34610:17;;34655:1;34650;34646;:5;;;;:::i;:::-;:10;34638:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;34714:1;34707:8;;;34252:471;;;;;:::o;26690:348::-;26783:4;26808:16;26816:7;26808;:16::i;:::-;26800:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26884:13;26900:23;26915:7;26900:14;:23::i;:::-;26884:39;;26953:5;26942:16;;:7;:16;;;:51;;;;26986:7;26962:31;;:20;26974:7;26962:11;:20::i;:::-;:31;;;26942:51;:87;;;;26997:32;27014:5;27021:7;26997:16;:32::i;:::-;26942:87;26934:96;;;26690:348;;;;:::o;29682:578::-;29841:4;29814:31;;:23;29829:7;29814:14;:23::i;:::-;:31;;;29806:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29924:1;29910:16;;:2;:16;;;29902:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29980:39;30001:4;30007:2;30011:7;29980:20;:39::i;:::-;30084:29;30101:1;30105:7;30084:8;:29::i;:::-;30145:1;30126:9;:15;30136:4;30126:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30174:1;30157:9;:13;30167:2;30157:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30205:2;30186:7;:16;30194:7;30186:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30244:7;30240:2;30225:27;;30234:4;30225:27;;;;;;;;;;;;29682:578;;;:::o;27380:110::-;27456:26;27466:2;27470:7;27456:26;;;;;;;;;;;;:9;:26::i;:::-;27380:110;;:::o;47569:173::-;47625:16;47644:6;;;;;;;;;;;47625:25;;47670:8;47661:6;;:17;;;;;;;;;;;;;;;;;;47725:8;47694:40;;47715:8;47694:40;;;;;;;;;;;;47614:128;47569:173;:::o;25768:315::-;25925:28;25935:4;25941:2;25945:7;25925:9;:28::i;:::-;25972:48;25995:4;26001:2;26005:7;26014:5;25972:22;:48::i;:::-;25964:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25768:315;;;;:::o;50081:161::-;50141:13;50208:10;50219:13;50191:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50177:57;;50081:161;:::o;16495:723::-;16551:13;16781:1;16772:5;:10;16768:53;;16799:10;;;;;;;;;;;;;;;;;;;;;16768:53;16831:12;16846:5;16831:20;;16862:14;16887:78;16902:1;16894:4;:9;16887:78;;16920:8;;;;;:::i;:::-;;;;16951:2;16943:10;;;;;:::i;:::-;;;16887:78;;;16975:19;17007:6;16997:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16975:39;;17025:154;17041:1;17032:5;:10;17025:154;;17069:1;17059:11;;;;;:::i;:::-;;;17136:2;17128:5;:10;;;;:::i;:::-;17115:2;:24;;;;:::i;:::-;17102:39;;17085:6;17092;17085:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17165:2;17156:11;;;;;:::i;:::-;;;17025:154;;;17203:6;17189:21;;;;;16495:723;;;;:::o;33336:136::-;33394:7;33421:43;33425:1;33428;33421:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;33414:50;;33336:136;;;;:::o;19029:157::-;19114:4;19153:25;19138:40;;;:11;:40;;;;19131:47;;19029:157;;;:::o;41022:589::-;41166:45;41193:4;41199:2;41203:7;41166:26;:45::i;:::-;41244:1;41228:18;;:4;:18;;;41224:187;;41263:40;41295:7;41263:31;:40::i;:::-;41224:187;;;41333:2;41325:10;;:4;:10;;;41321:90;;41352:47;41385:4;41391:7;41352:32;:47::i;:::-;41321:90;41224:187;41439:1;41425:16;;:2;:16;;;41421:183;;41458:45;41495:7;41458:36;:45::i;:::-;41421:183;;;41531:4;41525:10;;:2;:10;;;41521:83;;41552:40;41580:2;41584:7;41552:27;:40::i;:::-;41521:83;41421:183;41022:589;;;:::o;27717:321::-;27847:18;27853:2;27857:7;27847:5;:18::i;:::-;27898:54;27929:1;27933:2;27937:7;27946:5;27898:22;:54::i;:::-;27876:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27717:321;;;:::o;31117:803::-;31272:4;31293:15;:2;:13;;;:15::i;:::-;31289:624;;;31345:2;31329:36;;;31366:12;:10;:12::i;:::-;31380:4;31386:7;31395:5;31329:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31325:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31592:1;31575:6;:13;:18;31571:272;;31618:60;;;;;;;;;;:::i;:::-;;;;;;;;31571:272;31793:6;31787:13;31778:6;31774:2;31770:15;31763:38;31325:533;31462:45;;;31452:55;;;:6;:55;;;;31445:62;;;;;31289:624;31897:4;31890:11;;31117:803;;;;;;;:::o;33809:192::-;33895:7;33928:1;33923;:6;;33931:12;33915:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;33955:9;33971:1;33967;:5;;;;:::i;:::-;33955:17;;33992:1;33985:8;;;33809:192;;;;;:::o;32492:126::-;;;;:::o;42334:164::-;42438:10;:17;;;;42411:15;:24;42427:7;42411:24;;;;;;;;;;;:44;;;;42466:10;42482:7;42466:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42334:164;:::o;43125:988::-;43391:22;43441:1;43416:22;43433:4;43416:16;:22::i;:::-;:26;;;;:::i;:::-;43391:51;;43453:18;43474:17;:26;43492:7;43474:26;;;;;;;;;;;;43453:47;;43621:14;43607:10;:28;43603:328;;43652:19;43674:12;:18;43687:4;43674:18;;;;;;;;;;;;;;;:34;43693:14;43674:34;;;;;;;;;;;;43652:56;;43758:11;43725:12;:18;43738:4;43725:18;;;;;;;;;;;;;;;:30;43744:10;43725:30;;;;;;;;;;;:44;;;;43875:10;43842:17;:30;43860:11;43842:30;;;;;;;;;;;:43;;;;43637:294;43603:328;44027:17;:26;44045:7;44027:26;;;;;;;;;;;44020:33;;;44071:12;:18;44084:4;44071:18;;;;;;;;;;;;;;;:34;44090:14;44071:34;;;;;;;;;;;44064:41;;;43206:907;;43125:988;;:::o;44408:1079::-;44661:22;44706:1;44686:10;:17;;;;:21;;;;:::i;:::-;44661:46;;44718:18;44739:15;:24;44755:7;44739:24;;;;;;;;;;;;44718:45;;45090:19;45112:10;45123:14;45112:26;;;;;;;;:::i;:::-;;;;;;;;;;45090:48;;45176:11;45151:10;45162;45151:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45287:10;45256:15;:28;45272:11;45256:28;;;;;;;;;;;:41;;;;45428:15;:24;45444:7;45428:24;;;;;;;;;;;45421:31;;;45463:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44479:1008;;;44408:1079;:::o;41912:221::-;41997:14;42014:20;42031:2;42014:16;:20::i;:::-;41997:37;;42072:7;42045:12;:16;42058:2;42045:16;;;;;;;;;;;;;;;:24;42062:6;42045:24;;;;;;;;;;;:34;;;;42119:6;42090:17;:26;42108:7;42090:26;;;;;;;;;;;:35;;;;41986:147;41912:221;;:::o;28374:382::-;28468:1;28454:16;;:2;:16;;;28446:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28527:16;28535:7;28527;:16::i;:::-;28526:17;28518:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28589:45;28618:1;28622:2;28626:7;28589:20;:45::i;:::-;28664:1;28647:9;:13;28657:2;28647:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28695:2;28676:7;:16;28684:7;28676:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28740:7;28736:2;28715:33;;28732:1;28715:33;;;;;;;;;;;;28374:382;;:::o;8274:387::-;8334:4;8542:12;8609:7;8597:20;8589:28;;8652:1;8645:4;:8;8638:15;;;8274:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:114::-;6269:6;6303:5;6297:12;6287:22;;6202:114;;;:::o;6322:184::-;6421:11;6455:6;6450:3;6443:19;6495:4;6490:3;6486:14;6471:29;;6322:184;;;;:::o;6512:132::-;6579:4;6602:3;6594:11;;6632:4;6627:3;6623:14;6615:22;;6512:132;;;:::o;6650:108::-;6727:24;6745:5;6727:24;:::i;:::-;6722:3;6715:37;6650:108;;:::o;6764:179::-;6833:10;6854:46;6896:3;6888:6;6854:46;:::i;:::-;6932:4;6927:3;6923:14;6909:28;;6764:179;;;;:::o;6949:113::-;7019:4;7051;7046:3;7042:14;7034:22;;6949:113;;;:::o;7098:732::-;7217:3;7246:54;7294:5;7246:54;:::i;:::-;7316:86;7395:6;7390:3;7316:86;:::i;:::-;7309:93;;7426:56;7476:5;7426:56;:::i;:::-;7505:7;7536:1;7521:284;7546:6;7543:1;7540:13;7521:284;;;7622:6;7616:13;7649:63;7708:3;7693:13;7649:63;:::i;:::-;7642:70;;7735:60;7788:6;7735:60;:::i;:::-;7725:70;;7581:224;7568:1;7565;7561:9;7556:14;;7521:284;;;7525:14;7821:3;7814:10;;7222:608;;;7098:732;;;;:::o;7836:373::-;7979:4;8017:2;8006:9;8002:18;7994:26;;8066:9;8060:4;8056:20;8052:1;8041:9;8037:17;8030:47;8094:108;8197:4;8188:6;8094:108;:::i;:::-;8086:116;;7836:373;;;;:::o;8215:117::-;8324:1;8321;8314:12;8338:117;8447:1;8444;8437:12;8461:180;8509:77;8506:1;8499:88;8606:4;8603:1;8596:15;8630:4;8627:1;8620:15;8647:281;8730:27;8752:4;8730:27;:::i;:::-;8722:6;8718:40;8860:6;8848:10;8845:22;8824:18;8812:10;8809:34;8806:62;8803:88;;;8871:18;;:::i;:::-;8803:88;8911:10;8907:2;8900:22;8690:238;8647:281;;:::o;8934:129::-;8968:6;8995:20;;:::i;:::-;8985:30;;9024:33;9052:4;9044:6;9024:33;:::i;:::-;8934:129;;;:::o;9069:308::-;9131:4;9221:18;9213:6;9210:30;9207:56;;;9243:18;;:::i;:::-;9207:56;9281:29;9303:6;9281:29;:::i;:::-;9273:37;;9365:4;9359;9355:15;9347:23;;9069:308;;;:::o;9383:146::-;9480:6;9475:3;9470;9457:30;9521:1;9512:6;9507:3;9503:16;9496:27;9383:146;;;:::o;9535:425::-;9613:5;9638:66;9654:49;9696:6;9654:49;:::i;:::-;9638:66;:::i;:::-;9629:75;;9727:6;9720:5;9713:21;9765:4;9758:5;9754:16;9803:3;9794:6;9789:3;9785:16;9782:25;9779:112;;;9810:79;;:::i;:::-;9779:112;9900:54;9947:6;9942:3;9937;9900:54;:::i;:::-;9619:341;9535:425;;;;;:::o;9980:340::-;10036:5;10085:3;10078:4;10070:6;10066:17;10062:27;10052:122;;10093:79;;:::i;:::-;10052:122;10210:6;10197:20;10235:79;10310:3;10302:6;10295:4;10287:6;10283:17;10235:79;:::i;:::-;10226:88;;10042:278;9980:340;;;;:::o;10326:509::-;10395:6;10444:2;10432:9;10423:7;10419:23;10415:32;10412:119;;;10450:79;;:::i;:::-;10412:119;10598:1;10587:9;10583:17;10570:31;10628:18;10620:6;10617:30;10614:117;;;10650:79;;:::i;:::-;10614:117;10755:63;10810:7;10801:6;10790:9;10786:22;10755:63;:::i;:::-;10745:73;;10541:287;10326:509;;;;:::o;10841:117::-;10950:1;10947;10940:12;10964:117;11073:1;11070;11063:12;11101:553;11159:8;11169:6;11219:3;11212:4;11204:6;11200:17;11196:27;11186:122;;11227:79;;:::i;:::-;11186:122;11340:6;11327:20;11317:30;;11370:18;11362:6;11359:30;11356:117;;;11392:79;;:::i;:::-;11356:117;11506:4;11498:6;11494:17;11482:29;;11560:3;11552:4;11544:6;11540:17;11530:8;11526:32;11523:41;11520:128;;;11567:79;;:::i;:::-;11520:128;11101:553;;;;;:::o;11660:529::-;11731:6;11739;11788:2;11776:9;11767:7;11763:23;11759:32;11756:119;;;11794:79;;:::i;:::-;11756:119;11942:1;11931:9;11927:17;11914:31;11972:18;11964:6;11961:30;11958:117;;;11994:79;;:::i;:::-;11958:117;12107:65;12164:7;12155:6;12144:9;12140:22;12107:65;:::i;:::-;12089:83;;;;11885:297;11660:529;;;;;:::o;12212:568::-;12285:8;12295:6;12345:3;12338:4;12330:6;12326:17;12322:27;12312:122;;12353:79;;:::i;:::-;12312:122;12466:6;12453:20;12443:30;;12496:18;12488:6;12485:30;12482:117;;;12518:79;;:::i;:::-;12482:117;12632:4;12624:6;12620:17;12608:29;;12686:3;12678:4;12670:6;12666:17;12656:8;12652:32;12649:41;12646:128;;;12693:79;;:::i;:::-;12646:128;12212:568;;;;;:::o;12786:559::-;12872:6;12880;12929:2;12917:9;12908:7;12904:23;12900:32;12897:119;;;12935:79;;:::i;:::-;12897:119;13083:1;13072:9;13068:17;13055:31;13113:18;13105:6;13102:30;13099:117;;;13135:79;;:::i;:::-;13099:117;13248:80;13320:7;13311:6;13300:9;13296:22;13248:80;:::i;:::-;13230:98;;;;13026:312;12786:559;;;;;:::o;13351:116::-;13421:21;13436:5;13421:21;:::i;:::-;13414:5;13411:32;13401:60;;13457:1;13454;13447:12;13401:60;13351:116;:::o;13473:133::-;13516:5;13554:6;13541:20;13532:29;;13570:30;13594:5;13570:30;:::i;:::-;13473:133;;;;:::o;13612:468::-;13677:6;13685;13734:2;13722:9;13713:7;13709:23;13705:32;13702:119;;;13740:79;;:::i;:::-;13702:119;13860:1;13885:53;13930:7;13921:6;13910:9;13906:22;13885:53;:::i;:::-;13875:63;;13831:117;13987:2;14013:50;14055:7;14046:6;14035:9;14031:22;14013:50;:::i;:::-;14003:60;;13958:115;13612:468;;;;;:::o;14086:307::-;14147:4;14237:18;14229:6;14226:30;14223:56;;;14259:18;;:::i;:::-;14223:56;14297:29;14319:6;14297:29;:::i;:::-;14289:37;;14381:4;14375;14371:15;14363:23;;14086:307;;;:::o;14399:423::-;14476:5;14501:65;14517:48;14558:6;14517:48;:::i;:::-;14501:65;:::i;:::-;14492:74;;14589:6;14582:5;14575:21;14627:4;14620:5;14616:16;14665:3;14656:6;14651:3;14647:16;14644:25;14641:112;;;14672:79;;:::i;:::-;14641:112;14762:54;14809:6;14804:3;14799;14762:54;:::i;:::-;14482:340;14399:423;;;;;:::o;14841:338::-;14896:5;14945:3;14938:4;14930:6;14926:17;14922:27;14912:122;;14953:79;;:::i;:::-;14912:122;15070:6;15057:20;15095:78;15169:3;15161:6;15154:4;15146:6;15142:17;15095:78;:::i;:::-;15086:87;;14902:277;14841:338;;;;:::o;15185:943::-;15280:6;15288;15296;15304;15353:3;15341:9;15332:7;15328:23;15324:33;15321:120;;;15360:79;;:::i;:::-;15321:120;15480:1;15505:53;15550:7;15541:6;15530:9;15526:22;15505:53;:::i;:::-;15495:63;;15451:117;15607:2;15633:53;15678:7;15669:6;15658:9;15654:22;15633:53;:::i;:::-;15623:63;;15578:118;15735:2;15761:53;15806:7;15797:6;15786:9;15782:22;15761:53;:::i;:::-;15751:63;;15706:118;15891:2;15880:9;15876:18;15863:32;15922:18;15914:6;15911:30;15908:117;;;15944:79;;:::i;:::-;15908:117;16049:62;16103:7;16094:6;16083:9;16079:22;16049:62;:::i;:::-;16039:72;;15834:287;15185:943;;;;;;;:::o;16151:568::-;16224:8;16234:6;16284:3;16277:4;16269:6;16265:17;16261:27;16251:122;;16292:79;;:::i;:::-;16251:122;16405:6;16392:20;16382:30;;16435:18;16427:6;16424:30;16421:117;;;16457:79;;:::i;:::-;16421:117;16571:4;16563:6;16559:17;16547:29;;16625:3;16617:4;16609:6;16605:17;16595:8;16591:32;16588:41;16585:128;;;16632:79;;:::i;:::-;16585:128;16151:568;;;;;:::o;16725:559::-;16811:6;16819;16868:2;16856:9;16847:7;16843:23;16839:32;16836:119;;;16874:79;;:::i;:::-;16836:119;17022:1;17011:9;17007:17;16994:31;17052:18;17044:6;17041:30;17038:117;;;17074:79;;:::i;:::-;17038:117;17187:80;17259:7;17250:6;17239:9;17235:22;17187:80;:::i;:::-;17169:98;;;;16965:312;16725:559;;;;;:::o;17290:474::-;17358:6;17366;17415:2;17403:9;17394:7;17390:23;17386:32;17383:119;;;17421:79;;:::i;:::-;17383:119;17541:1;17566:53;17611:7;17602:6;17591:9;17587:22;17566:53;:::i;:::-;17556:63;;17512:117;17668:2;17694:53;17739:7;17730:6;17719:9;17715:22;17694:53;:::i;:::-;17684:63;;17639:118;17290:474;;;;;:::o;17770:180::-;17818:77;17815:1;17808:88;17915:4;17912:1;17905:15;17939:4;17936:1;17929:15;17956:320;18000:6;18037:1;18031:4;18027:12;18017:22;;18084:1;18078:4;18074:12;18105:18;18095:81;;18161:4;18153:6;18149:17;18139:27;;18095:81;18223:2;18215:6;18212:14;18192:18;18189:38;18186:84;;18242:18;;:::i;:::-;18186:84;18007:269;17956:320;;;:::o;18282:231::-;18422:34;18418:1;18410:6;18406:14;18399:58;18491:14;18486:2;18478:6;18474:15;18467:39;18282:231;:::o;18519:366::-;18661:3;18682:67;18746:2;18741:3;18682:67;:::i;:::-;18675:74;;18758:93;18847:3;18758:93;:::i;:::-;18876:2;18871:3;18867:12;18860:19;;18519:366;;;:::o;18891:419::-;19057:4;19095:2;19084:9;19080:18;19072:26;;19144:9;19138:4;19134:20;19130:1;19119:9;19115:17;19108:47;19172:131;19298:4;19172:131;:::i;:::-;19164:139;;18891:419;;;:::o;19316:220::-;19456:34;19452:1;19444:6;19440:14;19433:58;19525:3;19520:2;19512:6;19508:15;19501:28;19316:220;:::o;19542:366::-;19684:3;19705:67;19769:2;19764:3;19705:67;:::i;:::-;19698:74;;19781:93;19870:3;19781:93;:::i;:::-;19899:2;19894:3;19890:12;19883:19;;19542:366;;;:::o;19914:419::-;20080:4;20118:2;20107:9;20103:18;20095:26;;20167:9;20161:4;20157:20;20153:1;20142:9;20138:17;20131:47;20195:131;20321:4;20195:131;:::i;:::-;20187:139;;19914:419;;;:::o;20339:243::-;20479:34;20475:1;20467:6;20463:14;20456:58;20548:26;20543:2;20535:6;20531:15;20524:51;20339:243;:::o;20588:366::-;20730:3;20751:67;20815:2;20810:3;20751:67;:::i;:::-;20744:74;;20827:93;20916:3;20827:93;:::i;:::-;20945:2;20940:3;20936:12;20929:19;;20588:366;;;:::o;20960:419::-;21126:4;21164:2;21153:9;21149:18;21141:26;;21213:9;21207:4;21203:20;21199:1;21188:9;21184:17;21177:47;21241:131;21367:4;21241:131;:::i;:::-;21233:139;;20960:419;;;:::o;21385:143::-;21442:5;21473:6;21467:13;21458:22;;21489:33;21516:5;21489:33;:::i;:::-;21385:143;;;;:::o;21534:351::-;21604:6;21653:2;21641:9;21632:7;21628:23;21624:32;21621:119;;;21659:79;;:::i;:::-;21621:119;21779:1;21804:64;21860:7;21851:6;21840:9;21836:22;21804:64;:::i;:::-;21794:74;;21750:128;21534:351;;;;:::o;21891:182::-;22031:34;22027:1;22019:6;22015:14;22008:58;21891:182;:::o;22079:366::-;22221:3;22242:67;22306:2;22301:3;22242:67;:::i;:::-;22235:74;;22318:93;22407:3;22318:93;:::i;:::-;22436:2;22431:3;22427:12;22420:19;;22079:366;;;:::o;22451:419::-;22617:4;22655:2;22644:9;22640:18;22632:26;;22704:9;22698:4;22694:20;22690:1;22679:9;22675:17;22668:47;22732:131;22858:4;22732:131;:::i;:::-;22724:139;;22451:419;;;:::o;22876:180::-;22924:77;22921:1;22914:88;23021:4;23018:1;23011:15;23045:4;23042:1;23035:15;23062:77;23099:7;23128:5;23117:16;;23062:77;;;:::o;23145:79::-;23184:7;23213:5;23202:16;;23145:79;;;:::o;23230:157::-;23335:45;23355:24;23373:5;23355:24;:::i;:::-;23335:45;:::i;:::-;23330:3;23323:58;23230:157;;:::o;23393:256::-;23505:3;23520:75;23591:3;23582:6;23520:75;:::i;:::-;23620:2;23615:3;23611:12;23604:19;;23640:3;23633:10;;23393:256;;;;:::o;23655:236::-;23795:34;23791:1;23783:6;23779:14;23772:58;23864:19;23859:2;23851:6;23847:15;23840:44;23655:236;:::o;23897:366::-;24039:3;24060:67;24124:2;24119:3;24060:67;:::i;:::-;24053:74;;24136:93;24225:3;24136:93;:::i;:::-;24254:2;24249:3;24245:12;24238:19;;23897:366;;;:::o;24269:419::-;24435:4;24473:2;24462:9;24458:18;24450:26;;24522:9;24516:4;24512:20;24508:1;24497:9;24493:17;24486:47;24550:131;24676:4;24550:131;:::i;:::-;24542:139;;24269:419;;;:::o;24694:230::-;24834:34;24830:1;24822:6;24818:14;24811:58;24903:13;24898:2;24890:6;24886:15;24879:38;24694:230;:::o;24930:366::-;25072:3;25093:67;25157:2;25152:3;25093:67;:::i;:::-;25086:74;;25169:93;25258:3;25169:93;:::i;:::-;25287:2;25282:3;25278:12;25271:19;;24930:366;;;:::o;25302:419::-;25468:4;25506:2;25495:9;25491:18;25483:26;;25555:9;25549:4;25545:20;25541:1;25530:9;25526:17;25519:47;25583:131;25709:4;25583:131;:::i;:::-;25575:139;;25302:419;;;:::o;25727:180::-;25775:77;25772:1;25765:88;25872:4;25869:1;25862:15;25896:4;25893:1;25886:15;25913:233;25952:3;25975:24;25993:5;25975:24;:::i;:::-;25966:33;;26021:66;26014:5;26011:77;26008:103;;26091:18;;:::i;:::-;26008:103;26138:1;26131:5;26127:13;26120:20;;25913:233;;;:::o;26152:231::-;26292:34;26288:1;26280:6;26276:14;26269:58;26361:14;26356:2;26348:6;26344:15;26337:39;26152:231;:::o;26389:366::-;26531:3;26552:67;26616:2;26611:3;26552:67;:::i;:::-;26545:74;;26628:93;26717:3;26628:93;:::i;:::-;26746:2;26741:3;26737:12;26730:19;;26389:366;;;:::o;26761:419::-;26927:4;26965:2;26954:9;26950:18;26942:26;;27014:9;27008:4;27004:20;27000:1;26989:9;26985:17;26978:47;27042:131;27168:4;27042:131;:::i;:::-;27034:139;;26761:419;;;:::o;27186:141::-;27235:4;27258:3;27250:11;;27281:3;27278:1;27271:14;27315:4;27312:1;27302:18;27294:26;;27186:141;;;:::o;27333:93::-;27370:6;27417:2;27412;27405:5;27401:14;27397:23;27387:33;;27333:93;;;:::o;27432:107::-;27476:8;27526:5;27520:4;27516:16;27495:37;;27432:107;;;;:::o;27545:393::-;27614:6;27664:1;27652:10;27648:18;27687:97;27717:66;27706:9;27687:97;:::i;:::-;27805:39;27835:8;27824:9;27805:39;:::i;:::-;27793:51;;27877:4;27873:9;27866:5;27862:21;27853:30;;27926:4;27916:8;27912:19;27905:5;27902:30;27892:40;;27621:317;;27545:393;;;;;:::o;27944:60::-;27972:3;27993:5;27986:12;;27944:60;;;:::o;28010:142::-;28060:9;28093:53;28111:34;28120:24;28138:5;28120:24;:::i;:::-;28111:34;:::i;:::-;28093:53;:::i;:::-;28080:66;;28010:142;;;:::o;28158:75::-;28201:3;28222:5;28215:12;;28158:75;;;:::o;28239:269::-;28349:39;28380:7;28349:39;:::i;:::-;28410:91;28459:41;28483:16;28459:41;:::i;:::-;28451:6;28444:4;28438:11;28410:91;:::i;:::-;28404:4;28397:105;28315:193;28239:269;;;:::o;28514:73::-;28559:3;28514:73;:::o;28593:189::-;28670:32;;:::i;:::-;28711:65;28769:6;28761;28755:4;28711:65;:::i;:::-;28646:136;28593:189;;:::o;28788:186::-;28848:120;28865:3;28858:5;28855:14;28848:120;;;28919:39;28956:1;28949:5;28919:39;:::i;:::-;28892:1;28885:5;28881:13;28872:22;;28848:120;;;28788:186;;:::o;28980:543::-;29081:2;29076:3;29073:11;29070:446;;;29115:38;29147:5;29115:38;:::i;:::-;29199:29;29217:10;29199:29;:::i;:::-;29189:8;29185:44;29382:2;29370:10;29367:18;29364:49;;;29403:8;29388:23;;29364:49;29426:80;29482:22;29500:3;29482:22;:::i;:::-;29472:8;29468:37;29455:11;29426:80;:::i;:::-;29085:431;;29070:446;28980:543;;;:::o;29529:117::-;29583:8;29633:5;29627:4;29623:16;29602:37;;29529:117;;;;:::o;29652:169::-;29696:6;29729:51;29777:1;29773:6;29765:5;29762:1;29758:13;29729:51;:::i;:::-;29725:56;29810:4;29804;29800:15;29790:25;;29703:118;29652:169;;;;:::o;29826:295::-;29902:4;30048:29;30073:3;30067:4;30048:29;:::i;:::-;30040:37;;30110:3;30107:1;30103:11;30097:4;30094:21;30086:29;;29826:295;;;;:::o;30126:1395::-;30243:37;30276:3;30243:37;:::i;:::-;30345:18;30337:6;30334:30;30331:56;;;30367:18;;:::i;:::-;30331:56;30411:38;30443:4;30437:11;30411:38;:::i;:::-;30496:67;30556:6;30548;30542:4;30496:67;:::i;:::-;30590:1;30614:4;30601:17;;30646:2;30638:6;30635:14;30663:1;30658:618;;;;31320:1;31337:6;31334:77;;;31386:9;31381:3;31377:19;31371:26;31362:35;;31334:77;31437:67;31497:6;31490:5;31437:67;:::i;:::-;31431:4;31424:81;31293:222;30628:887;;30658:618;30710:4;30706:9;30698:6;30694:22;30744:37;30776:4;30744:37;:::i;:::-;30803:1;30817:208;30831:7;30828:1;30825:14;30817:208;;;30910:9;30905:3;30901:19;30895:26;30887:6;30880:42;30961:1;30953:6;30949:14;30939:24;;31008:2;30997:9;30993:18;30980:31;;30854:4;30851:1;30847:12;30842:17;;30817:208;;;31053:6;31044:7;31041:19;31038:179;;;31111:9;31106:3;31102:19;31096:26;31154:48;31196:4;31188:6;31184:17;31173:9;31154:48;:::i;:::-;31146:6;31139:64;31061:156;31038:179;31263:1;31259;31251:6;31247:14;31243:22;31237:4;31230:36;30665:611;;;30628:887;;30218:1303;;;30126:1395;;:::o;31527:223::-;31667:34;31663:1;31655:6;31651:14;31644:58;31736:6;31731:2;31723:6;31719:15;31712:31;31527:223;:::o;31756:366::-;31898:3;31919:67;31983:2;31978:3;31919:67;:::i;:::-;31912:74;;31995:93;32084:3;31995:93;:::i;:::-;32113:2;32108:3;32104:12;32097:19;;31756:366;;;:::o;32128:419::-;32294:4;32332:2;32321:9;32317:18;32309:26;;32381:9;32375:4;32371:20;32367:1;32356:9;32352:17;32345:47;32409:131;32535:4;32409:131;:::i;:::-;32401:139;;32128:419;;;:::o;32553:179::-;32693:31;32689:1;32681:6;32677:14;32670:55;32553:179;:::o;32738:366::-;32880:3;32901:67;32965:2;32960:3;32901:67;:::i;:::-;32894:74;;32977:93;33066:3;32977:93;:::i;:::-;33095:2;33090:3;33086:12;33079:19;;32738:366;;;:::o;33110:419::-;33276:4;33314:2;33303:9;33299:18;33291:26;;33363:9;33357:4;33353:20;33349:1;33338:9;33334:17;33327:47;33391:131;33517:4;33391:131;:::i;:::-;33383:139;;33110:419;;;:::o;33535:191::-;33575:3;33594:20;33612:1;33594:20;:::i;:::-;33589:25;;33628:20;33646:1;33628:20;:::i;:::-;33623:25;;33671:1;33668;33664:9;33657:16;;33692:3;33689:1;33686:10;33683:36;;;33699:18;;:::i;:::-;33683:36;33535:191;;;;:::o;33732:224::-;33872:34;33868:1;33860:6;33856:14;33849:58;33941:7;33936:2;33928:6;33924:15;33917:32;33732:224;:::o;33962:366::-;34104:3;34125:67;34189:2;34184:3;34125:67;:::i;:::-;34118:74;;34201:93;34290:3;34201:93;:::i;:::-;34319:2;34314:3;34310:12;34303:19;;33962:366;;;:::o;34334:419::-;34500:4;34538:2;34527:9;34523:18;34515:26;;34587:9;34581:4;34577:20;34573:1;34562:9;34558:17;34551:47;34615:131;34741:4;34615:131;:::i;:::-;34607:139;;34334:419;;;:::o;34759:178::-;34899:30;34895:1;34887:6;34883:14;34876:54;34759:178;:::o;34943:366::-;35085:3;35106:67;35170:2;35165:3;35106:67;:::i;:::-;35099:74;;35182:93;35271:3;35182:93;:::i;:::-;35300:2;35295:3;35291:12;35284:19;;34943:366;;;:::o;35315:419::-;35481:4;35519:2;35508:9;35504:18;35496:26;;35568:9;35562:4;35558:20;35554:1;35543:9;35539:17;35532:47;35596:131;35722:4;35596:131;:::i;:::-;35588:139;;35315:419;;;:::o;35740:177::-;35880:29;35876:1;35868:6;35864:14;35857:53;35740:177;:::o;35923:366::-;36065:3;36086:67;36150:2;36145:3;36086:67;:::i;:::-;36079:74;;36162:93;36251:3;36162:93;:::i;:::-;36280:2;36275:3;36271:12;36264:19;;35923:366;;;:::o;36295:419::-;36461:4;36499:2;36488:9;36484:18;36476:26;;36548:9;36542:4;36538:20;36534:1;36523:9;36519:17;36512:47;36576:131;36702:4;36576:131;:::i;:::-;36568:139;;36295:419;;;:::o;36720:228::-;36860:34;36856:1;36848:6;36844:14;36837:58;36929:11;36924:2;36916:6;36912:15;36905:36;36720:228;:::o;36954:366::-;37096:3;37117:67;37181:2;37176:3;37117:67;:::i;:::-;37110:74;;37193:93;37282:3;37193:93;:::i;:::-;37311:2;37306:3;37302:12;37295:19;;36954:366;;;:::o;37326:419::-;37492:4;37530:2;37519:9;37515:18;37507:26;;37579:9;37573:4;37569:20;37565:1;37554:9;37550:17;37543:47;37607:131;37733:4;37607:131;:::i;:::-;37599:139;;37326:419;;;:::o;37751:97::-;37810:6;37838:3;37828:13;;37751:97;;;;:::o;37854:1403::-;37978:44;38018:3;38013;37978:44;:::i;:::-;38087:18;38079:6;38076:30;38073:56;;;38109:18;;:::i;:::-;38073:56;38153:38;38185:4;38179:11;38153:38;:::i;:::-;38238:67;38298:6;38290;38284:4;38238:67;:::i;:::-;38332:1;38361:2;38353:6;38350:14;38378:1;38373:632;;;;39049:1;39066:6;39063:84;;;39122:9;39117:3;39113:19;39100:33;39091:42;;39063:84;39173:67;39233:6;39226:5;39173:67;:::i;:::-;39167:4;39160:81;39022:229;38343:908;;38373:632;38425:4;38421:9;38413:6;38409:22;38459:37;38491:4;38459:37;:::i;:::-;38518:1;38532:215;38546:7;38543:1;38540:14;38532:215;;;38632:9;38627:3;38623:19;38610:33;38602:6;38595:49;38683:1;38675:6;38671:14;38661:24;;38730:2;38719:9;38715:18;38702:31;;38569:4;38566:1;38562:12;38557:17;;38532:215;;;38775:6;38766:7;38763:19;38760:186;;;38840:9;38835:3;38831:19;38818:33;38883:48;38925:4;38917:6;38913:17;38902:9;38883:48;:::i;:::-;38875:6;38868:64;38783:163;38760:186;38992:1;38988;38980:6;38976:14;38972:22;38966:4;38959:36;38380:625;;;38343:908;;37953:1304;;;37854:1403;;;:::o;39263:229::-;39403:34;39399:1;39391:6;39387:14;39380:58;39472:12;39467:2;39459:6;39455:15;39448:37;39263:229;:::o;39498:366::-;39640:3;39661:67;39725:2;39720:3;39661:67;:::i;:::-;39654:74;;39737:93;39826:3;39737:93;:::i;:::-;39855:2;39850:3;39846:12;39839:19;;39498:366;;;:::o;39870:419::-;40036:4;40074:2;40063:9;40059:18;40051:26;;40123:9;40117:4;40113:20;40109:1;40098:9;40094:17;40087:47;40151:131;40277:4;40151:131;:::i;:::-;40143:139;;39870:419;;;:::o;40295:332::-;40416:4;40454:2;40443:9;40439:18;40431:26;;40467:71;40535:1;40524:9;40520:17;40511:6;40467:71;:::i;:::-;40548:72;40616:2;40605:9;40601:18;40592:6;40548:72;:::i;:::-;40295:332;;;;;:::o;40633:171::-;40773:23;40769:1;40761:6;40757:14;40750:47;40633:171;:::o;40810:366::-;40952:3;40973:67;41037:2;41032:3;40973:67;:::i;:::-;40966:74;;41049:93;41138:3;41049:93;:::i;:::-;41167:2;41162:3;41158:12;41151:19;;40810:366;;;:::o;41182:419::-;41348:4;41386:2;41375:9;41371:18;41363:26;;41435:9;41429:4;41425:20;41421:1;41410:9;41406:17;41399:47;41463:131;41589:4;41463:131;:::i;:::-;41455:139;;41182:419;;;:::o;41607:180::-;41747:32;41743:1;41735:6;41731:14;41724:56;41607:180;:::o;41793:366::-;41935:3;41956:67;42020:2;42015:3;41956:67;:::i;:::-;41949:74;;42032:93;42121:3;42032:93;:::i;:::-;42150:2;42145:3;42141:12;42134:19;;41793:366;;;:::o;42165:419::-;42331:4;42369:2;42358:9;42354:18;42346:26;;42418:9;42412:4;42408:20;42404:1;42393:9;42389:17;42382:47;42446:131;42572:4;42446:131;:::i;:::-;42438:139;;42165:419;;;:::o;42590:251::-;42730:34;42726:1;42718:6;42714:14;42707:58;42799:34;42794:2;42786:6;42782:15;42775:59;42590:251;:::o;42847:366::-;42989:3;43010:67;43074:2;43069:3;43010:67;:::i;:::-;43003:74;;43086:93;43175:3;43086:93;:::i;:::-;43204:2;43199:3;43195:12;43188:19;;42847:366;;;:::o;43219:419::-;43385:4;43423:2;43412:9;43408:18;43400:26;;43472:9;43466:4;43462:20;43458:1;43447:9;43443:17;43436:47;43500:131;43626:4;43500:131;:::i;:::-;43492:139;;43219:419;;;:::o;43644:175::-;43784:27;43780:1;43772:6;43768:14;43761:51;43644:175;:::o;43825:366::-;43967:3;43988:67;44052:2;44047:3;43988:67;:::i;:::-;43981:74;;44064:93;44153:3;44064:93;:::i;:::-;44182:2;44177:3;44173:12;44166:19;;43825:366;;;:::o;44197:419::-;44363:4;44401:2;44390:9;44386:18;44378:26;;44450:9;44444:4;44440:20;44436:1;44425:9;44421:17;44414:47;44478:131;44604:4;44478:131;:::i;:::-;44470:139;;44197:419;;;:::o;44622:234::-;44762:34;44758:1;44750:6;44746:14;44739:58;44831:17;44826:2;44818:6;44814:15;44807:42;44622:234;:::o;44862:366::-;45004:3;45025:67;45089:2;45084:3;45025:67;:::i;:::-;45018:74;;45101:93;45190:3;45101:93;:::i;:::-;45219:2;45214:3;45210:12;45203:19;;44862:366;;;:::o;45234:419::-;45400:4;45438:2;45427:9;45423:18;45415:26;;45487:9;45481:4;45477:20;45473:1;45462:9;45458:17;45451:47;45515:131;45641:4;45515:131;:::i;:::-;45507:139;;45234:419;;;:::o;45659:148::-;45761:11;45798:3;45783:18;;45659:148;;;;:::o;45813:390::-;45919:3;45947:39;45980:5;45947:39;:::i;:::-;46002:89;46084:6;46079:3;46002:89;:::i;:::-;45995:96;;46100:65;46158:6;46153:3;46146:4;46139:5;46135:16;46100:65;:::i;:::-;46190:6;46185:3;46181:16;46174:23;;45923:280;45813:390;;;;:::o;46209:155::-;46349:7;46345:1;46337:6;46333:14;46326:31;46209:155;:::o;46370:400::-;46530:3;46551:84;46633:1;46628:3;46551:84;:::i;:::-;46544:91;;46644:93;46733:3;46644:93;:::i;:::-;46762:1;46757:3;46753:11;46746:18;;46370:400;;;:::o;46776:701::-;47057:3;47079:95;47170:3;47161:6;47079:95;:::i;:::-;47072:102;;47191:95;47282:3;47273:6;47191:95;:::i;:::-;47184:102;;47303:148;47447:3;47303:148;:::i;:::-;47296:155;;47468:3;47461:10;;46776:701;;;;;:::o;47483:225::-;47623:34;47619:1;47611:6;47607:14;47600:58;47692:8;47687:2;47679:6;47675:15;47668:33;47483:225;:::o;47714:366::-;47856:3;47877:67;47941:2;47936:3;47877:67;:::i;:::-;47870:74;;47953:93;48042:3;47953:93;:::i;:::-;48071:2;48066:3;48062:12;48055:19;;47714:366;;;:::o;48086:419::-;48252:4;48290:2;48279:9;48275:18;48267:26;;48339:9;48333:4;48329:20;48325:1;48314:9;48310:17;48303:47;48367:131;48493:4;48367:131;:::i;:::-;48359:139;;48086:419;;;:::o;48511:410::-;48551:7;48574:20;48592:1;48574:20;:::i;:::-;48569:25;;48608:20;48626:1;48608:20;:::i;:::-;48603:25;;48663:1;48660;48656:9;48685:30;48703:11;48685:30;:::i;:::-;48674:41;;48864:1;48855:7;48851:15;48848:1;48845:22;48825:1;48818:9;48798:83;48775:139;;48894:18;;:::i;:::-;48775:139;48559:362;48511:410;;;;:::o;48927:180::-;48975:77;48972:1;48965:88;49072:4;49069:1;49062:15;49096:4;49093:1;49086:15;49113:185;49153:1;49170:20;49188:1;49170:20;:::i;:::-;49165:25;;49204:20;49222:1;49204:20;:::i;:::-;49199:25;;49243:1;49233:35;;49248:18;;:::i;:::-;49233:35;49290:1;49287;49283:9;49278:14;;49113:185;;;;:::o;49304:220::-;49444:34;49440:1;49432:6;49428:14;49421:58;49513:3;49508:2;49500:6;49496:15;49489:28;49304:220;:::o;49530:366::-;49672:3;49693:67;49757:2;49752:3;49693:67;:::i;:::-;49686:74;;49769:93;49858:3;49769:93;:::i;:::-;49887:2;49882:3;49878:12;49871:19;;49530:366;;;:::o;49902:419::-;50068:4;50106:2;50095:9;50091:18;50083:26;;50155:9;50149:4;50145:20;50141:1;50130:9;50126:17;50119:47;50183:131;50309:4;50183:131;:::i;:::-;50175:139;;49902:419;;;:::o;50327:231::-;50467:34;50463:1;50455:6;50451:14;50444:58;50536:14;50531:2;50523:6;50519:15;50512:39;50327:231;:::o;50564:366::-;50706:3;50727:67;50791:2;50786:3;50727:67;:::i;:::-;50720:74;;50803:93;50892:3;50803:93;:::i;:::-;50921:2;50916:3;50912:12;50905:19;;50564:366;;;:::o;50936:419::-;51102:4;51140:2;51129:9;51125:18;51117:26;;51189:9;51183:4;51179:20;51175:1;51164:9;51160:17;51153:47;51217:131;51343:4;51217:131;:::i;:::-;51209:139;;50936:419;;;:::o;51361:228::-;51501:34;51497:1;51489:6;51485:14;51478:58;51570:11;51565:2;51557:6;51553:15;51546:36;51361:228;:::o;51595:366::-;51737:3;51758:67;51822:2;51817:3;51758:67;:::i;:::-;51751:74;;51834:93;51923:3;51834:93;:::i;:::-;51952:2;51947:3;51943:12;51936:19;;51595:366;;;:::o;51967:419::-;52133:4;52171:2;52160:9;52156:18;52148:26;;52220:9;52214:4;52210:20;52206:1;52195:9;52191:17;52184:47;52248:131;52374:4;52248:131;:::i;:::-;52240:139;;51967:419;;;:::o;52392:223::-;52532:34;52528:1;52520:6;52516:14;52509:58;52601:6;52596:2;52588:6;52584:15;52577:31;52392:223;:::o;52621:366::-;52763:3;52784:67;52848:2;52843:3;52784:67;:::i;:::-;52777:74;;52860:93;52949:3;52860:93;:::i;:::-;52978:2;52973:3;52969:12;52962:19;;52621:366;;;:::o;52993:419::-;53159:4;53197:2;53186:9;53182:18;53174:26;;53246:9;53240:4;53236:20;53232:1;53221:9;53217:17;53210:47;53274:131;53400:4;53274:131;:::i;:::-;53266:139;;52993:419;;;:::o;53418:194::-;53458:4;53478:20;53496:1;53478:20;:::i;:::-;53473:25;;53512:20;53530:1;53512:20;:::i;:::-;53507:25;;53556:1;53553;53549:9;53541:17;;53580:1;53574:4;53571:11;53568:37;;;53585:18;;:::i;:::-;53568:37;53418:194;;;;:::o;53618:237::-;53758:34;53754:1;53746:6;53742:14;53735:58;53827:20;53822:2;53814:6;53810:15;53803:45;53618:237;:::o;53861:366::-;54003:3;54024:67;54088:2;54083:3;54024:67;:::i;:::-;54017:74;;54100:93;54189:3;54100:93;:::i;:::-;54218:2;54213:3;54209:12;54202:19;;53861:366;;;:::o;54233:419::-;54399:4;54437:2;54426:9;54422:18;54414:26;;54486:9;54480:4;54476:20;54472:1;54461:9;54457:17;54450:47;54514:131;54640:4;54514:131;:::i;:::-;54506:139;;54233:419;;;:::o;54682:874::-;54785:3;54822:5;54816:12;54851:36;54877:9;54851:36;:::i;:::-;54903:89;54985:6;54980:3;54903:89;:::i;:::-;54896:96;;55023:1;55012:9;55008:17;55039:1;55034:166;;;;55214:1;55209:341;;;;55001:549;;55034:166;55118:4;55114:9;55103;55099:25;55094:3;55087:38;55180:6;55173:14;55166:22;55158:6;55154:35;55149:3;55145:45;55138:52;;55034:166;;55209:341;55276:38;55308:5;55276:38;:::i;:::-;55336:1;55350:154;55364:6;55361:1;55358:13;55350:154;;;55438:7;55432:14;55428:1;55423:3;55419:11;55412:35;55488:1;55479:7;55475:15;55464:26;;55386:4;55383:1;55379:12;55374:17;;55350:154;;;55533:6;55528:3;55524:16;55517:23;;55216:334;;55001:549;;54789:767;;54682:874;;;;:::o;55562:423::-;55736:3;55758:92;55846:3;55837:6;55758:92;:::i;:::-;55751:99;;55867:92;55955:3;55946:6;55867:92;:::i;:::-;55860:99;;55976:3;55969:10;;55562:423;;;;;:::o;55991:176::-;56023:1;56040:20;56058:1;56040:20;:::i;:::-;56035:25;;56074:20;56092:1;56074:20;:::i;:::-;56069:25;;56113:1;56103:35;;56118:18;;:::i;:::-;56103:35;56159:1;56156;56152:9;56147:14;;55991:176;;;;:::o;56173:98::-;56224:6;56258:5;56252:12;56242:22;;56173:98;;;:::o;56277:168::-;56360:11;56394:6;56389:3;56382:19;56434:4;56429:3;56425:14;56410:29;;56277:168;;;;:::o;56451:373::-;56537:3;56565:38;56597:5;56565:38;:::i;:::-;56619:70;56682:6;56677:3;56619:70;:::i;:::-;56612:77;;56698:65;56756:6;56751:3;56744:4;56737:5;56733:16;56698:65;:::i;:::-;56788:29;56810:6;56788:29;:::i;:::-;56783:3;56779:39;56772:46;;56541:283;56451:373;;;;:::o;56830:640::-;57025:4;57063:3;57052:9;57048:19;57040:27;;57077:71;57145:1;57134:9;57130:17;57121:6;57077:71;:::i;:::-;57158:72;57226:2;57215:9;57211:18;57202:6;57158:72;:::i;:::-;57240;57308:2;57297:9;57293:18;57284:6;57240:72;:::i;:::-;57359:9;57353:4;57349:20;57344:2;57333:9;57329:18;57322:48;57387:76;57458:4;57449:6;57387:76;:::i;:::-;57379:84;;56830:640;;;;;;;:::o;57476:141::-;57532:5;57563:6;57557:13;57548:22;;57579:32;57605:5;57579:32;:::i;:::-;57476:141;;;;:::o;57623:349::-;57692:6;57741:2;57729:9;57720:7;57716:23;57712:32;57709:119;;;57747:79;;:::i;:::-;57709:119;57867:1;57892:63;57947:7;57938:6;57927:9;57923:22;57892:63;:::i;:::-;57882:73;;57838:127;57623:349;;;;:::o;57978:180::-;58026:77;58023:1;58016:88;58123:4;58120:1;58113:15;58147:4;58144:1;58137:15;58164:182;58304:34;58300:1;58292:6;58288:14;58281:58;58164:182;:::o;58352:366::-;58494:3;58515:67;58579:2;58574:3;58515:67;:::i;:::-;58508:74;;58591:93;58680:3;58591:93;:::i;:::-;58709:2;58704:3;58700:12;58693:19;;58352:366;;;:::o;58724:419::-;58890:4;58928:2;58917:9;58913:18;58905:26;;58977:9;58971:4;58967:20;58963:1;58952:9;58948:17;58941:47;59005:131;59131:4;59005:131;:::i;:::-;58997:139;;58724:419;;;:::o;59149:178::-;59289:30;59285:1;59277:6;59273:14;59266:54;59149:178;:::o;59333:366::-;59475:3;59496:67;59560:2;59555:3;59496:67;:::i;:::-;59489:74;;59572:93;59661:3;59572:93;:::i;:::-;59690:2;59685:3;59681:12;59674:19;;59333:366;;;:::o;59705:419::-;59871:4;59909:2;59898:9;59894:18;59886:26;;59958:9;59952:4;59948:20;59944:1;59933:9;59929:17;59922:47;59986:131;60112:4;59986:131;:::i;:::-;59978:139;;59705:419;;;:::o

Swarm Source

ipfs://f65a2572622cb00f410939656aed190dfd39b3cfa2567c9431376783cd2affc2
Loading...
Loading
Loading...
Loading
[ 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.