ETH Price: $3,278.72 (-3.86%)
Gas: 19 Gwei

Token

Repeat Offenders (Repeaters)
 

Overview

Max Total Supply

0 Repeaters

Holders

1,760

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Repeaters
0x3c5faaf770511e403fd907e6d77ac8f5bc699cbe
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Repeat Offenders is a collection of 6666 procedurally generated street compositions, assembled from hand-drawn artwork by Gerhard Human.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RepeatOffenders

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-29
*/

// SPDX-License-Identifier: MIT

// ██████╗░██╗░░░██╗███╗░░██╗██╗░░██╗░██████╗
// ██╔══██╗██║░░░██║████╗░██║██║░██╔╝██╔════╝
// ██████╔╝╚██╗░██╔╝██╔██╗██║█████═╝░╚█████╗░
// ██╔═══╝░░╚████╔╝░██║╚████║██╔═██╗░░╚═══██╗
// ██║░░░░░░░╚██╔╝░░██║░╚███║██║░╚██╗██████╔╝
// ╚═╝░░░░░░░░╚═╝░░░╚═╝░░╚══╝╚═╝░░╚═╝╚═════╝░

// Repeat Offenders... Initializing...

// https://pvnks.com/

// The fun starts at line 1142

// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public 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())) : "";
    }

    /**
     * @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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity 0.8.9;
pragma abicoder v2;

contract RepeatOffenders is ERC721, Ownable {

    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    string public kaleidoscopeKey = ""; // PLVNDR to add our hash, as well as the seed used to generate the offenders

    uint256 public thePriceOfFreedom = 40000000000000000; // 0.04 ETH

    uint public constant hostBodyMaxPurchase = 10;

    uint256 public availableHosts = 6666;

    uint256 public burnedTokens = 0;

    mapping(uint256 => bool) public tokenBurned;

    bool public saleIsActive = false;
    bool public portalIsOpen = true;
    bool public allowBurn = false;
    
    // Reserve up to 100 Repeat Offenders for founders, marketing etc.
    uint public foundersReserve = 100;

    string private _baseTokenURI;

    constructor() ERC721("Repeat Offenders", "Repeaters") { }
    
     function withdrawBalance() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    
    function reserveRepeaters(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = _tokenSupply.current();
        require(_reserveAmount > 0 && _reserveAmount <= foundersReserve, "NOPE");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
            _tokenSupply.increment();
        }
        foundersReserve = foundersReserve - _reserveAmount;
    }


    function setThePriceOfFreedom(uint256 newPrice) public onlyOwner {
        thePriceOfFreedom = newPrice;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        kaleidoscopeKey = provenanceHash;
    }

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

    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipBurnState() public onlyOwner {
        allowBurn = !allowBurn;
    }

    function tokensMinted() public view returns (uint256) {
        return _tokenSupply.current();
      }

    // airdrop to competition winners, OG PVNKS holders etc.

    function airdropPVNKS(address[] memory _addresses) external onlyOwner {
        require(portalIsOpen, "The Portal is closed and cannot be reopened");
        for (uint256 i = 0; i < _addresses.length; i++) {
		uint mintIndex = _tokenSupply.current();
        	_safeMint(_addresses[i], mintIndex);
            _tokenSupply.increment(); 
        }
    }
    
    function closeThePortal() public onlyOwner {
        require(portalIsOpen, "The Portal is already closed and cannot be reopened");
        portalIsOpen = !portalIsOpen;
        availableHosts = _tokenSupply.current();
    }
    
    function buyYourFreedom(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale is not active");
        require(portalIsOpen, "The Portal is closed and cannot be reopened");
        require(block.number < 14212094); // https://etherscan.io/blocks 
        require(numberOfTokens > 0 && numberOfTokens <= hostBodyMaxPurchase, "This is not possible");
        require(_tokenSupply.current() + numberOfTokens <= availableHosts, "Supply would be exceeded");
        require(msg.value >= thePriceOfFreedom * numberOfTokens, "Ether value sent is incorrect");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = _tokenSupply.current();
            if (_tokenSupply.current() < availableHosts) {
                _safeMint(msg.sender, mintIndex);
                _tokenSupply.increment();
            }
        }

    } 

    function burnYourToken(uint256 unmarkedToken) public {
        require(!portalIsOpen, "Cannot erase access while connected to Host");
        require(allowBurn, "Burn mechanism not yet active");
        require(ownerOf(unmarkedToken) == msg.sender, "You are not connected to this Host");
        require(!tokenBurned[unmarkedToken], "404 Host not found");

        tokenBurned[unmarkedToken] = true;
        _burn(unmarkedToken);

        burnedTokens += 1;

        uint256 newTokenGranted = unmarkedToken + 6666;
        _safeMint(msg.sender, newTokenGranted);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_addresses","type":"address[]"}],"name":"airdropPVNKS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableHosts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"unmarkedToken","type":"uint256"}],"name":"burnYourToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"buyYourFreedom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"closeThePortal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"foundersReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hostBodyMaxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"kaleidoscopeKey","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"portalIsOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveRepeaters","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setThePriceOfFreedom","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":[],"name":"thePriceOfFreedom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenBurned","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b9291906200023a565b50668e1bc9bf040000600955611a0a600a556000600b556000600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506064600e55348015620000a557600080fd5b506040518060400160405280601081526020017f526570656174204f6666656e64657273000000000000000000000000000000008152506040518060400160405280600981526020017f526570656174657273000000000000000000000000000000000000000000000081525081600090805190602001906200012a9291906200023a565b508060019080519060200190620001439291906200023a565b505050620001666200015a6200016c60201b60201c565b6200017460201b60201c565b6200034f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002489062000319565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033257607f821691505b60208210811415620003495762000348620002ea565b5b50919050565b614626806200035f6000396000f3fe6080604052600436106102255760003560e01c8063693be489116101235780639a28a457116100ab578063c87b56dd1161006f578063c87b56dd14610786578063e2fe9108146107c3578063e985e9c5146107ee578063eb8d24441461082b578063f2fde38b1461085657610225565b80639a28a457146106c9578063a22cb465146106f2578063a282ff0c1461071b578063a71c805514610746578063b88d4fde1461075d57610225565b80637b83ca1c116100f25780637b83ca1c146106015780637b86120a1461062c5780638da5cb5b1461065757806395d89b4114610682578063981d9796146106ad57610225565b8063693be489146105455780636de9f32b1461058257806370a08231146105ad578063715018a6146105ea57610225565b8063380cd858116101b157806347b5dd541161017557806347b5dd54146104745780634a2169101461049f57806355f804b3146104c85780635fd8c710146104f15780636352211e1461050857610225565b8063380cd858146103b557806338f36158146103e05780633cd4ffa61461040b578063412366f51461043457806342842e0e1461044b57610225565b80630d41dda6116101f85780630d41dda6146102f8578063109695231461032157806323b872dd1461034a57806334918dfd1461037357806335e061fc1461038a57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d1a565b61087f565b60405161025e9190612d62565b60405180910390f35b34801561027357600080fd5b5061027c610961565b6040516102899190612e16565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612e6e565b6109f3565b6040516102c69190612edc565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612f23565b610a78565b005b34801561030457600080fd5b5061031f600480360381019061031a91906130ab565b610b90565b005b34801561032d57600080fd5b50610348600480360381019061034391906131a9565b610cbb565b005b34801561035657600080fd5b50610371600480360381019061036c91906131f2565b610d51565b005b34801561037f57600080fd5b50610388610db1565b005b34801561039657600080fd5b5061039f610e59565b6040516103ac9190612d62565b60405180910390f35b3480156103c157600080fd5b506103ca610e6c565b6040516103d79190613254565b60405180910390f35b3480156103ec57600080fd5b506103f5610e71565b6040516104029190612d62565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612e6e565b610e84565b005b34801561044057600080fd5b50610449610f0a565b005b34801561045757600080fd5b50610472600480360381019061046d91906131f2565b611011565b005b34801561048057600080fd5b50610489611031565b6040516104969190613254565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612e6e565b611037565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906131a9565b61121c565b005b3480156104fd57600080fd5b506105066112b2565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612e6e565b611377565b60405161053c9190612edc565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612e6e565b611429565b6040516105799190612d62565b60405180910390f35b34801561058e57600080fd5b50610597611449565b6040516105a49190613254565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf919061326f565b61145a565b6040516105e19190613254565b60405180910390f35b3480156105f657600080fd5b506105ff611512565b005b34801561060d57600080fd5b5061061661159a565b6040516106239190613254565b60405180910390f35b34801561063857600080fd5b506106416115a0565b60405161064e9190613254565b60405180910390f35b34801561066357600080fd5b5061066c6115a6565b6040516106799190612edc565b60405180910390f35b34801561068e57600080fd5b506106976115d0565b6040516106a49190612e16565b60405180910390f35b6106c760048036038101906106c29190612e6e565b611662565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612f23565b611861565b005b3480156106fe57600080fd5b50610719600480360381019061071491906132c8565b611993565b005b34801561072757600080fd5b506107306119a9565b60405161073d9190612e16565b60405180910390f35b34801561075257600080fd5b5061075b611a37565b005b34801561076957600080fd5b50610784600480360381019061077f91906133a9565b611adf565b005b34801561079257600080fd5b506107ad60048036038101906107a89190612e6e565b611b41565b6040516107ba9190612e16565b60405180910390f35b3480156107cf57600080fd5b506107d8611be8565b6040516107e59190613254565b60405180910390f35b3480156107fa57600080fd5b506108156004803603810190610810919061342c565b611bee565b6040516108229190612d62565b60405180910390f35b34801561083757600080fd5b50610840611c82565b60405161084d9190612d62565b60405180910390f35b34801561086257600080fd5b5061087d6004803603810190610878919061326f565b611c95565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095a575061095982611d8d565b5b9050919050565b6060600080546109709061349b565b80601f016020809104026020016040519081016040528092919081815260200182805461099c9061349b565b80156109e95780601f106109be576101008083540402835291602001916109e9565b820191906000526020600020905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b60006109fe82611df7565b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a349061353f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8382611377565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906135d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b13611e63565b73ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4181610b3c611e63565b611bee565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613663565b60405180910390fd5b610b8b8383611e6b565b505050565b610b98611e63565b73ffffffffffffffffffffffffffffffffffffffff16610bb66115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906136cf565b60405180910390fd5b600d60019054906101000a900460ff16610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613761565b60405180910390fd5b60005b8151811015610cb7576000610c736007611f24565b9050610c99838381518110610c8b57610c8a613781565b5b602002602001015182611f32565b610ca36007611f50565b508080610caf906137df565b915050610c5e565b5050565b610cc3611e63565b73ffffffffffffffffffffffffffffffffffffffff16610ce16115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e906136cf565b60405180910390fd5b8060089080519060200190610d4d929190612c0b565b5050565b610d62610d5c611e63565b82611f66565b610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061389a565b60405180910390fd5b610dac838383612044565b505050565b610db9611e63565b73ffffffffffffffffffffffffffffffffffffffff16610dd76115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e24906136cf565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60029054906101000a900460ff1681565b600a81565b600d60019054906101000a900460ff1681565b610e8c611e63565b73ffffffffffffffffffffffffffffffffffffffff16610eaa6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef7906136cf565b60405180910390fd5b8060098190555050565b610f12611e63565b73ffffffffffffffffffffffffffffffffffffffff16610f306115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d906136cf565b60405180910390fd5b600d60019054906101000a900460ff16610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc9061392c565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff0219169083151502179055506110096007611f24565b600a81905550565b61102c83838360405180602001604052806000815250611adf565b505050565b600b5481565b600d60019054906101000a900460ff1615611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e906139be565b60405180910390fd5b600d60029054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613a2a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166110f682611377565b73ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390613abc565b60405180910390fd5b600c600082815260200190815260200160002060009054906101000a900460ff16156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490613b28565b60405180910390fd5b6001600c600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506111e2816122a0565b6001600b60008282546111f59190613b48565b925050819055506000611a0a8261120c9190613b48565b90506112183382611f32565b5050565b611224611e63565b73ffffffffffffffffffffffffffffffffffffffff166112426115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906136cf565b60405180910390fd5b80600f90805190602001906112ae929190612c0b565b5050565b6112ba611e63565b73ffffffffffffffffffffffffffffffffffffffff166112d86115a6565b73ffffffffffffffffffffffffffffffffffffffff161461132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611325906136cf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611374573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613c10565b60405180910390fd5b80915050919050565b600c6020528060005260406000206000915054906101000a900460ff1681565b60006114556007611f24565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613ca2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61151a611e63565b73ffffffffffffffffffffffffffffffffffffffff166115386115a6565b73ffffffffffffffffffffffffffffffffffffffff161461158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906136cf565b60405180910390fd5b61159860006123b1565b565b60095481565b600e5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115df9061349b565b80601f016020809104026020016040519081016040528092919081815260200182805461160b9061349b565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890613d0e565b60405180910390fd5b600d60019054906101000a900460ff16611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613761565b60405180910390fd5b62d8dbfe431061170f57600080fd5b6000811180156117205750600a8111155b61175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690613d7a565b60405180910390fd5b600a548161176d6007611f24565b6117779190613b48565b11156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90613de6565b60405180910390fd5b806009546117c69190613e06565b341015611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff90613eac565b60405180910390fd5b60005b8181101561185d57600061181f6007611f24565b9050600a5461182e6007611f24565b10156118495761183e3382611f32565b6118486007611f50565b5b508080611855906137df565b91505061180b565b5050565b611869611e63565b73ffffffffffffffffffffffffffffffffffffffff166118876115a6565b73ffffffffffffffffffffffffffffffffffffffff16146118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906136cf565b60405180910390fd5b60006118e96007611f24565b90506000821180156118fd5750600e548211155b61193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613f18565b60405180910390fd5b60005b828110156119795761195c8482846119579190613b48565b611f32565b6119666007611f50565b8080611971906137df565b91505061193f565b5081600e546119889190613f38565b600e81905550505050565b6119a561199e611e63565b8383612477565b5050565b600880546119b69061349b565b80601f01602080910402602001604051908101604052809291908181526020018280546119e29061349b565b8015611a2f5780601f10611a0457610100808354040283529160200191611a2f565b820191906000526020600020905b815481529060010190602001808311611a1257829003601f168201915b505050505081565b611a3f611e63565b73ffffffffffffffffffffffffffffffffffffffff16611a5d6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa906136cf565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b611af0611aea611e63565b83611f66565b611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b269061389a565b60405180910390fd5b611b3b848484846125e4565b50505050565b6060611b4c82611df7565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613fde565b60405180910390fd5b6000611b95612640565b90506000815111611bb55760405180602001604052806000815250611be0565b80611bbf846126d2565b604051602001611bd092919061403a565b6040516020818303038152906040525b915050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611c9d611e63565b73ffffffffffffffffffffffffffffffffffffffff16611cbb6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d08906136cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906140d0565b60405180910390fd5b611d8a816123b1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ede83611377565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b611f4c828260405180602001604052806000815250612833565b5050565b6001816000016000828254019250508190555050565b6000611f7182611df7565b611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790614162565b60405180910390fd5b6000611fbb83611377565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202a57508373ffffffffffffffffffffffffffffffffffffffff16612012846109f3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203b575061203a8185611bee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661206482611377565b73ffffffffffffffffffffffffffffffffffffffff16146120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906141f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614286565b60405180910390fd5b61213583838361288e565b612140600082611e6b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121909190613f38565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e79190613b48565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006122ab82611377565b90506122b98160008461288e565b6122c4600083611e6b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123149190613f38565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd906142f2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125d79190612d62565b60405180910390a3505050565b6125ef848484612044565b6125fb84848484612893565b61263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190614384565b60405180910390fd5b50505050565b6060600f805461264f9061349b565b80601f016020809104026020016040519081016040528092919081815260200182805461267b9061349b565b80156126c85780601f1061269d576101008083540402835291602001916126c8565b820191906000526020600020905b8154815290600101906020018083116126ab57829003601f168201915b5050505050905090565b6060600082141561271a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282e565b600082905060005b6000821461274c578080612735906137df565b915050600a8261274591906143d3565b9150612722565b60008167ffffffffffffffff81111561276857612767612f68565b5b6040519080825280601f01601f19166020018201604052801561279a5781602001600182028036833780820191505090505b5090505b60008514612827576001826127b39190613f38565b9150600a856127c29190614404565b60306127ce9190613b48565b60f81b8183815181106127e4576127e3613781565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561282091906143d3565b945061279e565b8093505050505b919050565b61283d8383612a2a565b61284a6000848484612893565b612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090614384565b60405180910390fd5b505050565b505050565b60006128b48473ffffffffffffffffffffffffffffffffffffffff16612bf8565b15612a1d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128dd611e63565b8786866040518563ffffffff1660e01b81526004016128ff949392919061448a565b602060405180830381600087803b15801561291957600080fd5b505af192505050801561294a57506040513d601f19601f8201168201806040525081019061294791906144eb565b60015b6129cd573d806000811461297a576040519150601f19603f3d011682016040523d82523d6000602084013e61297f565b606091505b506000815114156129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90614384565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a22565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9190614564565b60405180910390fd5b612aa381611df7565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada906145d0565b60405180910390fd5b612aef6000838361288e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b3f9190613b48565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c179061349b565b90600052602060002090601f016020900481019282612c395760008555612c80565b82601f10612c5257805160ff1916838001178555612c80565b82800160010185558215612c80579182015b82811115612c7f578251825591602001919060010190612c64565b5b509050612c8d9190612c91565b5090565b5b80821115612caa576000816000905550600101612c92565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cf781612cc2565b8114612d0257600080fd5b50565b600081359050612d1481612cee565b92915050565b600060208284031215612d3057612d2f612cb8565b5b6000612d3e84828501612d05565b91505092915050565b60008115159050919050565b612d5c81612d47565b82525050565b6000602082019050612d776000830184612d53565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612db7578082015181840152602081019050612d9c565b83811115612dc6576000848401525b50505050565b6000601f19601f8301169050919050565b6000612de882612d7d565b612df28185612d88565b9350612e02818560208601612d99565b612e0b81612dcc565b840191505092915050565b60006020820190508181036000830152612e308184612ddd565b905092915050565b6000819050919050565b612e4b81612e38565b8114612e5657600080fd5b50565b600081359050612e6881612e42565b92915050565b600060208284031215612e8457612e83612cb8565b5b6000612e9284828501612e59565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ec682612e9b565b9050919050565b612ed681612ebb565b82525050565b6000602082019050612ef16000830184612ecd565b92915050565b612f0081612ebb565b8114612f0b57600080fd5b50565b600081359050612f1d81612ef7565b92915050565b60008060408385031215612f3a57612f39612cb8565b5b6000612f4885828601612f0e565b9250506020612f5985828601612e59565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa082612dcc565b810181811067ffffffffffffffff82111715612fbf57612fbe612f68565b5b80604052505050565b6000612fd2612cae565b9050612fde8282612f97565b919050565b600067ffffffffffffffff821115612ffe57612ffd612f68565b5b602082029050602081019050919050565b600080fd5b600061302761302284612fe3565b612fc8565b9050808382526020820190506020840283018581111561304a5761304961300f565b5b835b81811015613073578061305f8882612f0e565b84526020840193505060208101905061304c565b5050509392505050565b600082601f83011261309257613091612f63565b5b81356130a2848260208601613014565b91505092915050565b6000602082840312156130c1576130c0612cb8565b5b600082013567ffffffffffffffff8111156130df576130de612cbd565b5b6130eb8482850161307d565b91505092915050565b600080fd5b600067ffffffffffffffff82111561311457613113612f68565b5b61311d82612dcc565b9050602081019050919050565b82818337600083830152505050565b600061314c613147846130f9565b612fc8565b905082815260208101848484011115613168576131676130f4565b5b61317384828561312a565b509392505050565b600082601f8301126131905761318f612f63565b5b81356131a0848260208601613139565b91505092915050565b6000602082840312156131bf576131be612cb8565b5b600082013567ffffffffffffffff8111156131dd576131dc612cbd565b5b6131e98482850161317b565b91505092915050565b60008060006060848603121561320b5761320a612cb8565b5b600061321986828701612f0e565b935050602061322a86828701612f0e565b925050604061323b86828701612e59565b9150509250925092565b61324e81612e38565b82525050565b60006020820190506132696000830184613245565b92915050565b60006020828403121561328557613284612cb8565b5b600061329384828501612f0e565b91505092915050565b6132a581612d47565b81146132b057600080fd5b50565b6000813590506132c28161329c565b92915050565b600080604083850312156132df576132de612cb8565b5b60006132ed85828601612f0e565b92505060206132fe858286016132b3565b9150509250929050565b600067ffffffffffffffff82111561332357613322612f68565b5b61332c82612dcc565b9050602081019050919050565b600061334c61334784613308565b612fc8565b905082815260208101848484011115613368576133676130f4565b5b61337384828561312a565b509392505050565b600082601f8301126133905761338f612f63565b5b81356133a0848260208601613339565b91505092915050565b600080600080608085870312156133c3576133c2612cb8565b5b60006133d187828801612f0e565b94505060206133e287828801612f0e565b93505060406133f387828801612e59565b925050606085013567ffffffffffffffff81111561341457613413612cbd565b5b6134208782880161337b565b91505092959194509250565b6000806040838503121561344357613442612cb8565b5b600061345185828601612f0e565b925050602061346285828601612f0e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134b357607f821691505b602082108114156134c7576134c661346c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613529602c83612d88565b9150613534826134cd565b604082019050919050565b600060208201905081810360008301526135588161351c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135bb602183612d88565b91506135c68261355f565b604082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061364d603883612d88565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136b9602083612d88565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f54686520506f7274616c20697320636c6f73656420616e642063616e6e6f742060008201527f62652072656f70656e6564000000000000000000000000000000000000000000602082015250565b600061374b602b83612d88565b9150613756826136ef565b604082019050919050565b6000602082019050818103600083015261377a8161373e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137ea82612e38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381d5761381c6137b0565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613884603183612d88565b915061388f82613828565b604082019050919050565b600060208201905081810360008301526138b381613877565b9050919050565b7f54686520506f7274616c20697320616c726561647920636c6f73656420616e6460008201527f2063616e6e6f742062652072656f70656e656400000000000000000000000000602082015250565b6000613916603383612d88565b9150613921826138ba565b604082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f43616e6e6f7420657261736520616363657373207768696c6520636f6e6e656360008201527f74656420746f20486f7374000000000000000000000000000000000000000000602082015250565b60006139a8602b83612d88565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4275726e206d656368616e69736d206e6f742079657420616374697665000000600082015250565b6000613a14601d83612d88565b9150613a1f826139de565b602082019050919050565b60006020820190508181036000830152613a4381613a07565b9050919050565b7f596f7520617265206e6f7420636f6e6e656374656420746f207468697320486f60008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aa6602283612d88565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f34303420486f7374206e6f7420666f756e640000000000000000000000000000600082015250565b6000613b12601283612d88565b9150613b1d82613adc565b602082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b6000613b5382612e38565b9150613b5e83612e38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9357613b926137b0565b5b828201905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613bfa602983612d88565b9150613c0582613b9e565b604082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613c8c602a83612d88565b9150613c9782613c30565b604082019050919050565b60006020820190508181036000830152613cbb81613c7f565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613cf8601283612d88565b9150613d0382613cc2565b602082019050919050565b60006020820190508181036000830152613d2781613ceb565b9050919050565b7f54686973206973206e6f7420706f737369626c65000000000000000000000000600082015250565b6000613d64601483612d88565b9150613d6f82613d2e565b602082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f537570706c7920776f756c642062652065786365656465640000000000000000600082015250565b6000613dd0601883612d88565b9150613ddb82613d9a565b602082019050919050565b60006020820190508181036000830152613dff81613dc3565b9050919050565b6000613e1182612e38565b9150613e1c83612e38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5557613e546137b0565b5b828202905092915050565b7f45746865722076616c75652073656e7420697320696e636f7272656374000000600082015250565b6000613e96601d83612d88565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4e4f504500000000000000000000000000000000000000000000000000000000600082015250565b6000613f02600483612d88565b9150613f0d82613ecc565b602082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b6000613f4382612e38565b9150613f4e83612e38565b925082821015613f6157613f606137b0565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613fc8602f83612d88565b9150613fd382613f6c565b604082019050919050565b60006020820190508181036000830152613ff781613fbb565b9050919050565b600081905092915050565b600061401482612d7d565b61401e8185613ffe565b935061402e818560208601612d99565b80840191505092915050565b60006140468285614009565b91506140528284614009565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140ba602683612d88565b91506140c58261405e565b604082019050919050565b600060208201905081810360008301526140e9816140ad565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061414c602c83612d88565b9150614157826140f0565b604082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006141de602983612d88565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614270602483612d88565b915061427b82614214565b604082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142dc601983612d88565b91506142e7826142a6565b602082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061436e603283612d88565b915061437982614312565b604082019050919050565b6000602082019050818103600083015261439d81614361565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143de82612e38565b91506143e983612e38565b9250826143f9576143f86143a4565b5b828204905092915050565b600061440f82612e38565b915061441a83612e38565b92508261442a576144296143a4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061445c82614435565b6144668185614440565b9350614476818560208601612d99565b61447f81612dcc565b840191505092915050565b600060808201905061449f6000830187612ecd565b6144ac6020830186612ecd565b6144b96040830185613245565b81810360608301526144cb8184614451565b905095945050505050565b6000815190506144e581612cee565b92915050565b60006020828403121561450157614500612cb8565b5b600061450f848285016144d6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061454e602083612d88565b915061455982614518565b602082019050919050565b6000602082019050818103600083015261457d81614541565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006145ba601c83612d88565b91506145c582614584565b602082019050919050565b600060208201905081810360008301526145e9816145ad565b905091905056fea2646970667358221220e3d46ccc572762f7668e80b65f560011022c252a5aeb8839f4e63c5c3262fad564736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063693be489116101235780639a28a457116100ab578063c87b56dd1161006f578063c87b56dd14610786578063e2fe9108146107c3578063e985e9c5146107ee578063eb8d24441461082b578063f2fde38b1461085657610225565b80639a28a457146106c9578063a22cb465146106f2578063a282ff0c1461071b578063a71c805514610746578063b88d4fde1461075d57610225565b80637b83ca1c116100f25780637b83ca1c146106015780637b86120a1461062c5780638da5cb5b1461065757806395d89b4114610682578063981d9796146106ad57610225565b8063693be489146105455780636de9f32b1461058257806370a08231146105ad578063715018a6146105ea57610225565b8063380cd858116101b157806347b5dd541161017557806347b5dd54146104745780634a2169101461049f57806355f804b3146104c85780635fd8c710146104f15780636352211e1461050857610225565b8063380cd858146103b557806338f36158146103e05780633cd4ffa61461040b578063412366f51461043457806342842e0e1461044b57610225565b80630d41dda6116101f85780630d41dda6146102f8578063109695231461032157806323b872dd1461034a57806334918dfd1461037357806335e061fc1461038a57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d1a565b61087f565b60405161025e9190612d62565b60405180910390f35b34801561027357600080fd5b5061027c610961565b6040516102899190612e16565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612e6e565b6109f3565b6040516102c69190612edc565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612f23565b610a78565b005b34801561030457600080fd5b5061031f600480360381019061031a91906130ab565b610b90565b005b34801561032d57600080fd5b50610348600480360381019061034391906131a9565b610cbb565b005b34801561035657600080fd5b50610371600480360381019061036c91906131f2565b610d51565b005b34801561037f57600080fd5b50610388610db1565b005b34801561039657600080fd5b5061039f610e59565b6040516103ac9190612d62565b60405180910390f35b3480156103c157600080fd5b506103ca610e6c565b6040516103d79190613254565b60405180910390f35b3480156103ec57600080fd5b506103f5610e71565b6040516104029190612d62565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d9190612e6e565b610e84565b005b34801561044057600080fd5b50610449610f0a565b005b34801561045757600080fd5b50610472600480360381019061046d91906131f2565b611011565b005b34801561048057600080fd5b50610489611031565b6040516104969190613254565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612e6e565b611037565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906131a9565b61121c565b005b3480156104fd57600080fd5b506105066112b2565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612e6e565b611377565b60405161053c9190612edc565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612e6e565b611429565b6040516105799190612d62565b60405180910390f35b34801561058e57600080fd5b50610597611449565b6040516105a49190613254565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf919061326f565b61145a565b6040516105e19190613254565b60405180910390f35b3480156105f657600080fd5b506105ff611512565b005b34801561060d57600080fd5b5061061661159a565b6040516106239190613254565b60405180910390f35b34801561063857600080fd5b506106416115a0565b60405161064e9190613254565b60405180910390f35b34801561066357600080fd5b5061066c6115a6565b6040516106799190612edc565b60405180910390f35b34801561068e57600080fd5b506106976115d0565b6040516106a49190612e16565b60405180910390f35b6106c760048036038101906106c29190612e6e565b611662565b005b3480156106d557600080fd5b506106f060048036038101906106eb9190612f23565b611861565b005b3480156106fe57600080fd5b50610719600480360381019061071491906132c8565b611993565b005b34801561072757600080fd5b506107306119a9565b60405161073d9190612e16565b60405180910390f35b34801561075257600080fd5b5061075b611a37565b005b34801561076957600080fd5b50610784600480360381019061077f91906133a9565b611adf565b005b34801561079257600080fd5b506107ad60048036038101906107a89190612e6e565b611b41565b6040516107ba9190612e16565b60405180910390f35b3480156107cf57600080fd5b506107d8611be8565b6040516107e59190613254565b60405180910390f35b3480156107fa57600080fd5b506108156004803603810190610810919061342c565b611bee565b6040516108229190612d62565b60405180910390f35b34801561083757600080fd5b50610840611c82565b60405161084d9190612d62565b60405180910390f35b34801561086257600080fd5b5061087d6004803603810190610878919061326f565b611c95565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095a575061095982611d8d565b5b9050919050565b6060600080546109709061349b565b80601f016020809104026020016040519081016040528092919081815260200182805461099c9061349b565b80156109e95780601f106109be576101008083540402835291602001916109e9565b820191906000526020600020905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b60006109fe82611df7565b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a349061353f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8382611377565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906135d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b13611e63565b73ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4181610b3c611e63565b611bee565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613663565b60405180910390fd5b610b8b8383611e6b565b505050565b610b98611e63565b73ffffffffffffffffffffffffffffffffffffffff16610bb66115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906136cf565b60405180910390fd5b600d60019054906101000a900460ff16610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613761565b60405180910390fd5b60005b8151811015610cb7576000610c736007611f24565b9050610c99838381518110610c8b57610c8a613781565b5b602002602001015182611f32565b610ca36007611f50565b508080610caf906137df565b915050610c5e565b5050565b610cc3611e63565b73ffffffffffffffffffffffffffffffffffffffff16610ce16115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2e906136cf565b60405180910390fd5b8060089080519060200190610d4d929190612c0b565b5050565b610d62610d5c611e63565b82611f66565b610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061389a565b60405180910390fd5b610dac838383612044565b505050565b610db9611e63565b73ffffffffffffffffffffffffffffffffffffffff16610dd76115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e24906136cf565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60029054906101000a900460ff1681565b600a81565b600d60019054906101000a900460ff1681565b610e8c611e63565b73ffffffffffffffffffffffffffffffffffffffff16610eaa6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef7906136cf565b60405180910390fd5b8060098190555050565b610f12611e63565b73ffffffffffffffffffffffffffffffffffffffff16610f306115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d906136cf565b60405180910390fd5b600d60019054906101000a900460ff16610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc9061392c565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff0219169083151502179055506110096007611f24565b600a81905550565b61102c83838360405180602001604052806000815250611adf565b505050565b600b5481565b600d60019054906101000a900460ff1615611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e906139be565b60405180910390fd5b600d60029054906101000a900460ff166110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613a2a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166110f682611377565b73ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390613abc565b60405180910390fd5b600c600082815260200190815260200160002060009054906101000a900460ff16156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490613b28565b60405180910390fd5b6001600c600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506111e2816122a0565b6001600b60008282546111f59190613b48565b925050819055506000611a0a8261120c9190613b48565b90506112183382611f32565b5050565b611224611e63565b73ffffffffffffffffffffffffffffffffffffffff166112426115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906136cf565b60405180910390fd5b80600f90805190602001906112ae929190612c0b565b5050565b6112ba611e63565b73ffffffffffffffffffffffffffffffffffffffff166112d86115a6565b73ffffffffffffffffffffffffffffffffffffffff161461132e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611325906136cf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611374573d6000803e3d6000fd5b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790613c10565b60405180910390fd5b80915050919050565b600c6020528060005260406000206000915054906101000a900460ff1681565b60006114556007611f24565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290613ca2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61151a611e63565b73ffffffffffffffffffffffffffffffffffffffff166115386115a6565b73ffffffffffffffffffffffffffffffffffffffff161461158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906136cf565b60405180910390fd5b61159860006123b1565b565b60095481565b600e5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115df9061349b565b80601f016020809104026020016040519081016040528092919081815260200182805461160b9061349b565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff166116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890613d0e565b60405180910390fd5b600d60019054906101000a900460ff16611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613761565b60405180910390fd5b62d8dbfe431061170f57600080fd5b6000811180156117205750600a8111155b61175f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175690613d7a565b60405180910390fd5b600a548161176d6007611f24565b6117779190613b48565b11156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af90613de6565b60405180910390fd5b806009546117c69190613e06565b341015611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff90613eac565b60405180910390fd5b60005b8181101561185d57600061181f6007611f24565b9050600a5461182e6007611f24565b10156118495761183e3382611f32565b6118486007611f50565b5b508080611855906137df565b91505061180b565b5050565b611869611e63565b73ffffffffffffffffffffffffffffffffffffffff166118876115a6565b73ffffffffffffffffffffffffffffffffffffffff16146118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d4906136cf565b60405180910390fd5b60006118e96007611f24565b90506000821180156118fd5750600e548211155b61193c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193390613f18565b60405180910390fd5b60005b828110156119795761195c8482846119579190613b48565b611f32565b6119666007611f50565b8080611971906137df565b91505061193f565b5081600e546119889190613f38565b600e81905550505050565b6119a561199e611e63565b8383612477565b5050565b600880546119b69061349b565b80601f01602080910402602001604051908101604052809291908181526020018280546119e29061349b565b8015611a2f5780601f10611a0457610100808354040283529160200191611a2f565b820191906000526020600020905b815481529060010190602001808311611a1257829003601f168201915b505050505081565b611a3f611e63565b73ffffffffffffffffffffffffffffffffffffffff16611a5d6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaa906136cf565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b611af0611aea611e63565b83611f66565b611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b269061389a565b60405180910390fd5b611b3b848484846125e4565b50505050565b6060611b4c82611df7565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613fde565b60405180910390fd5b6000611b95612640565b90506000815111611bb55760405180602001604052806000815250611be0565b80611bbf846126d2565b604051602001611bd092919061403a565b6040516020818303038152906040525b915050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611c9d611e63565b73ffffffffffffffffffffffffffffffffffffffff16611cbb6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d08906136cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906140d0565b60405180910390fd5b611d8a816123b1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ede83611377565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b611f4c828260405180602001604052806000815250612833565b5050565b6001816000016000828254019250508190555050565b6000611f7182611df7565b611fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa790614162565b60405180910390fd5b6000611fbb83611377565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202a57508373ffffffffffffffffffffffffffffffffffffffff16612012846109f3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203b575061203a8185611bee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661206482611377565b73ffffffffffffffffffffffffffffffffffffffff16146120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906141f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212190614286565b60405180910390fd5b61213583838361288e565b612140600082611e6b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121909190613f38565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e79190613b48565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006122ab82611377565b90506122b98160008461288e565b6122c4600083611e6b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123149190613f38565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd906142f2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125d79190612d62565b60405180910390a3505050565b6125ef848484612044565b6125fb84848484612893565b61263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190614384565b60405180910390fd5b50505050565b6060600f805461264f9061349b565b80601f016020809104026020016040519081016040528092919081815260200182805461267b9061349b565b80156126c85780601f1061269d576101008083540402835291602001916126c8565b820191906000526020600020905b8154815290600101906020018083116126ab57829003601f168201915b5050505050905090565b6060600082141561271a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282e565b600082905060005b6000821461274c578080612735906137df565b915050600a8261274591906143d3565b9150612722565b60008167ffffffffffffffff81111561276857612767612f68565b5b6040519080825280601f01601f19166020018201604052801561279a5781602001600182028036833780820191505090505b5090505b60008514612827576001826127b39190613f38565b9150600a856127c29190614404565b60306127ce9190613b48565b60f81b8183815181106127e4576127e3613781565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561282091906143d3565b945061279e565b8093505050505b919050565b61283d8383612a2a565b61284a6000848484612893565b612889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288090614384565b60405180910390fd5b505050565b505050565b60006128b48473ffffffffffffffffffffffffffffffffffffffff16612bf8565b15612a1d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128dd611e63565b8786866040518563ffffffff1660e01b81526004016128ff949392919061448a565b602060405180830381600087803b15801561291957600080fd5b505af192505050801561294a57506040513d601f19601f8201168201806040525081019061294791906144eb565b60015b6129cd573d806000811461297a576040519150601f19603f3d011682016040523d82523d6000602084013e61297f565b606091505b506000815114156129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc90614384565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a22565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9190614564565b60405180910390fd5b612aa381611df7565b15612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada906145d0565b60405180910390fd5b612aef6000838361288e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b3f9190613b48565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c179061349b565b90600052602060002090601f016020900481019282612c395760008555612c80565b82601f10612c5257805160ff1916838001178555612c80565b82800160010185558215612c80579182015b82811115612c7f578251825591602001919060010190612c64565b5b509050612c8d9190612c91565b5090565b5b80821115612caa576000816000905550600101612c92565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cf781612cc2565b8114612d0257600080fd5b50565b600081359050612d1481612cee565b92915050565b600060208284031215612d3057612d2f612cb8565b5b6000612d3e84828501612d05565b91505092915050565b60008115159050919050565b612d5c81612d47565b82525050565b6000602082019050612d776000830184612d53565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612db7578082015181840152602081019050612d9c565b83811115612dc6576000848401525b50505050565b6000601f19601f8301169050919050565b6000612de882612d7d565b612df28185612d88565b9350612e02818560208601612d99565b612e0b81612dcc565b840191505092915050565b60006020820190508181036000830152612e308184612ddd565b905092915050565b6000819050919050565b612e4b81612e38565b8114612e5657600080fd5b50565b600081359050612e6881612e42565b92915050565b600060208284031215612e8457612e83612cb8565b5b6000612e9284828501612e59565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ec682612e9b565b9050919050565b612ed681612ebb565b82525050565b6000602082019050612ef16000830184612ecd565b92915050565b612f0081612ebb565b8114612f0b57600080fd5b50565b600081359050612f1d81612ef7565b92915050565b60008060408385031215612f3a57612f39612cb8565b5b6000612f4885828601612f0e565b9250506020612f5985828601612e59565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612fa082612dcc565b810181811067ffffffffffffffff82111715612fbf57612fbe612f68565b5b80604052505050565b6000612fd2612cae565b9050612fde8282612f97565b919050565b600067ffffffffffffffff821115612ffe57612ffd612f68565b5b602082029050602081019050919050565b600080fd5b600061302761302284612fe3565b612fc8565b9050808382526020820190506020840283018581111561304a5761304961300f565b5b835b81811015613073578061305f8882612f0e565b84526020840193505060208101905061304c565b5050509392505050565b600082601f83011261309257613091612f63565b5b81356130a2848260208601613014565b91505092915050565b6000602082840312156130c1576130c0612cb8565b5b600082013567ffffffffffffffff8111156130df576130de612cbd565b5b6130eb8482850161307d565b91505092915050565b600080fd5b600067ffffffffffffffff82111561311457613113612f68565b5b61311d82612dcc565b9050602081019050919050565b82818337600083830152505050565b600061314c613147846130f9565b612fc8565b905082815260208101848484011115613168576131676130f4565b5b61317384828561312a565b509392505050565b600082601f8301126131905761318f612f63565b5b81356131a0848260208601613139565b91505092915050565b6000602082840312156131bf576131be612cb8565b5b600082013567ffffffffffffffff8111156131dd576131dc612cbd565b5b6131e98482850161317b565b91505092915050565b60008060006060848603121561320b5761320a612cb8565b5b600061321986828701612f0e565b935050602061322a86828701612f0e565b925050604061323b86828701612e59565b9150509250925092565b61324e81612e38565b82525050565b60006020820190506132696000830184613245565b92915050565b60006020828403121561328557613284612cb8565b5b600061329384828501612f0e565b91505092915050565b6132a581612d47565b81146132b057600080fd5b50565b6000813590506132c28161329c565b92915050565b600080604083850312156132df576132de612cb8565b5b60006132ed85828601612f0e565b92505060206132fe858286016132b3565b9150509250929050565b600067ffffffffffffffff82111561332357613322612f68565b5b61332c82612dcc565b9050602081019050919050565b600061334c61334784613308565b612fc8565b905082815260208101848484011115613368576133676130f4565b5b61337384828561312a565b509392505050565b600082601f8301126133905761338f612f63565b5b81356133a0848260208601613339565b91505092915050565b600080600080608085870312156133c3576133c2612cb8565b5b60006133d187828801612f0e565b94505060206133e287828801612f0e565b93505060406133f387828801612e59565b925050606085013567ffffffffffffffff81111561341457613413612cbd565b5b6134208782880161337b565b91505092959194509250565b6000806040838503121561344357613442612cb8565b5b600061345185828601612f0e565b925050602061346285828601612f0e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134b357607f821691505b602082108114156134c7576134c661346c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613529602c83612d88565b9150613534826134cd565b604082019050919050565b600060208201905081810360008301526135588161351c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006135bb602183612d88565b91506135c68261355f565b604082019050919050565b600060208201905081810360008301526135ea816135ae565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061364d603883612d88565b9150613658826135f1565b604082019050919050565b6000602082019050818103600083015261367c81613640565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136b9602083612d88565b91506136c482613683565b602082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b7f54686520506f7274616c20697320636c6f73656420616e642063616e6e6f742060008201527f62652072656f70656e6564000000000000000000000000000000000000000000602082015250565b600061374b602b83612d88565b9150613756826136ef565b604082019050919050565b6000602082019050818103600083015261377a8161373e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137ea82612e38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561381d5761381c6137b0565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613884603183612d88565b915061388f82613828565b604082019050919050565b600060208201905081810360008301526138b381613877565b9050919050565b7f54686520506f7274616c20697320616c726561647920636c6f73656420616e6460008201527f2063616e6e6f742062652072656f70656e656400000000000000000000000000602082015250565b6000613916603383612d88565b9150613921826138ba565b604082019050919050565b6000602082019050818103600083015261394581613909565b9050919050565b7f43616e6e6f7420657261736520616363657373207768696c6520636f6e6e656360008201527f74656420746f20486f7374000000000000000000000000000000000000000000602082015250565b60006139a8602b83612d88565b91506139b38261394c565b604082019050919050565b600060208201905081810360008301526139d78161399b565b9050919050565b7f4275726e206d656368616e69736d206e6f742079657420616374697665000000600082015250565b6000613a14601d83612d88565b9150613a1f826139de565b602082019050919050565b60006020820190508181036000830152613a4381613a07565b9050919050565b7f596f7520617265206e6f7420636f6e6e656374656420746f207468697320486f60008201527f7374000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aa6602283612d88565b9150613ab182613a4a565b604082019050919050565b60006020820190508181036000830152613ad581613a99565b9050919050565b7f34303420486f7374206e6f7420666f756e640000000000000000000000000000600082015250565b6000613b12601283612d88565b9150613b1d82613adc565b602082019050919050565b60006020820190508181036000830152613b4181613b05565b9050919050565b6000613b5382612e38565b9150613b5e83612e38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9357613b926137b0565b5b828201905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613bfa602983612d88565b9150613c0582613b9e565b604082019050919050565b60006020820190508181036000830152613c2981613bed565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613c8c602a83612d88565b9150613c9782613c30565b604082019050919050565b60006020820190508181036000830152613cbb81613c7f565b9050919050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000613cf8601283612d88565b9150613d0382613cc2565b602082019050919050565b60006020820190508181036000830152613d2781613ceb565b9050919050565b7f54686973206973206e6f7420706f737369626c65000000000000000000000000600082015250565b6000613d64601483612d88565b9150613d6f82613d2e565b602082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f537570706c7920776f756c642062652065786365656465640000000000000000600082015250565b6000613dd0601883612d88565b9150613ddb82613d9a565b602082019050919050565b60006020820190508181036000830152613dff81613dc3565b9050919050565b6000613e1182612e38565b9150613e1c83612e38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e5557613e546137b0565b5b828202905092915050565b7f45746865722076616c75652073656e7420697320696e636f7272656374000000600082015250565b6000613e96601d83612d88565b9150613ea182613e60565b602082019050919050565b60006020820190508181036000830152613ec581613e89565b9050919050565b7f4e4f504500000000000000000000000000000000000000000000000000000000600082015250565b6000613f02600483612d88565b9150613f0d82613ecc565b602082019050919050565b60006020820190508181036000830152613f3181613ef5565b9050919050565b6000613f4382612e38565b9150613f4e83612e38565b925082821015613f6157613f606137b0565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613fc8602f83612d88565b9150613fd382613f6c565b604082019050919050565b60006020820190508181036000830152613ff781613fbb565b9050919050565b600081905092915050565b600061401482612d7d565b61401e8185613ffe565b935061402e818560208601612d99565b80840191505092915050565b60006140468285614009565b91506140528284614009565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140ba602683612d88565b91506140c58261405e565b604082019050919050565b600060208201905081810360008301526140e9816140ad565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061414c602c83612d88565b9150614157826140f0565b604082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006141de602983612d88565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614270602483612d88565b915061427b82614214565b604082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006142dc601983612d88565b91506142e7826142a6565b602082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061436e603283612d88565b915061437982614312565b604082019050919050565b6000602082019050818103600083015261439d81614361565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143de82612e38565b91506143e983612e38565b9250826143f9576143f86143a4565b5b828204905092915050565b600061440f82612e38565b915061441a83612e38565b92508261442a576144296143a4565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061445c82614435565b6144668185614440565b9350614476818560208601612d99565b61447f81612dcc565b840191505092915050565b600060808201905061449f6000830187612ecd565b6144ac6020830186612ecd565b6144b96040830185613245565b81810360608301526144cb8184614451565b905095945050505050565b6000815190506144e581612cee565b92915050565b60006020828403121561450157614500612cb8565b5b600061450f848285016144d6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061454e602083612d88565b915061455982614518565b602082019050919050565b6000602082019050818103600083015261457d81614541565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006145ba601c83612d88565b91506145c582614584565b602082019050919050565b600060208201905081810360008301526145e9816145ad565b905091905056fea2646970667358221220e3d46ccc572762f7668e80b65f560011022c252a5aeb8839f4e63c5c3262fad564736f6c63430008090033

Deployed Bytecode Sourcemap

38604:4372:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26115:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27060:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28619:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28142:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40890:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40157:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29369:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40526:89;;;;;;;;;;;;;:::i;:::-;;39207:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38939:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39169:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40037:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41260:227;;;;;;;;;;;;;:::i;:::-;;29779:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39038:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42390:581;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40412:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39470:114;;;;;;;;;;;;;:::i;:::-;;26754:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39078:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40714:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26484:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7115:103;;;;;;;;;;;;;:::i;:::-;;38866:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39321:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6464:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27229:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41499:882;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39596:431;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28912:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38745:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40623:83;;;;;;;;;;;;;:::i;:::-;;30035:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27404:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38993:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29138:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39130:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7373:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26115:305;26217:4;26269:25;26254:40;;;:11;:40;;;;:105;;;;26326:33;26311:48;;;:11;:48;;;;26254:105;:158;;;;26376:36;26400:11;26376:23;:36::i;:::-;26254:158;26234:178;;26115:305;;;:::o;27060:100::-;27114:13;27147:5;27140:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27060:100;:::o;28619:221::-;28695:7;28723:16;28731:7;28723;:16::i;:::-;28715:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28808:15;:24;28824:7;28808:24;;;;;;;;;;;;;;;;;;;;;28801:31;;28619:221;;;:::o;28142:411::-;28223:13;28239:23;28254:7;28239:14;:23::i;:::-;28223:39;;28287:5;28281:11;;:2;:11;;;;28273:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28381:5;28365:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28390:37;28407:5;28414:12;:10;:12::i;:::-;28390:16;:37::i;:::-;28365:62;28343:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28524:21;28533:2;28537:7;28524:8;:21::i;:::-;28212:341;28142:411;;:::o;40890:358::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40979:12:::1;;;;;;;;;;;40971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41055:9;41050:191;41074:10;:17;41070:1;:21;41050:191;;;41103:14;41120:22;:12;:20;:22::i;:::-;41103:39;;41154:35;41164:10;41175:1;41164:13;;;;;;;;:::i;:::-;;;;;;;;41179:9;41154;:35::i;:::-;41204:24;:12;:22;:24::i;:::-;41098:143;41093:3;;;;;:::i;:::-;;;;41050:191;;;;40890:358:::0;:::o;40157:125::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40260:14:::1;40242:15;:32;;;;;;;;;;;;:::i;:::-;;40157:125:::0;:::o;29369:339::-;29564:41;29583:12;:10;:12::i;:::-;29597:7;29564:18;:41::i;:::-;29556:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29672:28;29682:4;29688:2;29692:7;29672:9;:28::i;:::-;29369:339;;;:::o;40526:89::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40595:12:::1;;;;;;;;;;;40594:13;40579:12;;:28;;;;;;;;;;;;;;;;;;40526:89::o:0;39207:29::-;;;;;;;;;;;;;:::o;38939:45::-;38982:2;38939:45;:::o;39169:31::-;;;;;;;;;;;;;:::o;40037:112::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40133:8:::1;40113:17;:28;;;;40037:112:::0;:::o;41260:227::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41322:12:::1;;;;;;;;;;;41314:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;41417:12;;;;;;;;;;;41416:13;41401:12;;:28;;;;;;;;;;;;;;;;;;41457:22;:12;:20;:22::i;:::-;41440:14;:39;;;;41260:227::o:0;29779:185::-;29917:39;29934:4;29940:2;29944:7;29917:39;;;;;;;;;;;;:16;:39::i;:::-;29779:185;;;:::o;39038:31::-;;;;:::o;42390:581::-;42463:12;;;;;;;;;;;42462:13;42454:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42542:9;;;;;;;;;;;42534:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;42630:10;42604:36;;:22;42612:13;42604:7;:22::i;:::-;:36;;;42596:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;42699:11;:26;42711:13;42699:26;;;;;;;;;;;;;;;;;;;;;42698:27;42690:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42790:4;42761:11;:26;42773:13;42761:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;42805:20;42811:13;42805:5;:20::i;:::-;42854:1;42838:12;;:17;;;;;;;:::i;:::-;;;;;;;;42868:23;42910:4;42894:13;:20;;;;:::i;:::-;42868:46;;42925:38;42935:10;42947:15;42925:9;:38::i;:::-;42443:528;42390:581;:::o;40412:104::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40501:7:::1;40485:13;:23;;;;;;;;;;;;:::i;:::-;;40412:104:::0;:::o;39470:114::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39533:10:::1;39525:28;;:51;39554:21;39525:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39470:114::o:0;26754:239::-;26826:7;26846:13;26862:7;:16;26870:7;26862:16;;;;;;;;;;;;;;;;;;;;;26846:32;;26914:1;26897:19;;:5;:19;;;;26889:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26980:5;26973:12;;;26754:239;;;:::o;39078:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;40714:104::-;40759:7;40786:22;:12;:20;:22::i;:::-;40779:29;;40714:104;:::o;26484:208::-;26556:7;26601:1;26584:19;;:5;:19;;;;26576:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26668:9;:16;26678:5;26668:16;;;;;;;;;;;;;;;;26661:23;;26484:208;;;:::o;7115:103::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7180:30:::1;7207:1;7180:18;:30::i;:::-;7115:103::o:0;38866:52::-;;;;:::o;39321:33::-;;;;:::o;6464:87::-;6510:7;6537:6;;;;;;;;;;;6530:13;;6464:87;:::o;27229:104::-;27285:13;27318:7;27311:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27229:104;:::o;41499:882::-;41578:12;;;;;;;;;;;41570:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;41632:12;;;;;;;;;;;41624:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41726:8;41711:12;:23;41703:32;;;;;;41803:1;41786:14;:18;:59;;;;;38982:2;41808:14;:37;;41786:59;41778:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;41932:14;;41914;41889:22;:12;:20;:22::i;:::-;:39;;;;:::i;:::-;:57;;41881:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;42027:14;42007:17;;:34;;;;:::i;:::-;41994:9;:47;;41986:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;42100:6;42096:276;42116:14;42112:1;:18;42096:276;;;42152:14;42169:22;:12;:20;:22::i;:::-;42152:39;;42235:14;;42210:22;:12;:20;:22::i;:::-;:39;42206:155;;;42270:32;42280:10;42292:9;42270;:32::i;:::-;42321:24;:12;:22;:24::i;:::-;42206:155;42137:235;42132:3;;;;;:::i;:::-;;;;42096:276;;;;41499:882;:::o;39596:431::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39695:11:::1;39709:22;:12;:20;:22::i;:::-;39695:36;;39767:1;39750:14;:18;:55;;;;;39790:15;;39772:14;:33;;39750:55;39742:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;39830:6;39825:134;39846:14;39842:1;:18;39825:134;;;39882:26;39892:3;39906:1;39897:6;:10;;;;:::i;:::-;39882:9;:26::i;:::-;39923:24;:12;:22;:24::i;:::-;39862:3;;;;;:::i;:::-;;;;39825:134;;;;40005:14;39987:15;;:32;;;;:::i;:::-;39969:15;:50;;;;39676:351;39596:431:::0;;:::o;28912:155::-;29007:52;29026:12;:10;:12::i;:::-;29040:8;29050;29007:18;:52::i;:::-;28912:155;;:::o;38745:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40623:83::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40689:9:::1;;;;;;;;;;;40688:10;40676:9;;:22;;;;;;;;;;;;;;;;;;40623:83::o:0;30035:328::-;30210:41;30229:12;:10;:12::i;:::-;30243:7;30210:18;:41::i;:::-;30202:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30316:39;30330:4;30336:2;30340:7;30349:5;30316:13;:39::i;:::-;30035:328;;;;:::o;27404:334::-;27477:13;27511:16;27519:7;27511;:16::i;:::-;27503:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:21;27616:10;:8;:10::i;:::-;27592:34;;27668:1;27650:7;27644:21;:25;:86;;;;;;;;;;;;;;;;;27696:7;27705:18;:7;:16;:18::i;:::-;27679:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27644:86;27637:93;;;27404:334;;;:::o;38993:36::-;;;;:::o;29138:164::-;29235:4;29259:18;:25;29278:5;29259:25;;;;;;;;;;;;;;;:35;29285:8;29259:35;;;;;;;;;;;;;;;;;;;;;;;;;29252:42;;29138:164;;;;:::o;39130:32::-;;;;;;;;;;;;;:::o;7373:201::-;6695:12;:10;:12::i;:::-;6684:23;;:7;:5;:7::i;:::-;:23;;;6676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7482:1:::1;7462:22;;:8;:22;;;;7454:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7538:28;7557:8;7538:18;:28::i;:::-;7373:201:::0;:::o;18896:157::-;18981:4;19020:25;19005:40;;;:11;:40;;;;18998:47;;18896:157;;;:::o;31873:127::-;31938:4;31990:1;31962:30;;:7;:16;31970:7;31962:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31955:37;;31873:127;;;:::o;5188:98::-;5241:7;5268:10;5261:17;;5188:98;:::o;35855:174::-;35957:2;35930:15;:24;35946:7;35930:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36013:7;36009:2;35975:46;;35984:23;35999:7;35984:14;:23::i;:::-;35975:46;;;;;;;;;;;;35855:174;;:::o;1792:114::-;1857:7;1884;:14;;;1877:21;;1792:114;;;:::o;32857:110::-;32933:26;32943:2;32947:7;32933:26;;;;;;;;;;;;:9;:26::i;:::-;32857:110;;:::o;1914:127::-;2021:1;2003:7;:14;;;:19;;;;;;;;;;;1914:127;:::o;32167:348::-;32260:4;32285:16;32293:7;32285;:16::i;:::-;32277:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32361:13;32377:23;32392:7;32377:14;:23::i;:::-;32361:39;;32430:5;32419:16;;:7;:16;;;:51;;;;32463:7;32439:31;;:20;32451:7;32439:11;:20::i;:::-;:31;;;32419:51;:87;;;;32474:32;32491:5;32498:7;32474:16;:32::i;:::-;32419:87;32411:96;;;32167:348;;;;:::o;35159:578::-;35318:4;35291:31;;:23;35306:7;35291:14;:23::i;:::-;:31;;;35283:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;35401:1;35387:16;;:2;:16;;;;35379:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35457:39;35478:4;35484:2;35488:7;35457:20;:39::i;:::-;35561:29;35578:1;35582:7;35561:8;:29::i;:::-;35622:1;35603:9;:15;35613:4;35603:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35651:1;35634:9;:13;35644:2;35634:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35682:2;35663:7;:16;35671:7;35663:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35721:7;35717:2;35702:27;;35711:4;35702:27;;;;;;;;;;;;35159:578;;;:::o;34462:360::-;34522:13;34538:23;34553:7;34538:14;:23::i;:::-;34522:39;;34574:48;34595:5;34610:1;34614:7;34574:20;:48::i;:::-;34663:29;34680:1;34684:7;34663:8;:29::i;:::-;34725:1;34705:9;:16;34715:5;34705:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;34744:7;:16;34752:7;34744:16;;;;;;;;;;;;34737:23;;;;;;;;;;;34806:7;34802:1;34778:36;;34787:5;34778:36;;;;;;;;;;;;34511:311;34462:360;:::o;7734:191::-;7808:16;7827:6;;;;;;;;;;;7808:25;;7853:8;7844:6;;:17;;;;;;;;;;;;;;;;;;7908:8;7877:40;;7898:8;7877:40;;;;;;;;;;;;7797:128;7734:191;:::o;36171:315::-;36326:8;36317:17;;:5;:17;;;;36309:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36413:8;36375:18;:25;36394:5;36375:25;;;;;;;;;;;;;;;:35;36401:8;36375:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36459:8;36437:41;;36452:5;36437:41;;;36469:8;36437:41;;;;;;:::i;:::-;;;;;;;;36171:315;;;:::o;31245:::-;31402:28;31412:4;31418:2;31422:7;31402:9;:28::i;:::-;31449:48;31472:4;31478:2;31482:7;31491:5;31449:22;:48::i;:::-;31441:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31245:315;;;;:::o;40290:114::-;40350:13;40383;40376:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40290:114;:::o;2750:723::-;2806:13;3036:1;3027:5;:10;3023:53;;;3054:10;;;;;;;;;;;;;;;;;;;;;3023:53;3086:12;3101:5;3086:20;;3117:14;3142:78;3157:1;3149:4;:9;3142:78;;3175:8;;;;;:::i;:::-;;;;3206:2;3198:10;;;;;:::i;:::-;;;3142:78;;;3230:19;3262:6;3252:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3230:39;;3280:154;3296:1;3287:5;:10;3280:154;;3324:1;3314:11;;;;;:::i;:::-;;;3391:2;3383:5;:10;;;;:::i;:::-;3370:2;:24;;;;:::i;:::-;3357:39;;3340:6;3347;3340:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3420:2;3411:11;;;;;:::i;:::-;;;3280:154;;;3458:6;3444:21;;;;;2750:723;;;;:::o;33194:321::-;33324:18;33330:2;33334:7;33324:5;:18::i;:::-;33375:54;33406:1;33410:2;33414:7;33423:5;33375:22;:54::i;:::-;33353:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33194:321;;;:::o;38422:126::-;;;;:::o;37051:799::-;37206:4;37227:15;:2;:13;;;:15::i;:::-;37223:620;;;37279:2;37263:36;;;37300:12;:10;:12::i;:::-;37314:4;37320:7;37329:5;37263:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37259:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37522:1;37505:6;:13;:18;37501:272;;;37548:60;;;;;;;;;;:::i;:::-;;;;;;;;37501:272;37723:6;37717:13;37708:6;37704:2;37700:15;37693:38;37259:529;37396:41;;;37386:51;;;:6;:51;;;;37379:58;;;;;37223:620;37827:4;37820:11;;37051:799;;;;;;;:::o;33851:382::-;33945:1;33931:16;;:2;:16;;;;33923:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34004:16;34012:7;34004;:16::i;:::-;34003:17;33995:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34066:45;34095:1;34099:2;34103:7;34066:20;:45::i;:::-;34141:1;34124:9;:13;34134:2;34124:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34172:2;34153:7;:16;34161:7;34153:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34217:7;34213:2;34192:33;;34209:1;34192:33;;;;;;;;;;;;33851:382;;:::o;8752:387::-;8812:4;9020:12;9087:7;9075:20;9067:28;;9130:1;9123:4;:8;9116:15;;;8752:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:180;5109:77;5106:1;5099:88;5206:4;5203:1;5196:15;5230:4;5227:1;5220:15;5247:281;5330:27;5352:4;5330:27;:::i;:::-;5322:6;5318:40;5460:6;5448:10;5445:22;5424:18;5412:10;5409:34;5406:62;5403:88;;;5471:18;;:::i;:::-;5403:88;5511:10;5507:2;5500:22;5290:238;5247:281;;:::o;5534:129::-;5568:6;5595:20;;:::i;:::-;5585:30;;5624:33;5652:4;5644:6;5624:33;:::i;:::-;5534:129;;;:::o;5669:311::-;5746:4;5836:18;5828:6;5825:30;5822:56;;;5858:18;;:::i;:::-;5822:56;5908:4;5900:6;5896:17;5888:25;;5968:4;5962;5958:15;5950:23;;5669:311;;;:::o;5986:117::-;6095:1;6092;6085:12;6126:710;6222:5;6247:81;6263:64;6320:6;6263:64;:::i;:::-;6247:81;:::i;:::-;6238:90;;6348:5;6377:6;6370:5;6363:21;6411:4;6404:5;6400:16;6393:23;;6464:4;6456:6;6452:17;6444:6;6440:30;6493:3;6485:6;6482:15;6479:122;;;6512:79;;:::i;:::-;6479:122;6627:6;6610:220;6644:6;6639:3;6636:15;6610:220;;;6719:3;6748:37;6781:3;6769:10;6748:37;:::i;:::-;6743:3;6736:50;6815:4;6810:3;6806:14;6799:21;;6686:144;6670:4;6665:3;6661:14;6654:21;;6610:220;;;6614:21;6228:608;;6126:710;;;;;:::o;6859:370::-;6930:5;6979:3;6972:4;6964:6;6960:17;6956:27;6946:122;;6987:79;;:::i;:::-;6946:122;7104:6;7091:20;7129:94;7219:3;7211:6;7204:4;7196:6;7192:17;7129:94;:::i;:::-;7120:103;;6936:293;6859:370;;;;:::o;7235:539::-;7319:6;7368:2;7356:9;7347:7;7343:23;7339:32;7336:119;;;7374:79;;:::i;:::-;7336:119;7522:1;7511:9;7507:17;7494:31;7552:18;7544:6;7541:30;7538:117;;;7574:79;;:::i;:::-;7538:117;7679:78;7749:7;7740:6;7729:9;7725:22;7679:78;:::i;:::-;7669:88;;7465:302;7235:539;;;;:::o;7780:117::-;7889:1;7886;7879:12;7903:308;7965:4;8055:18;8047:6;8044:30;8041:56;;;8077:18;;:::i;:::-;8041:56;8115:29;8137:6;8115:29;:::i;:::-;8107:37;;8199:4;8193;8189:15;8181:23;;7903:308;;;:::o;8217:154::-;8301:6;8296:3;8291;8278:30;8363:1;8354:6;8349:3;8345:16;8338:27;8217:154;;;:::o;8377:412::-;8455:5;8480:66;8496:49;8538:6;8496:49;:::i;:::-;8480:66;:::i;:::-;8471:75;;8569:6;8562:5;8555:21;8607:4;8600:5;8596:16;8645:3;8636:6;8631:3;8627:16;8624:25;8621:112;;;8652:79;;:::i;:::-;8621:112;8742:41;8776:6;8771:3;8766;8742:41;:::i;:::-;8461:328;8377:412;;;;;:::o;8809:340::-;8865:5;8914:3;8907:4;8899:6;8895:17;8891:27;8881:122;;8922:79;;:::i;:::-;8881:122;9039:6;9026:20;9064:79;9139:3;9131:6;9124:4;9116:6;9112:17;9064:79;:::i;:::-;9055:88;;8871:278;8809:340;;;;:::o;9155:509::-;9224:6;9273:2;9261:9;9252:7;9248:23;9244:32;9241:119;;;9279:79;;:::i;:::-;9241:119;9427:1;9416:9;9412:17;9399:31;9457:18;9449:6;9446:30;9443:117;;;9479:79;;:::i;:::-;9443:117;9584:63;9639:7;9630:6;9619:9;9615:22;9584:63;:::i;:::-;9574:73;;9370:287;9155:509;;;;:::o;9670:619::-;9747:6;9755;9763;9812:2;9800:9;9791:7;9787:23;9783:32;9780:119;;;9818:79;;:::i;:::-;9780:119;9938:1;9963:53;10008:7;9999:6;9988:9;9984:22;9963:53;:::i;:::-;9953:63;;9909:117;10065:2;10091:53;10136:7;10127:6;10116:9;10112:22;10091:53;:::i;:::-;10081:63;;10036:118;10193:2;10219:53;10264:7;10255:6;10244:9;10240:22;10219:53;:::i;:::-;10209:63;;10164:118;9670:619;;;;;:::o;10295:118::-;10382:24;10400:5;10382:24;:::i;:::-;10377:3;10370:37;10295:118;;:::o;10419:222::-;10512:4;10550:2;10539:9;10535:18;10527:26;;10563:71;10631:1;10620:9;10616:17;10607:6;10563:71;:::i;:::-;10419:222;;;;:::o;10647:329::-;10706:6;10755:2;10743:9;10734:7;10730:23;10726:32;10723:119;;;10761:79;;:::i;:::-;10723:119;10881:1;10906:53;10951:7;10942:6;10931:9;10927:22;10906:53;:::i;:::-;10896:63;;10852:117;10647:329;;;;:::o;10982:116::-;11052:21;11067:5;11052:21;:::i;:::-;11045:5;11042:32;11032:60;;11088:1;11085;11078:12;11032:60;10982:116;:::o;11104:133::-;11147:5;11185:6;11172:20;11163:29;;11201:30;11225:5;11201:30;:::i;:::-;11104:133;;;;:::o;11243:468::-;11308:6;11316;11365:2;11353:9;11344:7;11340:23;11336:32;11333:119;;;11371:79;;:::i;:::-;11333:119;11491:1;11516:53;11561:7;11552:6;11541:9;11537:22;11516:53;:::i;:::-;11506:63;;11462:117;11618:2;11644:50;11686:7;11677:6;11666:9;11662:22;11644:50;:::i;:::-;11634:60;;11589:115;11243:468;;;;;:::o;11717:307::-;11778:4;11868:18;11860:6;11857:30;11854:56;;;11890:18;;:::i;:::-;11854:56;11928:29;11950:6;11928:29;:::i;:::-;11920:37;;12012:4;12006;12002:15;11994:23;;11717:307;;;:::o;12030:410::-;12107:5;12132:65;12148:48;12189:6;12148:48;:::i;:::-;12132:65;:::i;:::-;12123:74;;12220:6;12213:5;12206:21;12258:4;12251:5;12247:16;12296:3;12287:6;12282:3;12278:16;12275:25;12272:112;;;12303:79;;:::i;:::-;12272:112;12393:41;12427:6;12422:3;12417;12393:41;:::i;:::-;12113:327;12030:410;;;;;:::o;12459:338::-;12514:5;12563:3;12556:4;12548:6;12544:17;12540:27;12530:122;;12571:79;;:::i;:::-;12530:122;12688:6;12675:20;12713:78;12787:3;12779:6;12772:4;12764:6;12760:17;12713:78;:::i;:::-;12704:87;;12520:277;12459:338;;;;:::o;12803:943::-;12898:6;12906;12914;12922;12971:3;12959:9;12950:7;12946:23;12942:33;12939:120;;;12978:79;;:::i;:::-;12939:120;13098:1;13123:53;13168:7;13159:6;13148:9;13144:22;13123:53;:::i;:::-;13113:63;;13069:117;13225:2;13251:53;13296:7;13287:6;13276:9;13272:22;13251:53;:::i;:::-;13241:63;;13196:118;13353:2;13379:53;13424:7;13415:6;13404:9;13400:22;13379:53;:::i;:::-;13369:63;;13324:118;13509:2;13498:9;13494:18;13481:32;13540:18;13532:6;13529:30;13526:117;;;13562:79;;:::i;:::-;13526:117;13667:62;13721:7;13712:6;13701:9;13697:22;13667:62;:::i;:::-;13657:72;;13452:287;12803:943;;;;;;;:::o;13752:474::-;13820:6;13828;13877:2;13865:9;13856:7;13852:23;13848:32;13845:119;;;13883:79;;:::i;:::-;13845:119;14003:1;14028:53;14073:7;14064:6;14053:9;14049:22;14028:53;:::i;:::-;14018:63;;13974:117;14130:2;14156:53;14201:7;14192:6;14181:9;14177:22;14156:53;:::i;:::-;14146:63;;14101:118;13752:474;;;;;:::o;14232:180::-;14280:77;14277:1;14270:88;14377:4;14374:1;14367:15;14401:4;14398:1;14391:15;14418:320;14462:6;14499:1;14493:4;14489:12;14479:22;;14546:1;14540:4;14536:12;14567:18;14557:81;;14623:4;14615:6;14611:17;14601:27;;14557:81;14685:2;14677:6;14674:14;14654:18;14651:38;14648:84;;;14704:18;;:::i;:::-;14648:84;14469:269;14418:320;;;:::o;14744:231::-;14884:34;14880:1;14872:6;14868:14;14861:58;14953:14;14948:2;14940:6;14936:15;14929:39;14744:231;:::o;14981:366::-;15123:3;15144:67;15208:2;15203:3;15144:67;:::i;:::-;15137:74;;15220:93;15309:3;15220:93;:::i;:::-;15338:2;15333:3;15329:12;15322:19;;14981:366;;;:::o;15353:419::-;15519:4;15557:2;15546:9;15542:18;15534:26;;15606:9;15600:4;15596:20;15592:1;15581:9;15577:17;15570:47;15634:131;15760:4;15634:131;:::i;:::-;15626:139;;15353:419;;;:::o;15778:220::-;15918:34;15914:1;15906:6;15902:14;15895:58;15987:3;15982:2;15974:6;15970:15;15963:28;15778:220;:::o;16004:366::-;16146:3;16167:67;16231:2;16226:3;16167:67;:::i;:::-;16160:74;;16243:93;16332:3;16243:93;:::i;:::-;16361:2;16356:3;16352:12;16345:19;;16004:366;;;:::o;16376:419::-;16542:4;16580:2;16569:9;16565:18;16557:26;;16629:9;16623:4;16619:20;16615:1;16604:9;16600:17;16593:47;16657:131;16783:4;16657:131;:::i;:::-;16649:139;;16376:419;;;:::o;16801:243::-;16941:34;16937:1;16929:6;16925:14;16918:58;17010:26;17005:2;16997:6;16993:15;16986:51;16801:243;:::o;17050:366::-;17192:3;17213:67;17277:2;17272:3;17213:67;:::i;:::-;17206:74;;17289:93;17378:3;17289:93;:::i;:::-;17407:2;17402:3;17398:12;17391:19;;17050:366;;;:::o;17422:419::-;17588:4;17626:2;17615:9;17611:18;17603:26;;17675:9;17669:4;17665:20;17661:1;17650:9;17646:17;17639:47;17703:131;17829:4;17703:131;:::i;:::-;17695:139;;17422:419;;;:::o;17847:182::-;17987:34;17983:1;17975:6;17971:14;17964:58;17847:182;:::o;18035:366::-;18177:3;18198:67;18262:2;18257:3;18198:67;:::i;:::-;18191:74;;18274:93;18363:3;18274:93;:::i;:::-;18392:2;18387:3;18383:12;18376:19;;18035:366;;;:::o;18407:419::-;18573:4;18611:2;18600:9;18596:18;18588:26;;18660:9;18654:4;18650:20;18646:1;18635:9;18631:17;18624:47;18688:131;18814:4;18688:131;:::i;:::-;18680:139;;18407:419;;;:::o;18832:230::-;18972:34;18968:1;18960:6;18956:14;18949:58;19041:13;19036:2;19028:6;19024:15;19017:38;18832:230;:::o;19068:366::-;19210:3;19231:67;19295:2;19290:3;19231:67;:::i;:::-;19224:74;;19307:93;19396:3;19307:93;:::i;:::-;19425:2;19420:3;19416:12;19409:19;;19068:366;;;:::o;19440:419::-;19606:4;19644:2;19633:9;19629:18;19621:26;;19693:9;19687:4;19683:20;19679:1;19668:9;19664:17;19657:47;19721:131;19847:4;19721:131;:::i;:::-;19713:139;;19440:419;;;:::o;19865:180::-;19913:77;19910:1;19903:88;20010:4;20007:1;20000:15;20034:4;20031:1;20024:15;20051:180;20099:77;20096:1;20089:88;20196:4;20193:1;20186:15;20220:4;20217:1;20210:15;20237:233;20276:3;20299:24;20317:5;20299:24;:::i;:::-;20290:33;;20345:66;20338:5;20335:77;20332:103;;;20415:18;;:::i;:::-;20332:103;20462:1;20455:5;20451:13;20444:20;;20237:233;;;:::o;20476:236::-;20616:34;20612:1;20604:6;20600:14;20593:58;20685:19;20680:2;20672:6;20668:15;20661:44;20476:236;:::o;20718:366::-;20860:3;20881:67;20945:2;20940:3;20881:67;:::i;:::-;20874:74;;20957:93;21046:3;20957:93;:::i;:::-;21075:2;21070:3;21066:12;21059:19;;20718:366;;;:::o;21090:419::-;21256:4;21294:2;21283:9;21279:18;21271:26;;21343:9;21337:4;21333:20;21329:1;21318:9;21314:17;21307:47;21371:131;21497:4;21371:131;:::i;:::-;21363:139;;21090:419;;;:::o;21515:238::-;21655:34;21651:1;21643:6;21639:14;21632:58;21724:21;21719:2;21711:6;21707:15;21700:46;21515:238;:::o;21759:366::-;21901:3;21922:67;21986:2;21981:3;21922:67;:::i;:::-;21915:74;;21998:93;22087:3;21998:93;:::i;:::-;22116:2;22111:3;22107:12;22100:19;;21759:366;;;:::o;22131:419::-;22297:4;22335:2;22324:9;22320:18;22312:26;;22384:9;22378:4;22374:20;22370:1;22359:9;22355:17;22348:47;22412:131;22538:4;22412:131;:::i;:::-;22404:139;;22131:419;;;:::o;22556:230::-;22696:34;22692:1;22684:6;22680:14;22673:58;22765:13;22760:2;22752:6;22748:15;22741:38;22556:230;:::o;22792:366::-;22934:3;22955:67;23019:2;23014:3;22955:67;:::i;:::-;22948:74;;23031:93;23120:3;23031:93;:::i;:::-;23149:2;23144:3;23140:12;23133:19;;22792:366;;;:::o;23164:419::-;23330:4;23368:2;23357:9;23353:18;23345:26;;23417:9;23411:4;23407:20;23403:1;23392:9;23388:17;23381:47;23445:131;23571:4;23445:131;:::i;:::-;23437:139;;23164:419;;;:::o;23589:179::-;23729:31;23725:1;23717:6;23713:14;23706:55;23589:179;:::o;23774:366::-;23916:3;23937:67;24001:2;23996:3;23937:67;:::i;:::-;23930:74;;24013:93;24102:3;24013:93;:::i;:::-;24131:2;24126:3;24122:12;24115:19;;23774:366;;;:::o;24146:419::-;24312:4;24350:2;24339:9;24335:18;24327:26;;24399:9;24393:4;24389:20;24385:1;24374:9;24370:17;24363:47;24427:131;24553:4;24427:131;:::i;:::-;24419:139;;24146:419;;;:::o;24571:221::-;24711:34;24707:1;24699:6;24695:14;24688:58;24780:4;24775:2;24767:6;24763:15;24756:29;24571:221;:::o;24798:366::-;24940:3;24961:67;25025:2;25020:3;24961:67;:::i;:::-;24954:74;;25037:93;25126:3;25037:93;:::i;:::-;25155:2;25150:3;25146:12;25139:19;;24798:366;;;:::o;25170:419::-;25336:4;25374:2;25363:9;25359:18;25351:26;;25423:9;25417:4;25413:20;25409:1;25398:9;25394:17;25387:47;25451:131;25577:4;25451:131;:::i;:::-;25443:139;;25170:419;;;:::o;25595:168::-;25735:20;25731:1;25723:6;25719:14;25712:44;25595:168;:::o;25769:366::-;25911:3;25932:67;25996:2;25991:3;25932:67;:::i;:::-;25925:74;;26008:93;26097:3;26008:93;:::i;:::-;26126:2;26121:3;26117:12;26110:19;;25769:366;;;:::o;26141:419::-;26307:4;26345:2;26334:9;26330:18;26322:26;;26394:9;26388:4;26384:20;26380:1;26369:9;26365:17;26358:47;26422:131;26548:4;26422:131;:::i;:::-;26414:139;;26141:419;;;:::o;26566:305::-;26606:3;26625:20;26643:1;26625:20;:::i;:::-;26620:25;;26659:20;26677:1;26659:20;:::i;:::-;26654:25;;26813:1;26745:66;26741:74;26738:1;26735:81;26732:107;;;26819:18;;:::i;:::-;26732:107;26863:1;26860;26856:9;26849:16;;26566:305;;;;:::o;26877:228::-;27017:34;27013:1;27005:6;27001:14;26994:58;27086:11;27081:2;27073:6;27069:15;27062:36;26877:228;:::o;27111:366::-;27253:3;27274:67;27338:2;27333:3;27274:67;:::i;:::-;27267:74;;27350:93;27439:3;27350:93;:::i;:::-;27468:2;27463:3;27459:12;27452:19;;27111:366;;;:::o;27483:419::-;27649:4;27687:2;27676:9;27672:18;27664:26;;27736:9;27730:4;27726:20;27722:1;27711:9;27707:17;27700:47;27764:131;27890:4;27764:131;:::i;:::-;27756:139;;27483:419;;;:::o;27908:229::-;28048:34;28044:1;28036:6;28032:14;28025:58;28117:12;28112:2;28104:6;28100:15;28093:37;27908:229;:::o;28143:366::-;28285:3;28306:67;28370:2;28365:3;28306:67;:::i;:::-;28299:74;;28382:93;28471:3;28382:93;:::i;:::-;28500:2;28495:3;28491:12;28484:19;;28143:366;;;:::o;28515:419::-;28681:4;28719:2;28708:9;28704:18;28696:26;;28768:9;28762:4;28758:20;28754:1;28743:9;28739:17;28732:47;28796:131;28922:4;28796:131;:::i;:::-;28788:139;;28515:419;;;:::o;28940:168::-;29080:20;29076:1;29068:6;29064:14;29057:44;28940:168;:::o;29114:366::-;29256:3;29277:67;29341:2;29336:3;29277:67;:::i;:::-;29270:74;;29353:93;29442:3;29353:93;:::i;:::-;29471:2;29466:3;29462:12;29455:19;;29114:366;;;:::o;29486:419::-;29652:4;29690:2;29679:9;29675:18;29667:26;;29739:9;29733:4;29729:20;29725:1;29714:9;29710:17;29703:47;29767:131;29893:4;29767:131;:::i;:::-;29759:139;;29486:419;;;:::o;29911:170::-;30051:22;30047:1;30039:6;30035:14;30028:46;29911:170;:::o;30087:366::-;30229:3;30250:67;30314:2;30309:3;30250:67;:::i;:::-;30243:74;;30326:93;30415:3;30326:93;:::i;:::-;30444:2;30439:3;30435:12;30428:19;;30087:366;;;:::o;30459:419::-;30625:4;30663:2;30652:9;30648:18;30640:26;;30712:9;30706:4;30702:20;30698:1;30687:9;30683:17;30676:47;30740:131;30866:4;30740:131;:::i;:::-;30732:139;;30459:419;;;:::o;30884:174::-;31024:26;31020:1;31012:6;31008:14;31001:50;30884:174;:::o;31064:366::-;31206:3;31227:67;31291:2;31286:3;31227:67;:::i;:::-;31220:74;;31303:93;31392:3;31303:93;:::i;:::-;31421:2;31416:3;31412:12;31405:19;;31064:366;;;:::o;31436:419::-;31602:4;31640:2;31629:9;31625:18;31617:26;;31689:9;31683:4;31679:20;31675:1;31664:9;31660:17;31653:47;31717:131;31843:4;31717:131;:::i;:::-;31709:139;;31436:419;;;:::o;31861:348::-;31901:7;31924:20;31942:1;31924:20;:::i;:::-;31919:25;;31958:20;31976:1;31958:20;:::i;:::-;31953:25;;32146:1;32078:66;32074:74;32071:1;32068:81;32063:1;32056:9;32049:17;32045:105;32042:131;;;32153:18;;:::i;:::-;32042:131;32201:1;32198;32194:9;32183:20;;31861:348;;;;:::o;32215:179::-;32355:31;32351:1;32343:6;32339:14;32332:55;32215:179;:::o;32400:366::-;32542:3;32563:67;32627:2;32622:3;32563:67;:::i;:::-;32556:74;;32639:93;32728:3;32639:93;:::i;:::-;32757:2;32752:3;32748:12;32741:19;;32400:366;;;:::o;32772:419::-;32938:4;32976:2;32965:9;32961:18;32953:26;;33025:9;33019:4;33015:20;33011:1;33000:9;32996:17;32989:47;33053:131;33179:4;33053:131;:::i;:::-;33045:139;;32772:419;;;:::o;33197:154::-;33337:6;33333:1;33325:6;33321:14;33314:30;33197:154;:::o;33357:365::-;33499:3;33520:66;33584:1;33579:3;33520:66;:::i;:::-;33513:73;;33595:93;33684:3;33595:93;:::i;:::-;33713:2;33708:3;33704:12;33697:19;;33357:365;;;:::o;33728:419::-;33894:4;33932:2;33921:9;33917:18;33909:26;;33981:9;33975:4;33971:20;33967:1;33956:9;33952:17;33945:47;34009:131;34135:4;34009:131;:::i;:::-;34001:139;;33728:419;;;:::o;34153:191::-;34193:4;34213:20;34231:1;34213:20;:::i;:::-;34208:25;;34247:20;34265:1;34247:20;:::i;:::-;34242:25;;34286:1;34283;34280:8;34277:34;;;34291:18;;:::i;:::-;34277:34;34336:1;34333;34329:9;34321:17;;34153:191;;;;:::o;34350:234::-;34490:34;34486:1;34478:6;34474:14;34467:58;34559:17;34554:2;34546:6;34542:15;34535:42;34350:234;:::o;34590:366::-;34732:3;34753:67;34817:2;34812:3;34753:67;:::i;:::-;34746:74;;34829:93;34918:3;34829:93;:::i;:::-;34947:2;34942:3;34938:12;34931:19;;34590:366;;;:::o;34962:419::-;35128:4;35166:2;35155:9;35151:18;35143:26;;35215:9;35209:4;35205:20;35201:1;35190:9;35186:17;35179:47;35243:131;35369:4;35243:131;:::i;:::-;35235:139;;34962:419;;;:::o;35387:148::-;35489:11;35526:3;35511:18;;35387:148;;;;:::o;35541:377::-;35647:3;35675:39;35708:5;35675:39;:::i;:::-;35730:89;35812:6;35807:3;35730:89;:::i;:::-;35723:96;;35828:52;35873:6;35868:3;35861:4;35854:5;35850:16;35828:52;:::i;:::-;35905:6;35900:3;35896:16;35889:23;;35651:267;35541:377;;;;:::o;35924:435::-;36104:3;36126:95;36217:3;36208:6;36126:95;:::i;:::-;36119:102;;36238:95;36329:3;36320:6;36238:95;:::i;:::-;36231:102;;36350:3;36343:10;;35924:435;;;;;:::o;36365:225::-;36505:34;36501:1;36493:6;36489:14;36482:58;36574:8;36569:2;36561:6;36557:15;36550:33;36365:225;:::o;36596:366::-;36738:3;36759:67;36823:2;36818:3;36759:67;:::i;:::-;36752:74;;36835:93;36924:3;36835:93;:::i;:::-;36953:2;36948:3;36944:12;36937:19;;36596:366;;;:::o;36968:419::-;37134:4;37172:2;37161:9;37157:18;37149:26;;37221:9;37215:4;37211:20;37207:1;37196:9;37192:17;37185:47;37249:131;37375:4;37249:131;:::i;:::-;37241:139;;36968:419;;;:::o;37393:231::-;37533:34;37529:1;37521:6;37517:14;37510:58;37602:14;37597:2;37589:6;37585:15;37578:39;37393:231;:::o;37630:366::-;37772:3;37793:67;37857:2;37852:3;37793:67;:::i;:::-;37786:74;;37869:93;37958:3;37869:93;:::i;:::-;37987:2;37982:3;37978:12;37971:19;;37630:366;;;:::o;38002:419::-;38168:4;38206:2;38195:9;38191:18;38183:26;;38255:9;38249:4;38245:20;38241:1;38230:9;38226:17;38219:47;38283:131;38409:4;38283:131;:::i;:::-;38275:139;;38002:419;;;:::o;38427:228::-;38567:34;38563:1;38555:6;38551:14;38544:58;38636:11;38631:2;38623:6;38619:15;38612:36;38427:228;:::o;38661:366::-;38803:3;38824:67;38888:2;38883:3;38824:67;:::i;:::-;38817:74;;38900:93;38989:3;38900:93;:::i;:::-;39018:2;39013:3;39009:12;39002:19;;38661:366;;;:::o;39033:419::-;39199:4;39237:2;39226:9;39222:18;39214:26;;39286:9;39280:4;39276:20;39272:1;39261:9;39257:17;39250:47;39314:131;39440:4;39314:131;:::i;:::-;39306:139;;39033:419;;;:::o;39458:223::-;39598:34;39594:1;39586:6;39582:14;39575:58;39667:6;39662:2;39654:6;39650:15;39643:31;39458:223;:::o;39687:366::-;39829:3;39850:67;39914:2;39909:3;39850:67;:::i;:::-;39843:74;;39926:93;40015:3;39926:93;:::i;:::-;40044:2;40039:3;40035:12;40028:19;;39687:366;;;:::o;40059:419::-;40225:4;40263:2;40252:9;40248:18;40240:26;;40312:9;40306:4;40302:20;40298:1;40287:9;40283:17;40276:47;40340:131;40466:4;40340:131;:::i;:::-;40332:139;;40059:419;;;:::o;40484:175::-;40624:27;40620:1;40612:6;40608:14;40601:51;40484:175;:::o;40665:366::-;40807:3;40828:67;40892:2;40887:3;40828:67;:::i;:::-;40821:74;;40904:93;40993:3;40904:93;:::i;:::-;41022:2;41017:3;41013:12;41006:19;;40665:366;;;:::o;41037:419::-;41203:4;41241:2;41230:9;41226:18;41218:26;;41290:9;41284:4;41280:20;41276:1;41265:9;41261:17;41254:47;41318:131;41444:4;41318:131;:::i;:::-;41310:139;;41037:419;;;:::o;41462:237::-;41602:34;41598:1;41590:6;41586:14;41579:58;41671:20;41666:2;41658:6;41654:15;41647:45;41462:237;:::o;41705:366::-;41847:3;41868:67;41932:2;41927:3;41868:67;:::i;:::-;41861:74;;41944:93;42033:3;41944:93;:::i;:::-;42062:2;42057:3;42053:12;42046:19;;41705:366;;;:::o;42077:419::-;42243:4;42281:2;42270:9;42266:18;42258:26;;42330:9;42324:4;42320:20;42316:1;42305:9;42301:17;42294:47;42358:131;42484:4;42358:131;:::i;:::-;42350:139;;42077:419;;;:::o;42502:180::-;42550:77;42547:1;42540:88;42647:4;42644:1;42637:15;42671:4;42668:1;42661:15;42688:185;42728:1;42745:20;42763:1;42745:20;:::i;:::-;42740:25;;42779:20;42797:1;42779:20;:::i;:::-;42774:25;;42818:1;42808:35;;42823:18;;:::i;:::-;42808:35;42865:1;42862;42858:9;42853:14;;42688:185;;;;:::o;42879:176::-;42911:1;42928:20;42946:1;42928:20;:::i;:::-;42923:25;;42962:20;42980:1;42962:20;:::i;:::-;42957:25;;43001:1;42991:35;;43006:18;;:::i;:::-;42991:35;43047:1;43044;43040:9;43035:14;;42879:176;;;;:::o;43061:98::-;43112:6;43146:5;43140:12;43130:22;;43061:98;;;:::o;43165:168::-;43248:11;43282:6;43277:3;43270:19;43322:4;43317:3;43313:14;43298:29;;43165:168;;;;:::o;43339:360::-;43425:3;43453:38;43485:5;43453:38;:::i;:::-;43507:70;43570:6;43565:3;43507:70;:::i;:::-;43500:77;;43586:52;43631:6;43626:3;43619:4;43612:5;43608:16;43586:52;:::i;:::-;43663:29;43685:6;43663:29;:::i;:::-;43658:3;43654:39;43647:46;;43429:270;43339:360;;;;:::o;43705:640::-;43900:4;43938:3;43927:9;43923:19;43915:27;;43952:71;44020:1;44009:9;44005:17;43996:6;43952:71;:::i;:::-;44033:72;44101:2;44090:9;44086:18;44077:6;44033:72;:::i;:::-;44115;44183:2;44172:9;44168:18;44159:6;44115:72;:::i;:::-;44234:9;44228:4;44224:20;44219:2;44208:9;44204:18;44197:48;44262:76;44333:4;44324:6;44262:76;:::i;:::-;44254:84;;43705:640;;;;;;;:::o;44351:141::-;44407:5;44438:6;44432:13;44423:22;;44454:32;44480:5;44454:32;:::i;:::-;44351:141;;;;:::o;44498:349::-;44567:6;44616:2;44604:9;44595:7;44591:23;44587:32;44584:119;;;44622:79;;:::i;:::-;44584:119;44742:1;44767:63;44822:7;44813:6;44802:9;44798:22;44767:63;:::i;:::-;44757:73;;44713:127;44498:349;;;;:::o;44853:182::-;44993:34;44989:1;44981:6;44977:14;44970:58;44853:182;:::o;45041:366::-;45183:3;45204:67;45268:2;45263:3;45204:67;:::i;:::-;45197:74;;45280:93;45369:3;45280:93;:::i;:::-;45398:2;45393:3;45389:12;45382:19;;45041:366;;;:::o;45413:419::-;45579:4;45617:2;45606:9;45602:18;45594:26;;45666:9;45660:4;45656:20;45652:1;45641:9;45637:17;45630:47;45694:131;45820:4;45694:131;:::i;:::-;45686:139;;45413:419;;;:::o;45838:178::-;45978:30;45974:1;45966:6;45962:14;45955:54;45838:178;:::o;46022:366::-;46164:3;46185:67;46249:2;46244:3;46185:67;:::i;:::-;46178:74;;46261:93;46350:3;46261:93;:::i;:::-;46379:2;46374:3;46370:12;46363:19;;46022:366;;;:::o;46394:419::-;46560:4;46598:2;46587:9;46583:18;46575:26;;46647:9;46641:4;46637:20;46633:1;46622:9;46618:17;46611:47;46675:131;46801:4;46675:131;:::i;:::-;46667:139;;46394:419;;;:::o

Swarm Source

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

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