ETH Price: $2,469.41 (-8.44%)

Token

Poi Puppy Colony (PPC)
 

Overview

Max Total Supply

10,000 PPC

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vandemlau.eth
Balance
1 PPC
0x8b44b14891dA20DeE9e64cbBCe82Dcde16826522
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PoiPuppyColony

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-19
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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/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);
    }

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

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


// File: @openzeppelin/contracts/utils/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

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

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

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

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

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

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


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File: @openzeppelin/contracts/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/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

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/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

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/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/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File: contracts/PoiPuppyColony.sol

pragma solidity 0.8.6;

contract PoiPuppyColony is ERC721, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant PER_ORDER_LIMIT = 10;

    bool public isActive;
    uint256 public salePrice;
    uint256 public reserveQty;
    
    Counters.Counter private _tokenIds;

    address private _admin;
    uint256 private _qtyReserved;
    string private _tempBaseUrl;
    string private _finalizedBaseUrl;

    constructor() ERC721("Poi Puppy Colony", "PPC") {
       
        isActive = false;
        _qtyReserved = 0;
        _admin = address(0);
        salePrice = 50000000000000000 wei;
        reserveQty = 100;
        _tempBaseUrl = "https://poipuppycolony-metadata.s3.us-east-2.amazonaws.com";        
    }

    event PuppyRescued(uint256 indexed colonyMemberId, address indexed rescuedBy);

    function rescuePuppy(uint256 qty) public payable nonReentrant {
        require(isActive, "Contract is not active");
        require(qty < PER_ORDER_LIMIT + 1, "Cannot purchase more than the per-order limit");
        require((totalSold() + qty + reserveQty) < MAX_SUPPLY + 1, "Requested quantity would exceed total supply");
        require(msg.value == (salePrice * qty), "Incorrect payment amount");

        for (uint256 i = 0; i < qty; i++) {
            _tokenIds.increment();
            uint256 mintIndex = totalSold();
            _safeMint(msg.sender, mintIndex);

            emit PuppyRescued(mintIndex, msg.sender);
        }
    }

    function totalSupply() public pure returns (uint256) {
        return MAX_SUPPLY;
    }

    function totalSold() public view returns (uint256) {
        return _tokenIds.current();
    }

    function baseURI() public view returns (string memory) {
        return _baseURI();
    }

    function _baseURI() internal view virtual override returns (string memory) {
        if(bytes(_finalizedBaseUrl).length > 0) {
            return _finalizedBaseUrl;
        }

        return _tempBaseUrl;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(tokenId > 0, "Token Id = 0");

        string memory base = baseURI();
        return
            bytes(base).length > 0
                ? string(abi.encodePacked(base, "/", uint2str(tokenId), ".json"))
                : "";
    }

    /**
     * @dev Returns the number of unminted reserved tokens
     */
    function remainingReserve() public view returns(uint256){
        return reserveQty - _qtyReserved;
    }

    // Contract Management

    function setAdmin(address adminAddress) external onlyOwner {
        require(adminAddress != address(0), "Cannot set the admin to account 0");

        _admin = adminAddress;
    }

    function distributeFromReserve(uint256 qty, address recipient) external onlyOwner nonReentrant {
        require(qty > 0,"Qty must be more than zero");
        require(recipient != address(0), "Recipient cannot be a zero address");
        require(_qtyReserved + qty < reserveQty + 1, "Qty would exceed reserved quantity");
        require(qty + _tokenIds.current() < MAX_SUPPLY + 1, "Qty would exceed the total supply");

        for (uint256 i = 0; i < qty; i++) {
            _tokenIds.increment();
            uint256 mintIndex = totalSold();
            _qtyReserved += 1;
            _safeMint(recipient, mintIndex);

            emit PuppyRescued(mintIndex, recipient);
        }
    }
   
    function transferFunds(address recipient, uint256 amt) external onlyOwner nonReentrant {
        require(recipient != address(0), "Recipient cannot be a zero address");
        require(amt < address(this).balance+1,"Amt cannot be more than the current balance");

        payable(recipient).transfer(amt);
    }

    function cashOut() external onlyOwner nonReentrant {
        payable(msg.sender).transfer(address(this).balance);
    }

    function setActive(bool active) public onlyOwnerOrAdmin {
        isActive = active;
    }

    function setReserveQty(uint256 newQty) external onlyOwnerOrAdmin {
        require(newQty > 0, "newQty cannot be zero");
        require(newQty + _tokenIds.current() < MAX_SUPPLY + 1, "newQty would exceed the total supply");
        require(newQty > _qtyReserved, "newQty cannot be less than the already distributed reserve quantity");

        reserveQty = newQty;
    }

    /**
     * @dev Changes the sale price to `newPrice`, just because we don't know what might
     * happen to ETH
     */
    function setSalePrice(uint256 newPrice) external onlyOwner {
        require(newPrice > 0, "newPrice cannot be zero");

        salePrice = newPrice;
    }

    /**
     * @dev Changes the value of the base URI that is retured by {_baseURI} to the specified 
     * ipfs address (ipfs://`ipfsDirectory`).
     *
     * NOTE: In an effort to not expose all of the metadata before all pups have been minted without having
     * to do a delayed reveal (because no one likes delayed reveals, right?), we use a temporary 
     * base url so we can upload the metadata files individually to the temporary location as each pup
     * is minted.  Once all of the pups have been revealed, the base url will be finalized by changing 
     * it to the IPFS location.
    */
    function finalizeBaseURL(string memory ipfsDirectory) external onlyOwnerOrAdmin {
        require(bytes(ipfsDirectory).length > 0, "finalBaseURL is required");
        require(bytes(_finalizedBaseUrl).length == 0, "The baseURL has already been finalized");

        _finalizedBaseUrl = string(abi.encodePacked("ipfs://", ipfsDirectory));
    }

    /**
     * @dev Changes the finalized base URL to the specified value (`newBaseUrl`).
     * 
     * NOTE: This should only be called if the base URL was previously finalized
     * incorrectly through {finalizeBaseURL} because let's face it, not having 
     * metadata would be kinda bad   
     */
    function panicFixBaseURL(string memory newBaseUrl) external onlyOwner {
        require(bytes(newBaseUrl).length > 0, "newBaseUrl is required");

        _finalizedBaseUrl = newBaseUrl;
    }

    /**
     * @dev Throws if called by any account other than the owner or the predefined admin.
     */
    modifier onlyOwnerOrAdmin() {
        require(_msgSender() == owner() || (_admin != address(0) && _msgSender() == _admin), "Caller is not the owner or admin");
        _;
    }




    // Helper functions

    // https://stackoverflow.com/a/47137572
    function uint2str(uint256 _i)
        private
        pure
        returns (string memory _uintAsString)
    {
        if (_i == 0) {
            return "0";
        }
        uint256 j = _i;
        uint256 len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint256 k = len;
        while (_i != 0) {
            k = k - 1;
            uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
}

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":"uint256","name":"colonyMemberId","type":"uint256"},{"indexed":true,"internalType":"address","name":"rescuedBy","type":"address"}],"name":"PuppyRescued","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_ORDER_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"distributeFromReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ipfsDirectory","type":"string"}],"name":"finalizeBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUrl","type":"string"}],"name":"panicFixBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"remainingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"rescuePuppy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reserveQty","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":"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":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adminAddress","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newQty","type":"uint256"}],"name":"setReserveQty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"recipient","type":"address"},{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601081526020017f506f6920507570707920436f6c6f6e79000000000000000000000000000000008152506040518060400160405280600381526020017f50504300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000969291906200025b565b508060019080519060200190620000af9291906200025b565b505050620000d2620000c66200018d60201b60201c565b6200019560201b60201c565b60016007819055506000600860006101000a81548160ff0219169083151502179055506000600d819055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066b1a2bc2ec500006009819055506064600a819055506040518060600160405280603a815260200162005266603a9139600e9080519060200190620001869291906200025b565b5062000370565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000269906200030b565b90600052602060002090601f0160209004810192826200028d5760008555620002d9565b82601f10620002a857805160ff1916838001178555620002d9565b82800160010185558215620002d9579182015b82811115620002d8578251825591602001919060010190620002bb565b5b509050620002e89190620002ec565b5090565b5b8082111562000307576000816000905550600101620002ed565b5090565b600060028204905060018216806200032457607f821691505b602082108114156200033b576200033a62000341565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ee680620003806000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063a060ae18116100a0578063b88d4fde1161006f578063b88d4fde1461070c578063c87b56dd14610735578063e985e9c514610772578063f2fde38b146107af578063f51f96dd146107d857610204565b8063a060ae1814610673578063a22cb4651461069e578063acec338a146106c7578063b45b8ad5146106f057610204565b80638da5cb5b116100e75780638da5cb5b146105a05780639106d7ba146105cb57806394bc7a94146105f657806395d89b411461061f578063990dc9db1461064a57610204565b806370a082311461050c578063715018a614610549578063793cd71e146105605780637cfad0ff1461057757610204565b806322f3e2d41161019b57806342842e0e1161016a57806342842e0e146104295780636352211e14610452578063641b871a1461048f5780636c0360eb146104b8578063704b6c02146104e357610204565b806322f3e2d41461037f57806323b872dd146103aa5780632a8de489146103d357806332cb6b0c146103fe57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806312e705da1461030057806318160ddd1461032b5780631919fed71461035657610204565b806301c8303b1461020957806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061347b565b610803565b005b34801561023e57600080fd5b50610259600480360381019061025491906133d8565b610a2e565b6040516102669190613bad565b60405180910390f35b34801561027b57600080fd5b50610284610b10565b6040516102919190613bc8565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061347b565b610ba2565b6040516102ce9190613b46565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061336b565b610c27565b005b34801561030c57600080fd5b50610315610d3f565b604051610322919061404a565b60405180910390f35b34801561033757600080fd5b50610340610d44565b60405161034d919061404a565b60405180910390f35b34801561036257600080fd5b5061037d6004803603810190610378919061347b565b610d4e565b005b34801561038b57600080fd5b50610394610e17565b6040516103a19190613bad565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613255565b610e2a565b005b3480156103df57600080fd5b506103e8610e8a565b6040516103f5919061404a565b60405180910390f35b34801561040a57600080fd5b50610413610e90565b604051610420919061404a565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613255565b610e96565b005b34801561045e57600080fd5b506104796004803603810190610474919061347b565b610eb6565b6040516104869190613b46565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190613432565b610f68565b005b3480156104c457600080fd5b506104cd61116c565b6040516104da9190613bc8565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906131e8565b61117b565b005b34801561051857600080fd5b50610533600480360381019061052e91906131e8565b6112ab565b604051610540919061404a565b60405180910390f35b34801561055557600080fd5b5061055e611363565b005b34801561056c57600080fd5b506105756113eb565b005b34801561058357600080fd5b5061059e60048036038101906105999190613432565b611506565b005b3480156105ac57600080fd5b506105b56115e0565b6040516105c29190613b46565b60405180910390f35b3480156105d757600080fd5b506105e061160a565b6040516105ed919061404a565b60405180910390f35b34801561060257600080fd5b5061061d600480360381019061061891906134a8565b61161b565b005b34801561062b57600080fd5b50610634611903565b6040516106419190613bc8565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061336b565b611995565b005b34801561067f57600080fd5b50610688611b70565b604051610695919061404a565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061332b565b611b87565b005b3480156106d357600080fd5b506106ee60048036038101906106e991906133ab565b611d08565b005b61070a6004803603810190610705919061347b565b611e5b565b005b34801561071857600080fd5b50610733600480360381019061072e91906132a8565b612094565b005b34801561074157600080fd5b5061075c6004803603810190610757919061347b565b6120f6565b6040516107699190613bc8565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613215565b612198565b6040516107a69190613bad565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906131e8565b61222c565b005b3480156107e457600080fd5b506107ed612324565b6040516107fa919061404a565b60405180910390f35b61080b6115e0565b73ffffffffffffffffffffffffffffffffffffffff1661082961232a565b73ffffffffffffffffffffffffffffffffffffffff1614806108fa5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156108f95750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108e161232a565b73ffffffffffffffffffffffffffffffffffffffff16145b5b610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090613cea565b60405180910390fd5b6000811161097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613f6a565b60405180910390fd5b600161271061098b919061412f565b610995600b612332565b826109a0919061412f565b106109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d790613cca565b60405180910390fd5b600d548111610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613f4a565b60405180910390fd5b80600a8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b095750610b0882612340565b5b9050919050565b606060008054610b1f9061433e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b9061433e565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b5050505050905090565b6000610bad826123aa565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390613e8a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3282610eb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613f0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc261232a565b73ffffffffffffffffffffffffffffffffffffffff161480610cf15750610cf081610ceb61232a565b612198565b5b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613dca565b60405180910390fd5b610d3a8383612416565b505050565b600a81565b6000612710905090565b610d5661232a565b73ffffffffffffffffffffffffffffffffffffffff16610d746115e0565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613eca565b60405180910390fd5b60008111610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613f8a565b60405180910390fd5b8060098190555050565b600860009054906101000a900460ff1681565b610e3b610e3561232a565b826124cf565b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613f2a565b60405180910390fd5b610e858383836125ad565b505050565b600a5481565b61271081565b610eb183838360405180602001604052806000815250612094565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613e0a565b60405180910390fd5b80915050919050565b610f706115e0565b73ffffffffffffffffffffffffffffffffffffffff16610f8e61232a565b73ffffffffffffffffffffffffffffffffffffffff16148061105f5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561105e5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661104661232a565b73ffffffffffffffffffffffffffffffffffffffff16145b5b61109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613cea565b60405180910390fd5b60008151116110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d99061402a565b60405180910390fd5b6000600f80546110f19061433e565b905014611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061400a565b60405180910390fd5b806040516020016111449190613b24565b604051602081830303815290604052600f9080519060200190611168929190612ffc565b5050565b6060611176612809565b905090565b61118361232a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e0565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90613c0a565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613dea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136b61232a565b73ffffffffffffffffffffffffffffffffffffffff166113896115e0565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613eca565b60405180910390fd5b6113e96000612945565b565b6113f361232a565b73ffffffffffffffffffffffffffffffffffffffff166114116115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613eca565b60405180910390fd5b600260075414156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613faa565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114fb573d6000803e3d6000fd5b506001600781905550565b61150e61232a565b73ffffffffffffffffffffffffffffffffffffffff1661152c6115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613eca565b60405180910390fd5b60008151116115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613e4a565b60405180910390fd5b80600f90805190602001906115dc929190612ffc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611616600b612332565b905090565b61162361232a565b73ffffffffffffffffffffffffffffffffffffffff166116416115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613eca565b60405180910390fd5b600260075414156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613faa565b60405180910390fd5b600260078190555060008211611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613eaa565b60405180910390fd5b6001600a546117a7919061412f565b82600d546117b5919061412f565b106117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613fea565b60405180910390fd5b6001612710611804919061412f565b61180e600b612332565b83611819919061412f565b10611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613c6a565b60405180910390fd5b60005b828110156118f65761186e600b612a0b565b600061187861160a565b90506001600d600082825461188d919061412f565b9250508190555061189e8382612a21565b8273ffffffffffffffffffffffffffffffffffffffff16817fc96be6393e24a4d640592bd4f28fdfb8353ebf076097056fc778e96a83cdc50d60405160405180910390a35080806118ee906143a1565b91505061185c565b5060016007819055505050565b6060600180546119129061433e565b80601f016020809104026020016040519081016040528092919081815260200182805461193e9061433e565b801561198b5780601f106119605761010080835404028352916020019161198b565b820191906000526020600020905b81548152906001019060200180831161196e57829003601f168201915b5050505050905090565b61199d61232a565b73ffffffffffffffffffffffffffffffffffffffff166119bb6115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890613eca565b60405180910390fd5b60026007541415611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613faa565b60405180910390fd5b6002600781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613eaa565b60405180910390fd5b600147611adc919061412f565b8110611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490613daa565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b63573d6000803e3d6000fd5b5060016007819055505050565b6000600d54600a54611b829190614247565b905090565b611b8f61232a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490613d2a565b60405180910390fd5b8060056000611c0a61232a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb761232a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cfc9190613bad565b60405180910390a35050565b611d106115e0565b73ffffffffffffffffffffffffffffffffffffffff16611d2e61232a565b73ffffffffffffffffffffffffffffffffffffffff161480611dff5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611dfe5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611de661232a565b73ffffffffffffffffffffffffffffffffffffffff16145b5b611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613cea565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60026007541415611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613faa565b60405180910390fd5b6002600781905550600860009054906101000a900460ff16611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613e6a565b60405180910390fd5b6001600a611f06919061412f565b8110611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90613caa565b60405180910390fd5b6001612710611f56919061412f565b600a5482611f6261160a565b611f6c919061412f565b611f76919061412f565b10611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90613d8a565b60405180910390fd5b80600954611fc491906141ed565b3414612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613d4a565b60405180910390fd5b60005b818110156120885761201a600b612a0b565b600061202461160a565b90506120303382612a21565b3373ffffffffffffffffffffffffffffffffffffffff16817fc96be6393e24a4d640592bd4f28fdfb8353ebf076097056fc778e96a83cdc50d60405160405180910390a3508080612080906143a1565b915050612008565b50600160078190555050565b6120a561209f61232a565b836124cf565b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90613f2a565b60405180910390fd5b6120f084848484612a3f565b50505050565b60606000821161213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290613fca565b60405180910390fd5b600061214561116c565b905060008151116121655760405180602001604052806000815250612190565b8061216f84612a9b565b604051602001612180929190613aea565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61223461232a565b73ffffffffffffffffffffffffffffffffffffffff166122526115e0565b73ffffffffffffffffffffffffffffffffffffffff16146122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f90613eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90613c4a565b60405180910390fd5b61232181612945565b50565b60095481565b600033905090565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248983610eb6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124da826123aa565b612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090613d6a565b60405180910390fd5b600061252483610eb6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259357508373ffffffffffffffffffffffffffffffffffffffff1661257b84610ba2565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a457506125a38185612198565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125cd82610eb6565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a90613eea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90613d0a565b60405180910390fd5b61269e838383612c24565b6126a9600082612416565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f99190614247565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612750919061412f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000600f805461281a9061433e565b905011156128b457600f805461282f9061433e565b80601f016020809104026020016040519081016040528092919081815260200182805461285b9061433e565b80156128a85780601f1061287d576101008083540402835291602001916128a8565b820191906000526020600020905b81548152906001019060200180831161288b57829003601f168201915b50505050509050612942565b600e80546128c19061433e565b80601f01602080910402602001604051908101604052809291908181526020018280546128ed9061433e565b801561293a5780601f1061290f5761010080835404028352916020019161293a565b820191906000526020600020905b81548152906001019060200180831161291d57829003601f168201915b505050505090505b90565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612a3b828260405180602001604052806000815250612c29565b5050565b612a4a8484846125ad565b612a5684848484612c84565b612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c90613c2a565b60405180910390fd5b50505050565b60606000821415612ae3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c1f565b600082905060005b60008214612b15578080612afe906143a1565b915050600a82612b0e91906141bc565b9150612aeb565b60008167ffffffffffffffff811115612b3157612b306144a6565b5b6040519080825280601f01601f191660200182016040528015612b635781602001600182028036833780820191505090505b50905060008290505b60008614612c1757600181612b819190614247565b90506000600a8088612b9391906141bc565b612b9d91906141ed565b87612ba89190614247565b6030612bb49190614185565b905060008160f81b905080848481518110612bd257612bd1614477565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88612c0e91906141bc565b97505050612b6c565b819450505050505b919050565b505050565b612c338383612e1b565b612c406000848484612c84565b612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690613c2a565b60405180910390fd5b505050565b6000612ca58473ffffffffffffffffffffffffffffffffffffffff16612fe9565b15612e0e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cce61232a565b8786866040518563ffffffff1660e01b8152600401612cf09493929190613b61565b602060405180830381600087803b158015612d0a57600080fd5b505af1925050508015612d3b57506040513d601f19601f82011682018060405250810190612d389190613405565b60015b612dbe573d8060008114612d6b576040519150601f19603f3d011682016040523d82523d6000602084013e612d70565b606091505b50600081511415612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad90613c2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e13565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8290613e2a565b60405180910390fd5b612e94816123aa565b15612ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecb90613c8a565b60405180910390fd5b612ee060008383612c24565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f30919061412f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130089061433e565b90600052602060002090601f01602090048101928261302a5760008555613071565b82601f1061304357805160ff1916838001178555613071565b82800160010185558215613071579182015b82811115613070578251825591602001919060010190613055565b5b50905061307e9190613082565b5090565b5b8082111561309b576000816000905550600101613083565b5090565b60006130b26130ad8461408a565b614065565b9050828152602081018484840111156130ce576130cd6144da565b5b6130d98482856142fc565b509392505050565b60006130f46130ef846140bb565b614065565b9050828152602081018484840111156131105761310f6144da565b5b61311b8482856142fc565b509392505050565b60008135905061313281614e54565b92915050565b60008135905061314781614e6b565b92915050565b60008135905061315c81614e82565b92915050565b60008151905061317181614e82565b92915050565b600082601f83011261318c5761318b6144d5565b5b813561319c84826020860161309f565b91505092915050565b600082601f8301126131ba576131b96144d5565b5b81356131ca8482602086016130e1565b91505092915050565b6000813590506131e281614e99565b92915050565b6000602082840312156131fe576131fd6144e4565b5b600061320c84828501613123565b91505092915050565b6000806040838503121561322c5761322b6144e4565b5b600061323a85828601613123565b925050602061324b85828601613123565b9150509250929050565b60008060006060848603121561326e5761326d6144e4565b5b600061327c86828701613123565b935050602061328d86828701613123565b925050604061329e868287016131d3565b9150509250925092565b600080600080608085870312156132c2576132c16144e4565b5b60006132d087828801613123565b94505060206132e187828801613123565b93505060406132f2878288016131d3565b925050606085013567ffffffffffffffff811115613313576133126144df565b5b61331f87828801613177565b91505092959194509250565b60008060408385031215613342576133416144e4565b5b600061335085828601613123565b925050602061336185828601613138565b9150509250929050565b60008060408385031215613382576133816144e4565b5b600061339085828601613123565b92505060206133a1858286016131d3565b9150509250929050565b6000602082840312156133c1576133c06144e4565b5b60006133cf84828501613138565b91505092915050565b6000602082840312156133ee576133ed6144e4565b5b60006133fc8482850161314d565b91505092915050565b60006020828403121561341b5761341a6144e4565b5b600061342984828501613162565b91505092915050565b600060208284031215613448576134476144e4565b5b600082013567ffffffffffffffff811115613466576134656144df565b5b613472848285016131a5565b91505092915050565b600060208284031215613491576134906144e4565b5b600061349f848285016131d3565b91505092915050565b600080604083850312156134bf576134be6144e4565b5b60006134cd858286016131d3565b92505060206134de85828601613123565b9150509250929050565b6134f18161427b565b82525050565b6135008161428d565b82525050565b6000613511826140ec565b61351b8185614102565b935061352b81856020860161430b565b613534816144e9565b840191505092915050565b600061354a826140f7565b6135548185614113565b935061356481856020860161430b565b61356d816144e9565b840191505092915050565b6000613583826140f7565b61358d8185614124565b935061359d81856020860161430b565b80840191505092915050565b60006135b6601a83614113565b91506135c1826144fa565b602082019050919050565b60006135d9602183614113565b91506135e482614523565b604082019050919050565b60006135fc603283614113565b915061360782614572565b604082019050919050565b600061361f602683614113565b915061362a826145c1565b604082019050919050565b6000613642602183614113565b915061364d82614610565b604082019050919050565b6000613665601c83614113565b91506136708261465f565b602082019050919050565b6000613688602d83614113565b915061369382614688565b604082019050919050565b60006136ab602483614113565b91506136b6826146d7565b604082019050919050565b60006136ce602083614113565b91506136d982614726565b602082019050919050565b60006136f1602483614113565b91506136fc8261474f565b604082019050919050565b6000613714601983614113565b915061371f8261479e565b602082019050919050565b6000613737601883614113565b9150613742826147c7565b602082019050919050565b600061375a602c83614113565b9150613765826147f0565b604082019050919050565b600061377d602c83614113565b91506137888261483f565b604082019050919050565b60006137a0600783614124565b91506137ab8261488e565b600782019050919050565b60006137c3602b83614113565b91506137ce826148b7565b604082019050919050565b60006137e6603883614113565b91506137f182614906565b604082019050919050565b6000613809602a83614113565b915061381482614955565b604082019050919050565b600061382c602983614113565b9150613837826149a4565b604082019050919050565b600061384f602083614113565b915061385a826149f3565b602082019050919050565b6000613872601683614113565b915061387d82614a1c565b602082019050919050565b6000613895601683614113565b91506138a082614a45565b602082019050919050565b60006138b8602c83614113565b91506138c382614a6e565b604082019050919050565b60006138db600583614124565b91506138e682614abd565b600582019050919050565b60006138fe602283614113565b915061390982614ae6565b604082019050919050565b6000613921602083614113565b915061392c82614b35565b602082019050919050565b6000613944602983614113565b915061394f82614b5e565b604082019050919050565b6000613967602183614113565b915061397282614bad565b604082019050919050565b600061398a603183614113565b915061399582614bfc565b604082019050919050565b60006139ad604383614113565b91506139b882614c4b565b606082019050919050565b60006139d0601583614113565b91506139db82614cc0565b602082019050919050565b60006139f3601783614113565b91506139fe82614ce9565b602082019050919050565b6000613a16601f83614113565b9150613a2182614d12565b602082019050919050565b6000613a39600c83614113565b9150613a4482614d3b565b602082019050919050565b6000613a5c602283614113565b9150613a6782614d64565b604082019050919050565b6000613a7f602683614113565b9150613a8a82614db3565b604082019050919050565b6000613aa2600183614124565b9150613aad82614e02565b600182019050919050565b6000613ac5601883614113565b9150613ad082614e2b565b602082019050919050565b613ae4816142e5565b82525050565b6000613af68285613578565b9150613b0182613a95565b9150613b0d8284613578565b9150613b18826138ce565b91508190509392505050565b6000613b2f82613793565b9150613b3b8284613578565b915081905092915050565b6000602082019050613b5b60008301846134e8565b92915050565b6000608082019050613b7660008301876134e8565b613b8360208301866134e8565b613b906040830185613adb565b8181036060830152613ba28184613506565b905095945050505050565b6000602082019050613bc260008301846134f7565b92915050565b60006020820190508181036000830152613be2818461353f565b905092915050565b60006020820190508181036000830152613c03816135a9565b9050919050565b60006020820190508181036000830152613c23816135cc565b9050919050565b60006020820190508181036000830152613c43816135ef565b9050919050565b60006020820190508181036000830152613c6381613612565b9050919050565b60006020820190508181036000830152613c8381613635565b9050919050565b60006020820190508181036000830152613ca381613658565b9050919050565b60006020820190508181036000830152613cc38161367b565b9050919050565b60006020820190508181036000830152613ce38161369e565b9050919050565b60006020820190508181036000830152613d03816136c1565b9050919050565b60006020820190508181036000830152613d23816136e4565b9050919050565b60006020820190508181036000830152613d4381613707565b9050919050565b60006020820190508181036000830152613d638161372a565b9050919050565b60006020820190508181036000830152613d838161374d565b9050919050565b60006020820190508181036000830152613da381613770565b9050919050565b60006020820190508181036000830152613dc3816137b6565b9050919050565b60006020820190508181036000830152613de3816137d9565b9050919050565b60006020820190508181036000830152613e03816137fc565b9050919050565b60006020820190508181036000830152613e238161381f565b9050919050565b60006020820190508181036000830152613e4381613842565b9050919050565b60006020820190508181036000830152613e6381613865565b9050919050565b60006020820190508181036000830152613e8381613888565b9050919050565b60006020820190508181036000830152613ea3816138ab565b9050919050565b60006020820190508181036000830152613ec3816138f1565b9050919050565b60006020820190508181036000830152613ee381613914565b9050919050565b60006020820190508181036000830152613f0381613937565b9050919050565b60006020820190508181036000830152613f238161395a565b9050919050565b60006020820190508181036000830152613f438161397d565b9050919050565b60006020820190508181036000830152613f63816139a0565b9050919050565b60006020820190508181036000830152613f83816139c3565b9050919050565b60006020820190508181036000830152613fa3816139e6565b9050919050565b60006020820190508181036000830152613fc381613a09565b9050919050565b60006020820190508181036000830152613fe381613a2c565b9050919050565b6000602082019050818103600083015261400381613a4f565b9050919050565b6000602082019050818103600083015261402381613a72565b9050919050565b6000602082019050818103600083015261404381613ab8565b9050919050565b600060208201905061405f6000830184613adb565b92915050565b600061406f614080565b905061407b8282614370565b919050565b6000604051905090565b600067ffffffffffffffff8211156140a5576140a46144a6565b5b6140ae826144e9565b9050602081019050919050565b600067ffffffffffffffff8211156140d6576140d56144a6565b5b6140df826144e9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061413a826142e5565b9150614145836142e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417a576141796143ea565b5b828201905092915050565b6000614190826142ef565b915061419b836142ef565b92508260ff038211156141b1576141b06143ea565b5b828201905092915050565b60006141c7826142e5565b91506141d2836142e5565b9250826141e2576141e1614419565b5b828204905092915050565b60006141f8826142e5565b9150614203836142e5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423c5761423b6143ea565b5b828202905092915050565b6000614252826142e5565b915061425d836142e5565b9250828210156142705761426f6143ea565b5b828203905092915050565b6000614286826142c5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561432957808201518184015260208101905061430e565b83811115614338576000848401525b50505050565b6000600282049050600182168061435657607f821691505b6020821081141561436a57614369614448565b5b50919050565b614379826144e9565b810181811067ffffffffffffffff82111715614398576143976144a6565b5b80604052505050565b60006143ac826142e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143df576143de6143ea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f517479206d757374206265206d6f7265207468616e207a65726f000000000000600082015250565b7f43616e6e6f7420736574207468652061646d696e20746f206163636f756e742060008201527f3000000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f51747920776f756c64206578636565642074686520746f74616c20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e6e6f74207075726368617365206d6f7265207468616e2074686520706560008201527f722d6f72646572206c696d697400000000000000000000000000000000000000602082015250565b7f6e657751747920776f756c64206578636565642074686520746f74616c20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206f776e6572206f722061646d696e600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f7272656374207061796d656e7420616d6f756e740000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f526571756573746564207175616e7469747920776f756c64206578636565642060008201527f746f74616c20737570706c790000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f416d742063616e6e6f74206265206d6f7265207468616e20746865206375727260008201527f656e742062616c616e6365000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6e65774261736555726c20697320726571756972656400000000000000000000600082015250565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f526563697069656e742063616e6e6f742062652061207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e65775174792063616e6e6f74206265206c657373207468616e20746865206160008201527f6c72656164792064697374726962757465642072657365727665207175616e7460208201527f6974790000000000000000000000000000000000000000000000000000000000604082015250565b7f6e65775174792063616e6e6f74206265207a65726f0000000000000000000000600082015250565b7f6e657750726963652063616e6e6f74206265207a65726f000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e204964203d20300000000000000000000000000000000000000000600082015250565b7f51747920776f756c6420657863656564207265736572766564207175616e746960008201527f7479000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865206261736555524c2068617320616c7265616479206265656e2066696e60008201527f616c697a65640000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f66696e616c4261736555524c2069732072657175697265640000000000000000600082015250565b614e5d8161427b565b8114614e6857600080fd5b50565b614e748161428d565b8114614e7f57600080fd5b50565b614e8b81614299565b8114614e9657600080fd5b50565b614ea2816142e5565b8114614ead57600080fd5b5056fea2646970667358221220f2f1106ae48c1762a58266144b53c73f3086c1952fee66d484af64541c97d0ec64736f6c6343000806003368747470733a2f2f706f697075707079636f6c6f6e792d6d657461646174612e73332e75732d656173742d322e616d617a6f6e6177732e636f6d

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063a060ae18116100a0578063b88d4fde1161006f578063b88d4fde1461070c578063c87b56dd14610735578063e985e9c514610772578063f2fde38b146107af578063f51f96dd146107d857610204565b8063a060ae1814610673578063a22cb4651461069e578063acec338a146106c7578063b45b8ad5146106f057610204565b80638da5cb5b116100e75780638da5cb5b146105a05780639106d7ba146105cb57806394bc7a94146105f657806395d89b411461061f578063990dc9db1461064a57610204565b806370a082311461050c578063715018a614610549578063793cd71e146105605780637cfad0ff1461057757610204565b806322f3e2d41161019b57806342842e0e1161016a57806342842e0e146104295780636352211e14610452578063641b871a1461048f5780636c0360eb146104b8578063704b6c02146104e357610204565b806322f3e2d41461037f57806323b872dd146103aa5780632a8de489146103d357806332cb6b0c146103fe57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806312e705da1461030057806318160ddd1461032b5780631919fed71461035657610204565b806301c8303b1461020957806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061347b565b610803565b005b34801561023e57600080fd5b50610259600480360381019061025491906133d8565b610a2e565b6040516102669190613bad565b60405180910390f35b34801561027b57600080fd5b50610284610b10565b6040516102919190613bc8565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061347b565b610ba2565b6040516102ce9190613b46565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061336b565b610c27565b005b34801561030c57600080fd5b50610315610d3f565b604051610322919061404a565b60405180910390f35b34801561033757600080fd5b50610340610d44565b60405161034d919061404a565b60405180910390f35b34801561036257600080fd5b5061037d6004803603810190610378919061347b565b610d4e565b005b34801561038b57600080fd5b50610394610e17565b6040516103a19190613bad565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190613255565b610e2a565b005b3480156103df57600080fd5b506103e8610e8a565b6040516103f5919061404a565b60405180910390f35b34801561040a57600080fd5b50610413610e90565b604051610420919061404a565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613255565b610e96565b005b34801561045e57600080fd5b506104796004803603810190610474919061347b565b610eb6565b6040516104869190613b46565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190613432565b610f68565b005b3480156104c457600080fd5b506104cd61116c565b6040516104da9190613bc8565b60405180910390f35b3480156104ef57600080fd5b5061050a600480360381019061050591906131e8565b61117b565b005b34801561051857600080fd5b50610533600480360381019061052e91906131e8565b6112ab565b604051610540919061404a565b60405180910390f35b34801561055557600080fd5b5061055e611363565b005b34801561056c57600080fd5b506105756113eb565b005b34801561058357600080fd5b5061059e60048036038101906105999190613432565b611506565b005b3480156105ac57600080fd5b506105b56115e0565b6040516105c29190613b46565b60405180910390f35b3480156105d757600080fd5b506105e061160a565b6040516105ed919061404a565b60405180910390f35b34801561060257600080fd5b5061061d600480360381019061061891906134a8565b61161b565b005b34801561062b57600080fd5b50610634611903565b6040516106419190613bc8565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c919061336b565b611995565b005b34801561067f57600080fd5b50610688611b70565b604051610695919061404a565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c0919061332b565b611b87565b005b3480156106d357600080fd5b506106ee60048036038101906106e991906133ab565b611d08565b005b61070a6004803603810190610705919061347b565b611e5b565b005b34801561071857600080fd5b50610733600480360381019061072e91906132a8565b612094565b005b34801561074157600080fd5b5061075c6004803603810190610757919061347b565b6120f6565b6040516107699190613bc8565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613215565b612198565b6040516107a69190613bad565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906131e8565b61222c565b005b3480156107e457600080fd5b506107ed612324565b6040516107fa919061404a565b60405180910390f35b61080b6115e0565b73ffffffffffffffffffffffffffffffffffffffff1661082961232a565b73ffffffffffffffffffffffffffffffffffffffff1614806108fa5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156108f95750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108e161232a565b73ffffffffffffffffffffffffffffffffffffffff16145b5b610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090613cea565b60405180910390fd5b6000811161097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613f6a565b60405180910390fd5b600161271061098b919061412f565b610995600b612332565b826109a0919061412f565b106109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d790613cca565b60405180910390fd5b600d548111610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613f4a565b60405180910390fd5b80600a8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b095750610b0882612340565b5b9050919050565b606060008054610b1f9061433e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b9061433e565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b5050505050905090565b6000610bad826123aa565b610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390613e8a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c3282610eb6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613f0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cc261232a565b73ffffffffffffffffffffffffffffffffffffffff161480610cf15750610cf081610ceb61232a565b612198565b5b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613dca565b60405180910390fd5b610d3a8383612416565b505050565b600a81565b6000612710905090565b610d5661232a565b73ffffffffffffffffffffffffffffffffffffffff16610d746115e0565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613eca565b60405180910390fd5b60008111610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490613f8a565b60405180910390fd5b8060098190555050565b600860009054906101000a900460ff1681565b610e3b610e3561232a565b826124cf565b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190613f2a565b60405180910390fd5b610e858383836125ad565b505050565b600a5481565b61271081565b610eb183838360405180602001604052806000815250612094565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613e0a565b60405180910390fd5b80915050919050565b610f706115e0565b73ffffffffffffffffffffffffffffffffffffffff16610f8e61232a565b73ffffffffffffffffffffffffffffffffffffffff16148061105f5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561105e5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661104661232a565b73ffffffffffffffffffffffffffffffffffffffff16145b5b61109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613cea565b60405180910390fd5b60008151116110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d99061402a565b60405180910390fd5b6000600f80546110f19061433e565b905014611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061400a565b60405180910390fd5b806040516020016111449190613b24565b604051602081830303815290604052600f9080519060200190611168929190612ffc565b5050565b6060611176612809565b905090565b61118361232a565b73ffffffffffffffffffffffffffffffffffffffff166111a16115e0565b73ffffffffffffffffffffffffffffffffffffffff16146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90613c0a565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613dea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61136b61232a565b73ffffffffffffffffffffffffffffffffffffffff166113896115e0565b73ffffffffffffffffffffffffffffffffffffffff16146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690613eca565b60405180910390fd5b6113e96000612945565b565b6113f361232a565b73ffffffffffffffffffffffffffffffffffffffff166114116115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613eca565b60405180910390fd5b600260075414156114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a490613faa565b60405180910390fd5b60026007819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114fb573d6000803e3d6000fd5b506001600781905550565b61150e61232a565b73ffffffffffffffffffffffffffffffffffffffff1661152c6115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157990613eca565b60405180910390fd5b60008151116115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd90613e4a565b60405180910390fd5b80600f90805190602001906115dc929190612ffc565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611616600b612332565b905090565b61162361232a565b73ffffffffffffffffffffffffffffffffffffffff166116416115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e90613eca565b60405180910390fd5b600260075414156116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d490613faa565b60405180910390fd5b600260078190555060008211611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90613eaa565b60405180910390fd5b6001600a546117a7919061412f565b82600d546117b5919061412f565b106117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90613fea565b60405180910390fd5b6001612710611804919061412f565b61180e600b612332565b83611819919061412f565b10611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613c6a565b60405180910390fd5b60005b828110156118f65761186e600b612a0b565b600061187861160a565b90506001600d600082825461188d919061412f565b9250508190555061189e8382612a21565b8273ffffffffffffffffffffffffffffffffffffffff16817fc96be6393e24a4d640592bd4f28fdfb8353ebf076097056fc778e96a83cdc50d60405160405180910390a35080806118ee906143a1565b91505061185c565b5060016007819055505050565b6060600180546119129061433e565b80601f016020809104026020016040519081016040528092919081815260200182805461193e9061433e565b801561198b5780601f106119605761010080835404028352916020019161198b565b820191906000526020600020905b81548152906001019060200180831161196e57829003601f168201915b5050505050905090565b61199d61232a565b73ffffffffffffffffffffffffffffffffffffffff166119bb6115e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890613eca565b60405180910390fd5b60026007541415611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613faa565b60405180910390fd5b6002600781905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690613eaa565b60405180910390fd5b600147611adc919061412f565b8110611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490613daa565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b63573d6000803e3d6000fd5b5060016007819055505050565b6000600d54600a54611b829190614247565b905090565b611b8f61232a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf490613d2a565b60405180910390fd5b8060056000611c0a61232a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cb761232a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cfc9190613bad565b60405180910390a35050565b611d106115e0565b73ffffffffffffffffffffffffffffffffffffffff16611d2e61232a565b73ffffffffffffffffffffffffffffffffffffffff161480611dff5750600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611dfe5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611de661232a565b73ffffffffffffffffffffffffffffffffffffffff16145b5b611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613cea565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60026007541415611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613faa565b60405180910390fd5b6002600781905550600860009054906101000a900460ff16611ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eef90613e6a565b60405180910390fd5b6001600a611f06919061412f565b8110611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90613caa565b60405180910390fd5b6001612710611f56919061412f565b600a5482611f6261160a565b611f6c919061412f565b611f76919061412f565b10611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90613d8a565b60405180910390fd5b80600954611fc491906141ed565b3414612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613d4a565b60405180910390fd5b60005b818110156120885761201a600b612a0b565b600061202461160a565b90506120303382612a21565b3373ffffffffffffffffffffffffffffffffffffffff16817fc96be6393e24a4d640592bd4f28fdfb8353ebf076097056fc778e96a83cdc50d60405160405180910390a3508080612080906143a1565b915050612008565b50600160078190555050565b6120a561209f61232a565b836124cf565b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90613f2a565b60405180910390fd5b6120f084848484612a3f565b50505050565b60606000821161213b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213290613fca565b60405180910390fd5b600061214561116c565b905060008151116121655760405180602001604052806000815250612190565b8061216f84612a9b565b604051602001612180929190613aea565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61223461232a565b73ffffffffffffffffffffffffffffffffffffffff166122526115e0565b73ffffffffffffffffffffffffffffffffffffffff16146122a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229f90613eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90613c4a565b60405180910390fd5b61232181612945565b50565b60095481565b600033905090565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661248983610eb6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124da826123aa565b612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090613d6a565b60405180910390fd5b600061252483610eb6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259357508373ffffffffffffffffffffffffffffffffffffffff1661257b84610ba2565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a457506125a38185612198565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125cd82610eb6565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a90613eea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90613d0a565b60405180910390fd5b61269e838383612c24565b6126a9600082612416565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f99190614247565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612750919061412f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60606000600f805461281a9061433e565b905011156128b457600f805461282f9061433e565b80601f016020809104026020016040519081016040528092919081815260200182805461285b9061433e565b80156128a85780601f1061287d576101008083540402835291602001916128a8565b820191906000526020600020905b81548152906001019060200180831161288b57829003601f168201915b50505050509050612942565b600e80546128c19061433e565b80601f01602080910402602001604051908101604052809291908181526020018280546128ed9061433e565b801561293a5780601f1061290f5761010080835404028352916020019161293a565b820191906000526020600020905b81548152906001019060200180831161291d57829003601f168201915b505050505090505b90565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b612a3b828260405180602001604052806000815250612c29565b5050565b612a4a8484846125ad565b612a5684848484612c84565b612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c90613c2a565b60405180910390fd5b50505050565b60606000821415612ae3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c1f565b600082905060005b60008214612b15578080612afe906143a1565b915050600a82612b0e91906141bc565b9150612aeb565b60008167ffffffffffffffff811115612b3157612b306144a6565b5b6040519080825280601f01601f191660200182016040528015612b635781602001600182028036833780820191505090505b50905060008290505b60008614612c1757600181612b819190614247565b90506000600a8088612b9391906141bc565b612b9d91906141ed565b87612ba89190614247565b6030612bb49190614185565b905060008160f81b905080848481518110612bd257612bd1614477565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88612c0e91906141bc565b97505050612b6c565b819450505050505b919050565b505050565b612c338383612e1b565b612c406000848484612c84565b612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690613c2a565b60405180910390fd5b505050565b6000612ca58473ffffffffffffffffffffffffffffffffffffffff16612fe9565b15612e0e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cce61232a565b8786866040518563ffffffff1660e01b8152600401612cf09493929190613b61565b602060405180830381600087803b158015612d0a57600080fd5b505af1925050508015612d3b57506040513d601f19601f82011682018060405250810190612d389190613405565b60015b612dbe573d8060008114612d6b576040519150601f19603f3d011682016040523d82523d6000602084013e612d70565b606091505b50600081511415612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad90613c2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e13565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8290613e2a565b60405180910390fd5b612e94816123aa565b15612ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ecb90613c8a565b60405180910390fd5b612ee060008383612c24565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f30919061412f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130089061433e565b90600052602060002090601f01602090048101928261302a5760008555613071565b82601f1061304357805160ff1916838001178555613071565b82800160010185558215613071579182015b82811115613070578251825591602001919060010190613055565b5b50905061307e9190613082565b5090565b5b8082111561309b576000816000905550600101613083565b5090565b60006130b26130ad8461408a565b614065565b9050828152602081018484840111156130ce576130cd6144da565b5b6130d98482856142fc565b509392505050565b60006130f46130ef846140bb565b614065565b9050828152602081018484840111156131105761310f6144da565b5b61311b8482856142fc565b509392505050565b60008135905061313281614e54565b92915050565b60008135905061314781614e6b565b92915050565b60008135905061315c81614e82565b92915050565b60008151905061317181614e82565b92915050565b600082601f83011261318c5761318b6144d5565b5b813561319c84826020860161309f565b91505092915050565b600082601f8301126131ba576131b96144d5565b5b81356131ca8482602086016130e1565b91505092915050565b6000813590506131e281614e99565b92915050565b6000602082840312156131fe576131fd6144e4565b5b600061320c84828501613123565b91505092915050565b6000806040838503121561322c5761322b6144e4565b5b600061323a85828601613123565b925050602061324b85828601613123565b9150509250929050565b60008060006060848603121561326e5761326d6144e4565b5b600061327c86828701613123565b935050602061328d86828701613123565b925050604061329e868287016131d3565b9150509250925092565b600080600080608085870312156132c2576132c16144e4565b5b60006132d087828801613123565b94505060206132e187828801613123565b93505060406132f2878288016131d3565b925050606085013567ffffffffffffffff811115613313576133126144df565b5b61331f87828801613177565b91505092959194509250565b60008060408385031215613342576133416144e4565b5b600061335085828601613123565b925050602061336185828601613138565b9150509250929050565b60008060408385031215613382576133816144e4565b5b600061339085828601613123565b92505060206133a1858286016131d3565b9150509250929050565b6000602082840312156133c1576133c06144e4565b5b60006133cf84828501613138565b91505092915050565b6000602082840312156133ee576133ed6144e4565b5b60006133fc8482850161314d565b91505092915050565b60006020828403121561341b5761341a6144e4565b5b600061342984828501613162565b91505092915050565b600060208284031215613448576134476144e4565b5b600082013567ffffffffffffffff811115613466576134656144df565b5b613472848285016131a5565b91505092915050565b600060208284031215613491576134906144e4565b5b600061349f848285016131d3565b91505092915050565b600080604083850312156134bf576134be6144e4565b5b60006134cd858286016131d3565b92505060206134de85828601613123565b9150509250929050565b6134f18161427b565b82525050565b6135008161428d565b82525050565b6000613511826140ec565b61351b8185614102565b935061352b81856020860161430b565b613534816144e9565b840191505092915050565b600061354a826140f7565b6135548185614113565b935061356481856020860161430b565b61356d816144e9565b840191505092915050565b6000613583826140f7565b61358d8185614124565b935061359d81856020860161430b565b80840191505092915050565b60006135b6601a83614113565b91506135c1826144fa565b602082019050919050565b60006135d9602183614113565b91506135e482614523565b604082019050919050565b60006135fc603283614113565b915061360782614572565b604082019050919050565b600061361f602683614113565b915061362a826145c1565b604082019050919050565b6000613642602183614113565b915061364d82614610565b604082019050919050565b6000613665601c83614113565b91506136708261465f565b602082019050919050565b6000613688602d83614113565b915061369382614688565b604082019050919050565b60006136ab602483614113565b91506136b6826146d7565b604082019050919050565b60006136ce602083614113565b91506136d982614726565b602082019050919050565b60006136f1602483614113565b91506136fc8261474f565b604082019050919050565b6000613714601983614113565b915061371f8261479e565b602082019050919050565b6000613737601883614113565b9150613742826147c7565b602082019050919050565b600061375a602c83614113565b9150613765826147f0565b604082019050919050565b600061377d602c83614113565b91506137888261483f565b604082019050919050565b60006137a0600783614124565b91506137ab8261488e565b600782019050919050565b60006137c3602b83614113565b91506137ce826148b7565b604082019050919050565b60006137e6603883614113565b91506137f182614906565b604082019050919050565b6000613809602a83614113565b915061381482614955565b604082019050919050565b600061382c602983614113565b9150613837826149a4565b604082019050919050565b600061384f602083614113565b915061385a826149f3565b602082019050919050565b6000613872601683614113565b915061387d82614a1c565b602082019050919050565b6000613895601683614113565b91506138a082614a45565b602082019050919050565b60006138b8602c83614113565b91506138c382614a6e565b604082019050919050565b60006138db600583614124565b91506138e682614abd565b600582019050919050565b60006138fe602283614113565b915061390982614ae6565b604082019050919050565b6000613921602083614113565b915061392c82614b35565b602082019050919050565b6000613944602983614113565b915061394f82614b5e565b604082019050919050565b6000613967602183614113565b915061397282614bad565b604082019050919050565b600061398a603183614113565b915061399582614bfc565b604082019050919050565b60006139ad604383614113565b91506139b882614c4b565b606082019050919050565b60006139d0601583614113565b91506139db82614cc0565b602082019050919050565b60006139f3601783614113565b91506139fe82614ce9565b602082019050919050565b6000613a16601f83614113565b9150613a2182614d12565b602082019050919050565b6000613a39600c83614113565b9150613a4482614d3b565b602082019050919050565b6000613a5c602283614113565b9150613a6782614d64565b604082019050919050565b6000613a7f602683614113565b9150613a8a82614db3565b604082019050919050565b6000613aa2600183614124565b9150613aad82614e02565b600182019050919050565b6000613ac5601883614113565b9150613ad082614e2b565b602082019050919050565b613ae4816142e5565b82525050565b6000613af68285613578565b9150613b0182613a95565b9150613b0d8284613578565b9150613b18826138ce565b91508190509392505050565b6000613b2f82613793565b9150613b3b8284613578565b915081905092915050565b6000602082019050613b5b60008301846134e8565b92915050565b6000608082019050613b7660008301876134e8565b613b8360208301866134e8565b613b906040830185613adb565b8181036060830152613ba28184613506565b905095945050505050565b6000602082019050613bc260008301846134f7565b92915050565b60006020820190508181036000830152613be2818461353f565b905092915050565b60006020820190508181036000830152613c03816135a9565b9050919050565b60006020820190508181036000830152613c23816135cc565b9050919050565b60006020820190508181036000830152613c43816135ef565b9050919050565b60006020820190508181036000830152613c6381613612565b9050919050565b60006020820190508181036000830152613c8381613635565b9050919050565b60006020820190508181036000830152613ca381613658565b9050919050565b60006020820190508181036000830152613cc38161367b565b9050919050565b60006020820190508181036000830152613ce38161369e565b9050919050565b60006020820190508181036000830152613d03816136c1565b9050919050565b60006020820190508181036000830152613d23816136e4565b9050919050565b60006020820190508181036000830152613d4381613707565b9050919050565b60006020820190508181036000830152613d638161372a565b9050919050565b60006020820190508181036000830152613d838161374d565b9050919050565b60006020820190508181036000830152613da381613770565b9050919050565b60006020820190508181036000830152613dc3816137b6565b9050919050565b60006020820190508181036000830152613de3816137d9565b9050919050565b60006020820190508181036000830152613e03816137fc565b9050919050565b60006020820190508181036000830152613e238161381f565b9050919050565b60006020820190508181036000830152613e4381613842565b9050919050565b60006020820190508181036000830152613e6381613865565b9050919050565b60006020820190508181036000830152613e8381613888565b9050919050565b60006020820190508181036000830152613ea3816138ab565b9050919050565b60006020820190508181036000830152613ec3816138f1565b9050919050565b60006020820190508181036000830152613ee381613914565b9050919050565b60006020820190508181036000830152613f0381613937565b9050919050565b60006020820190508181036000830152613f238161395a565b9050919050565b60006020820190508181036000830152613f438161397d565b9050919050565b60006020820190508181036000830152613f63816139a0565b9050919050565b60006020820190508181036000830152613f83816139c3565b9050919050565b60006020820190508181036000830152613fa3816139e6565b9050919050565b60006020820190508181036000830152613fc381613a09565b9050919050565b60006020820190508181036000830152613fe381613a2c565b9050919050565b6000602082019050818103600083015261400381613a4f565b9050919050565b6000602082019050818103600083015261402381613a72565b9050919050565b6000602082019050818103600083015261404381613ab8565b9050919050565b600060208201905061405f6000830184613adb565b92915050565b600061406f614080565b905061407b8282614370565b919050565b6000604051905090565b600067ffffffffffffffff8211156140a5576140a46144a6565b5b6140ae826144e9565b9050602081019050919050565b600067ffffffffffffffff8211156140d6576140d56144a6565b5b6140df826144e9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061413a826142e5565b9150614145836142e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417a576141796143ea565b5b828201905092915050565b6000614190826142ef565b915061419b836142ef565b92508260ff038211156141b1576141b06143ea565b5b828201905092915050565b60006141c7826142e5565b91506141d2836142e5565b9250826141e2576141e1614419565b5b828204905092915050565b60006141f8826142e5565b9150614203836142e5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561423c5761423b6143ea565b5b828202905092915050565b6000614252826142e5565b915061425d836142e5565b9250828210156142705761426f6143ea565b5b828203905092915050565b6000614286826142c5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561432957808201518184015260208101905061430e565b83811115614338576000848401525b50505050565b6000600282049050600182168061435657607f821691505b6020821081141561436a57614369614448565b5b50919050565b614379826144e9565b810181811067ffffffffffffffff82111715614398576143976144a6565b5b80604052505050565b60006143ac826142e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143df576143de6143ea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f517479206d757374206265206d6f7265207468616e207a65726f000000000000600082015250565b7f43616e6e6f7420736574207468652061646d696e20746f206163636f756e742060008201527f3000000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f51747920776f756c64206578636565642074686520746f74616c20737570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43616e6e6f74207075726368617365206d6f7265207468616e2074686520706560008201527f722d6f72646572206c696d697400000000000000000000000000000000000000602082015250565b7f6e657751747920776f756c64206578636565642074686520746f74616c20737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420746865206f776e6572206f722061646d696e600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f7272656374207061796d656e7420616d6f756e740000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f526571756573746564207175616e7469747920776f756c64206578636565642060008201527f746f74616c20737570706c790000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f416d742063616e6e6f74206265206d6f7265207468616e20746865206375727260008201527f656e742062616c616e6365000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6e65774261736555726c20697320726571756972656400000000000000000000600082015250565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f526563697069656e742063616e6e6f742062652061207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6e65775174792063616e6e6f74206265206c657373207468616e20746865206160008201527f6c72656164792064697374726962757465642072657365727665207175616e7460208201527f6974790000000000000000000000000000000000000000000000000000000000604082015250565b7f6e65775174792063616e6e6f74206265207a65726f0000000000000000000000600082015250565b7f6e657750726963652063616e6e6f74206265207a65726f000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e204964203d20300000000000000000000000000000000000000000600082015250565b7f51747920776f756c6420657863656564207265736572766564207175616e746960008201527f7479000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865206261736555524c2068617320616c7265616479206265656e2066696e60008201527f616c697a65640000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f66696e616c4261736555524c2069732072657175697265640000000000000000600082015250565b614e5d8161427b565b8114614e6857600080fd5b50565b614e748161428d565b8114614e7f57600080fd5b50565b614e8b81614299565b8114614e9657600080fd5b50565b614ea2816142e5565b8114614ead57600080fd5b5056fea2646970667358221220f2f1106ae48c1762a58266144b53c73f3086c1952fee66d484af64541c97d0ec64736f6c63430008060033

Deployed Bytecode Sourcemap

38996:7328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43158:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26800:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27745:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29304:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28827:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39160:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40564:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43672:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39213:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30194:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39271:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39111:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30604:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27439:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44456:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40765:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41696:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27169:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12462:94;;;;;;;;;;;;;:::i;:::-;;42929:121;;;;;;;;;;;;;:::i;:::-;;45124:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11811:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40661:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41888:706;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27914:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42605:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41551:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29597:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43058:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39899:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30860:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41088:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29963:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12711:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39240:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43158:377;45499:7;:5;:7::i;:::-;45483:23;;:12;:10;:12::i;:::-;:23;;;:75;;;;45529:1;45511:20;;:6;;;;;;;;;;;:20;;;;:46;;;;;45551:6;;;;;;;;;;;45535:22;;:12;:10;:12::i;:::-;:22;;;45511:46;45483:75;45475:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;43251:1:::1;43242:6;:10;43234:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;43341:1;39148:5;43328:14;;;;:::i;:::-;43306:19;:9;:17;:19::i;:::-;43297:6;:28;;;;:::i;:::-;:45;43289:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;43411:12;;43402:6;:21;43394:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;43521:6;43508:10;:19;;;;43158:377:::0;:::o;26800:305::-;26902:4;26954:25;26939:40;;;:11;:40;;;;:105;;;;27011:33;26996:48;;;:11;:48;;;;26939:105;:158;;;;27061:36;27085:11;27061:23;:36::i;:::-;26939:158;26919:178;;26800:305;;;:::o;27745:100::-;27799:13;27832:5;27825:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27745:100;:::o;29304:221::-;29380:7;29408:16;29416:7;29408;:16::i;:::-;29400:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29493:15;:24;29509:7;29493:24;;;;;;;;;;;;;;;;;;;;;29486:31;;29304:221;;;:::o;28827:411::-;28908:13;28924:23;28939:7;28924:14;:23::i;:::-;28908:39;;28972:5;28966:11;;:2;:11;;;;28958:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29066:5;29050:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29075:37;29092:5;29099:12;:10;:12::i;:::-;29075:16;:37::i;:::-;29050:62;29028:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29209:21;29218:2;29222:7;29209:8;:21::i;:::-;28897:341;28827:411;;:::o;39160:44::-;39202:2;39160:44;:::o;40564:89::-;40608:7;39148:5;40628:17;;40564:89;:::o;43672:159::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43761:1:::1;43750:8;:12;43742:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43815:8;43803:9;:20;;;;43672:159:::0;:::o;39213:20::-;;;;;;;;;;;;;:::o;30194:339::-;30389:41;30408:12;:10;:12::i;:::-;30422:7;30389:18;:41::i;:::-;30381:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30497:28;30507:4;30513:2;30517:7;30497:9;:28::i;:::-;30194:339;;;:::o;39271:25::-;;;;:::o;39111:42::-;39148:5;39111:42;:::o;30604:185::-;30742:39;30759:4;30765:2;30769:7;30742:39;;;;;;;;;;;;:16;:39::i;:::-;30604:185;;;:::o;27439:239::-;27511:7;27531:13;27547:7;:16;27555:7;27547:16;;;;;;;;;;;;;;;;;;;;;27531:32;;27599:1;27582:19;;:5;:19;;;;27574:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27665:5;27658:12;;;27439:239;;;:::o;44456:348::-;45499:7;:5;:7::i;:::-;45483:23;;:12;:10;:12::i;:::-;:23;;;:75;;;;45529:1;45511:20;;:6;;;;;;;;;;;:20;;;;:46;;;;;45551:6;;;;;;;;;;;45535:22;;:12;:10;:12::i;:::-;:22;;;45511:46;45483:75;45475:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;44585:1:::1;44561:13;44555:27;:31;44547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44669:1;44640:17;44634:31;;;;;:::i;:::-;;;:36;44626:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44781:13;44753:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;44726:17;:70;;;;;;;;;;;;:::i;:::-;;44456:348:::0;:::o;40765:91::-;40805:13;40838:10;:8;:10::i;:::-;40831:17;;40765:91;:::o;41696:184::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41798:1:::1;41774:26;;:12;:26;;;;41766:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;41860:12;41851:6;;:21;;;;;;;;;;;;;;;;;;41696:184:::0;:::o;27169:208::-;27241:7;27286:1;27269:19;;:5;:19;;;;27261:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27353:9;:16;27363:5;27353:16;;;;;;;;;;;;;;;;27346:23;;27169:208;;;:::o;12462:94::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12527:21:::1;12545:1;12527:9;:21::i;:::-;12462:94::o:0;42929:121::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:1:::1;15432:7;;:19;;15424:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:1;15565:7;:18;;;;42999:10:::2;42991:28;;:51;43020:21;42991:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;14792:1:::1;15744:7;:22;;;;42929:121::o:0;45124:195::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45240:1:::1;45219:10;45213:24;:28;45205:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45301:10;45281:17;:30;;;;;;;;;;;;:::i;:::-;;45124:195:::0;:::o;11811:87::-;11857:7;11884:6;;;;;;;;;;;11877:13;;11811:87;:::o;40661:96::-;40703:7;40730:19;:9;:17;:19::i;:::-;40723:26;;40661:96;:::o;41888:706::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:1:::1;15432:7;;:19;;15424:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:1;15565:7;:18;;;;42008:1:::2;42002:3;:7;41994:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;42079:1;42058:23;;:9;:23;;;;42050:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;42173:1;42160:10;;:14;;;;:::i;:::-;42154:3;42139:12;;:18;;;;:::i;:::-;:35;42131:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;42273:1;39148:5;42260:14;;;;:::i;:::-;42238:19;:9;:17;:19::i;:::-;42232:3;:25;;;;:::i;:::-;:42;42224:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;42330:9;42325:262;42349:3;42345:1;:7;42325:262;;;42374:21;:9;:19;:21::i;:::-;42410:17;42430:11;:9;:11::i;:::-;42410:31;;42472:1;42456:12;;:17;;;;;;;:::i;:::-;;;;;;;;42488:31;42498:9;42509;42488;:31::i;:::-;42565:9;42541:34;;42554:9;42541:34;;;;;;;;;;42359:228;42354:3;;;;;:::i;:::-;;;;42325:262;;;;14792:1:::1;15744:7;:22;;;;41888:706:::0;;:::o;27914:104::-;27970:13;28003:7;27996:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27914:104;:::o;42605:316::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:1:::1;15432:7;;:19;;15424:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:1;15565:7;:18;;;;42732:1:::2;42711:23;;:9;:23;;;;42703:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;42820:1;42798:21;:23;;;;:::i;:::-;42792:3;:29;42784:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;42889:9;42881:27;;:32;42909:3;42881:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;14792:1:::1;15744:7;:22;;;;42605:316:::0;;:::o;41551:107::-;41599:7;41638:12;;41625:10;;:25;;;;:::i;:::-;41618:32;;41551:107;:::o;29597:295::-;29712:12;:10;:12::i;:::-;29700:24;;:8;:24;;;;29692:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29812:8;29767:18;:32;29786:12;:10;:12::i;:::-;29767:32;;;;;;;;;;;;;;;:42;29800:8;29767:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29865:8;29836:48;;29851:12;:10;:12::i;:::-;29836:48;;;29875:8;29836:48;;;;;;:::i;:::-;;;;;;;;29597:295;;:::o;43058:92::-;45499:7;:5;:7::i;:::-;45483:23;;:12;:10;:12::i;:::-;:23;;;:75;;;;45529:1;45511:20;;:6;;;;;;;;;;;:20;;;;:46;;;;;45551:6;;;;;;;;;;;45535:22;;:12;:10;:12::i;:::-;:22;;;45511:46;45483:75;45475:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;43136:6:::1;43125:8;;:17;;;;;;;;;;;;;;;;;;43058:92:::0;:::o;39899:657::-;14836:1;15432:7;;:19;;15424:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14836:1;15565:7;:18;;;;39980:8:::1;;;;;;;;;;;39972:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40058:1;39202:2;40040:19;;;;:::i;:::-;40034:3;:25;40026:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;40176:1;39148:5;40163:14;;;;:::i;:::-;40149:10;;40143:3;40129:11;:9;:11::i;:::-;:17;;;;:::i;:::-;:30;;;;:::i;:::-;40128:49;40120:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;40271:3;40259:9;;:15;;;;:::i;:::-;40245:9;:30;40237:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;40322:9;40317:232;40341:3;40337:1;:7;40317:232;;;40366:21;:9;:19;:21::i;:::-;40402:17;40422:11;:9;:11::i;:::-;40402:31;;40448:32;40458:10;40470:9;40448;:32::i;:::-;40526:10;40502:35;;40515:9;40502:35;;;;;;;;;;40351:198;40346:3;;;;;:::i;:::-;;;;40317:232;;;;14792:1:::0;15744:7;:22;;;;39899:657;:::o;30860:328::-;31035:41;31054:12;:10;:12::i;:::-;31068:7;31035:18;:41::i;:::-;31027:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31141:39;31155:4;31161:2;31165:7;31174:5;31141:13;:39::i;:::-;30860:328;;;;:::o;41088:377::-;41189:13;41238:1;41228:7;:11;41220:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;41269:18;41290:9;:7;:9::i;:::-;41269:30;;41351:1;41336:4;41330:18;:22;:127;;;;;;;;;;;;;;;;;41396:4;41407:17;41416:7;41407:8;:17::i;:::-;41379:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41330:127;41310:147;;;41088:377;;;:::o;29963:164::-;30060:4;30084:18;:25;30103:5;30084:25;;;;;;;;;;;;;;;:35;30110:8;30084:35;;;;;;;;;;;;;;;;;;;;;;;;;30077:42;;29963:164;;;;:::o;12711:192::-;12042:12;:10;:12::i;:::-;12031:23;;:7;:5;:7::i;:::-;:23;;;12023:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12820:1:::1;12800:22;;:8;:22;;;;12792:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12876:19;12886:8;12876:9;:19::i;:::-;12711:192:::0;:::o;39240:24::-;;;;:::o;10601:98::-;10654:7;10681:10;10674:17;;10601:98;:::o;16596:114::-;16661:7;16688;:14;;;16681:21;;16596:114;;;:::o;25320:157::-;25405:4;25444:25;25429:40;;;:11;:40;;;;25422:47;;25320:157;;;:::o;32698:127::-;32763:4;32815:1;32787:30;;:7;:16;32795:7;32787:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32780:37;;32698:127;;;:::o;36680:174::-;36782:2;36755:15;:24;36771:7;36755:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36838:7;36834:2;36800:46;;36809:23;36824:7;36809:14;:23::i;:::-;36800:46;;;;;;;;;;;;36680:174;;:::o;32992:348::-;33085:4;33110:16;33118:7;33110;:16::i;:::-;33102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33186:13;33202:23;33217:7;33202:14;:23::i;:::-;33186:39;;33255:5;33244:16;;:7;:16;;;:51;;;;33288:7;33264:31;;:20;33276:7;33264:11;:20::i;:::-;:31;;;33244:51;:87;;;;33299:32;33316:5;33323:7;33299:16;:32::i;:::-;33244:87;33236:96;;;32992:348;;;;:::o;35984:578::-;36143:4;36116:31;;:23;36131:7;36116:14;:23::i;:::-;:31;;;36108:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36226:1;36212:16;;:2;:16;;;;36204:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36282:39;36303:4;36309:2;36313:7;36282:20;:39::i;:::-;36386:29;36403:1;36407:7;36386:8;:29::i;:::-;36447:1;36428:9;:15;36438:4;36428:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36476:1;36459:9;:13;36469:2;36459:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36507:2;36488:7;:16;36496:7;36488:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36546:7;36542:2;36527:27;;36536:4;36527:27;;;;;;;;;;;;35984:578;;;:::o;40864:216::-;40924:13;40987:1;40959:17;40953:31;;;;;:::i;:::-;;;:35;40950:91;;;41012:17;41005:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40950:91;41060:12;41053:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40864:216;;:::o;12911:173::-;12967:16;12986:6;;;;;;;;;;;12967:25;;13012:8;13003:6;;:17;;;;;;;;;;;;;;;;;;13067:8;13036:40;;13057:8;13036:40;;;;;;;;;;;;12956:128;12911:173;:::o;16718:127::-;16825:1;16807:7;:14;;;:19;;;;;;;;;;;16718:127;:::o;33682:110::-;33758:26;33768:2;33772:7;33758:26;;;;;;;;;;;;:9;:26::i;:::-;33682:110;;:::o;32070:315::-;32227:28;32237:4;32243:2;32247:7;32227:9;:28::i;:::-;32274:48;32297:4;32303:2;32307:7;32316:5;32274:22;:48::i;:::-;32266:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32070:315;;;;:::o;45701:620::-;45780:27;45835:1;45829:2;:7;45825:50;;;45853:10;;;;;;;;;;;;;;;;;;;;;45825:50;45885:9;45897:2;45885:14;;45910:11;45932:69;45944:1;45939;:6;45932:69;;45962:5;;;;;:::i;:::-;;;;45987:2;45982:7;;;;;:::i;:::-;;;45932:69;;;46011:17;46041:3;46031:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46011:34;;46056:9;46068:3;46056:15;;46082:202;46095:1;46089:2;:7;46082:202;;46121:1;46117;:5;;;;:::i;:::-;46113:9;;46137:10;46179:2;46173;46168;:7;;;;:::i;:::-;46167:14;;;;:::i;:::-;46162:2;:19;;;;:::i;:::-;46151:2;:31;;;;:::i;:::-;46137:46;;46198:9;46217:4;46210:12;;46198:24;;46247:2;46237:4;46242:1;46237:7;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;46270:2;46264:8;;;;;:::i;:::-;;;46098:186;;46082:202;;;46308:4;46294:19;;;;;;45701:620;;;;:::o;38794:126::-;;;;:::o;34019:321::-;34149:18;34155:2;34159:7;34149:5;:18::i;:::-;34200:54;34231:1;34235:2;34239:7;34248:5;34200:22;:54::i;:::-;34178:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34019:321;;;:::o;37419:803::-;37574:4;37595:15;:2;:13;;;:15::i;:::-;37591:624;;;37647:2;37631:36;;;37668:12;:10;:12::i;:::-;37682:4;37688:7;37697:5;37631:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37627:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37894:1;37877:6;:13;:18;37873:272;;;37920:60;;;;;;;;;;:::i;:::-;;;;;;;;37873:272;38095:6;38089:13;38080:6;38076:2;38072:15;38065:38;37627:533;37764:45;;;37754:55;;;:6;:55;;;;37747:62;;;;;37591:624;38199:4;38192:11;;37419:803;;;;;;;:::o;34676:382::-;34770:1;34756:16;;:2;:16;;;;34748:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34829:16;34837:7;34829;:16::i;:::-;34828:17;34820:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34891:45;34920:1;34924:2;34928:7;34891:20;:45::i;:::-;34966:1;34949:9;:13;34959:2;34949:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34997:2;34978:7;:16;34986:7;34978:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35042:7;35038:2;35017:33;;35034:1;35017:33;;;;;;;;;;;;34676:382;;:::o;2865:387::-;2925:4;3133:12;3200:7;3188:20;3180:28;;3243:1;3236:4;:8;3229:15;;;2865:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;1035:84;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1176:86;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1330:79;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:2;;1540:79;;:::i;:::-;1499:2;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:2;;1899:79;;:::i;:::-;1858:2;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2184:87;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:2;;;2391:79;;:::i;:::-;2353:2;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2343:263;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:2;;;2743:79;;:::i;:::-;2705:2;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2695:391;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:2;;;3240:79;;:::i;:::-;3202:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3192:519;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:2;;;3892:79;;:::i;:::-;3853:2;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:2;;;4476:79;;:::i;:::-;4440:2;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3843:817;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:2;;;4794:79;;:::i;:::-;4756:2;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4746:388;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5271:79;;:::i;:::-;5233:2;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5223:391;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:2;;;5731:79;;:::i;:::-;5693:2;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5683:260;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:2;;;6062:79;;:::i;:::-;6024:2;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;6014:262;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:2;;;6406:79;;:::i;:::-;6368:2;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6358:273;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:2;;;6761:79;;:::i;:::-;6723:2;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:2;;;6961:79;;:::i;:::-;6925:2;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6713:433;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:2;;;7266:79;;:::i;:::-;7228:2;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7218:263;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:2;;;7618:79;;:::i;:::-;7580:2;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7570:391;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;8032:53;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8150:50;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;;;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9471:220;;;:::o;9697:366::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9843:220;;;:::o;10069:366::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10215:220;;;:::o;10441:366::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10587:220;;;:::o;10813:366::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10959:220;;;:::o;11185:366::-;11327:3;11348:67;11412:2;11407:3;11348:67;:::i;:::-;11341:74;;11424:93;11513:3;11424:93;:::i;:::-;11542:2;11537:3;11533:12;11526:19;;11331:220;;;:::o;11557:366::-;11699:3;11720:67;11784:2;11779:3;11720:67;:::i;:::-;11713:74;;11796:93;11885:3;11796:93;:::i;:::-;11914:2;11909:3;11905:12;11898:19;;11703:220;;;:::o;11929:366::-;12071:3;12092:67;12156:2;12151:3;12092:67;:::i;:::-;12085:74;;12168:93;12257:3;12168:93;:::i;:::-;12286:2;12281:3;12277:12;12270:19;;12075:220;;;:::o;12301:366::-;12443:3;12464:67;12528:2;12523:3;12464:67;:::i;:::-;12457:74;;12540:93;12629:3;12540:93;:::i;:::-;12658:2;12653:3;12649:12;12642:19;;12447:220;;;:::o;12673:366::-;12815:3;12836:67;12900:2;12895:3;12836:67;:::i;:::-;12829:74;;12912:93;13001:3;12912:93;:::i;:::-;13030:2;13025:3;13021:12;13014:19;;12819:220;;;:::o;13045:366::-;13187:3;13208:67;13272:2;13267:3;13208:67;:::i;:::-;13201:74;;13284:93;13373:3;13284:93;:::i;:::-;13402:2;13397:3;13393:12;13386:19;;13191:220;;;:::o;13417:366::-;13559:3;13580:67;13644:2;13639:3;13580:67;:::i;:::-;13573:74;;13656:93;13745:3;13656:93;:::i;:::-;13774:2;13769:3;13765:12;13758:19;;13563:220;;;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13935:220;;;:::o;14161:366::-;14303:3;14324:67;14388:2;14383:3;14324:67;:::i;:::-;14317:74;;14400:93;14489:3;14400:93;:::i;:::-;14518:2;14513:3;14509:12;14502:19;;14307:220;;;:::o;14533:400::-;14693:3;14714:84;14796:1;14791:3;14714:84;:::i;:::-;14707:91;;14807:93;14896:3;14807:93;:::i;:::-;14925:1;14920:3;14916:11;14909:18;;14697:236;;;:::o;14939:366::-;15081:3;15102:67;15166:2;15161:3;15102:67;:::i;:::-;15095:74;;15178:93;15267:3;15178:93;:::i;:::-;15296:2;15291:3;15287:12;15280:19;;15085:220;;;:::o;15311:366::-;15453:3;15474:67;15538:2;15533:3;15474:67;:::i;:::-;15467:74;;15550:93;15639:3;15550:93;:::i;:::-;15668:2;15663:3;15659:12;15652:19;;15457:220;;;:::o;15683:366::-;15825:3;15846:67;15910:2;15905:3;15846:67;:::i;:::-;15839:74;;15922:93;16011:3;15922:93;:::i;:::-;16040:2;16035:3;16031:12;16024:19;;15829:220;;;:::o;16055:366::-;16197:3;16218:67;16282:2;16277:3;16218:67;:::i;:::-;16211:74;;16294:93;16383:3;16294:93;:::i;:::-;16412:2;16407:3;16403:12;16396:19;;16201:220;;;:::o;16427:366::-;16569:3;16590:67;16654:2;16649:3;16590:67;:::i;:::-;16583:74;;16666:93;16755:3;16666:93;:::i;:::-;16784:2;16779:3;16775:12;16768:19;;16573:220;;;:::o;16799:366::-;16941:3;16962:67;17026:2;17021:3;16962:67;:::i;:::-;16955:74;;17038:93;17127:3;17038:93;:::i;:::-;17156:2;17151:3;17147:12;17140:19;;16945:220;;;:::o;17171:366::-;17313:3;17334:67;17398:2;17393:3;17334:67;:::i;:::-;17327:74;;17410:93;17499:3;17410:93;:::i;:::-;17528:2;17523:3;17519:12;17512:19;;17317:220;;;:::o;17543:366::-;17685:3;17706:67;17770:2;17765:3;17706:67;:::i;:::-;17699:74;;17782:93;17871:3;17782:93;:::i;:::-;17900:2;17895:3;17891:12;17884:19;;17689:220;;;:::o;17915:400::-;18075:3;18096:84;18178:1;18173:3;18096:84;:::i;:::-;18089:91;;18189:93;18278:3;18189:93;:::i;:::-;18307:1;18302:3;18298:11;18291:18;;18079:236;;;:::o;18321:366::-;18463:3;18484:67;18548:2;18543:3;18484:67;:::i;:::-;18477:74;;18560:93;18649:3;18560:93;:::i;:::-;18678:2;18673:3;18669:12;18662:19;;18467:220;;;:::o;18693:366::-;18835:3;18856:67;18920:2;18915:3;18856:67;:::i;:::-;18849:74;;18932:93;19021:3;18932:93;:::i;:::-;19050:2;19045:3;19041:12;19034:19;;18839:220;;;:::o;19065:366::-;19207:3;19228:67;19292:2;19287:3;19228:67;:::i;:::-;19221:74;;19304:93;19393:3;19304:93;:::i;:::-;19422:2;19417:3;19413:12;19406:19;;19211:220;;;:::o;19437:366::-;19579:3;19600:67;19664:2;19659:3;19600:67;:::i;:::-;19593:74;;19676:93;19765:3;19676:93;:::i;:::-;19794:2;19789:3;19785:12;19778:19;;19583:220;;;:::o;19809:366::-;19951:3;19972:67;20036:2;20031:3;19972:67;:::i;:::-;19965:74;;20048:93;20137:3;20048:93;:::i;:::-;20166:2;20161:3;20157:12;20150:19;;19955:220;;;:::o;20181:366::-;20323:3;20344:67;20408:2;20403:3;20344:67;:::i;:::-;20337:74;;20420:93;20509:3;20420:93;:::i;:::-;20538:2;20533:3;20529:12;20522:19;;20327:220;;;:::o;20553:366::-;20695:3;20716:67;20780:2;20775:3;20716:67;:::i;:::-;20709:74;;20792:93;20881:3;20792:93;:::i;:::-;20910:2;20905:3;20901:12;20894:19;;20699:220;;;:::o;20925:366::-;21067:3;21088:67;21152:2;21147:3;21088:67;:::i;:::-;21081:74;;21164:93;21253:3;21164:93;:::i;:::-;21282:2;21277:3;21273:12;21266:19;;21071:220;;;:::o;21297:366::-;21439:3;21460:67;21524:2;21519:3;21460:67;:::i;:::-;21453:74;;21536:93;21625:3;21536:93;:::i;:::-;21654:2;21649:3;21645:12;21638:19;;21443:220;;;:::o;21669:366::-;21811:3;21832:67;21896:2;21891:3;21832:67;:::i;:::-;21825:74;;21908:93;21997:3;21908:93;:::i;:::-;22026:2;22021:3;22017:12;22010:19;;21815:220;;;:::o;22041:366::-;22183:3;22204:67;22268:2;22263:3;22204:67;:::i;:::-;22197:74;;22280:93;22369:3;22280:93;:::i;:::-;22398:2;22393:3;22389:12;22382:19;;22187:220;;;:::o;22413:366::-;22555:3;22576:67;22640:2;22635:3;22576:67;:::i;:::-;22569:74;;22652:93;22741:3;22652:93;:::i;:::-;22770:2;22765:3;22761:12;22754:19;;22559:220;;;:::o;22785:400::-;22945:3;22966:84;23048:1;23043:3;22966:84;:::i;:::-;22959:91;;23059:93;23148:3;23059:93;:::i;:::-;23177:1;23172:3;23168:11;23161:18;;22949:236;;;:::o;23191:366::-;23333:3;23354:67;23418:2;23413:3;23354:67;:::i;:::-;23347:74;;23430:93;23519:3;23430:93;:::i;:::-;23548:2;23543:3;23539:12;23532:19;;23337:220;;;:::o;23563:118::-;23650:24;23668:5;23650:24;:::i;:::-;23645:3;23638:37;23628:53;;:::o;23687:967::-;24069:3;24091:95;24182:3;24173:6;24091:95;:::i;:::-;24084:102;;24203:148;24347:3;24203:148;:::i;:::-;24196:155;;24368:95;24459:3;24450:6;24368:95;:::i;:::-;24361:102;;24480:148;24624:3;24480:148;:::i;:::-;24473:155;;24645:3;24638:10;;24073:581;;;;;:::o;24660:541::-;24893:3;24915:148;25059:3;24915:148;:::i;:::-;24908:155;;25080:95;25171:3;25162:6;25080:95;:::i;:::-;25073:102;;25192:3;25185:10;;24897:304;;;;:::o;25207:222::-;25300:4;25338:2;25327:9;25323:18;25315:26;;25351:71;25419:1;25408:9;25404:17;25395:6;25351:71;:::i;:::-;25305:124;;;;:::o;25435:640::-;25630:4;25668:3;25657:9;25653:19;25645:27;;25682:71;25750:1;25739:9;25735:17;25726:6;25682:71;:::i;:::-;25763:72;25831:2;25820:9;25816:18;25807:6;25763:72;:::i;:::-;25845;25913:2;25902:9;25898:18;25889:6;25845:72;:::i;:::-;25964:9;25958:4;25954:20;25949:2;25938:9;25934:18;25927:48;25992:76;26063:4;26054:6;25992:76;:::i;:::-;25984:84;;25635:440;;;;;;;:::o;26081:210::-;26168:4;26206:2;26195:9;26191:18;26183:26;;26219:65;26281:1;26270:9;26266:17;26257:6;26219:65;:::i;:::-;26173:118;;;;:::o;26297:313::-;26410:4;26448:2;26437:9;26433:18;26425:26;;26497:9;26491:4;26487:20;26483:1;26472:9;26468:17;26461:47;26525:78;26598:4;26589:6;26525:78;:::i;:::-;26517:86;;26415:195;;;;:::o;26616:419::-;26782:4;26820:2;26809:9;26805:18;26797:26;;26869:9;26863:4;26859:20;26855:1;26844:9;26840:17;26833:47;26897:131;27023:4;26897:131;:::i;:::-;26889:139;;26787:248;;;:::o;27041:419::-;27207:4;27245:2;27234:9;27230:18;27222:26;;27294:9;27288:4;27284:20;27280:1;27269:9;27265:17;27258:47;27322:131;27448:4;27322:131;:::i;:::-;27314:139;;27212:248;;;:::o;27466:419::-;27632:4;27670:2;27659:9;27655:18;27647:26;;27719:9;27713:4;27709:20;27705:1;27694:9;27690:17;27683:47;27747:131;27873:4;27747:131;:::i;:::-;27739:139;;27637:248;;;:::o;27891:419::-;28057:4;28095:2;28084:9;28080:18;28072:26;;28144:9;28138:4;28134:20;28130:1;28119:9;28115:17;28108:47;28172:131;28298:4;28172:131;:::i;:::-;28164:139;;28062:248;;;:::o;28316:419::-;28482:4;28520:2;28509:9;28505:18;28497:26;;28569:9;28563:4;28559:20;28555:1;28544:9;28540:17;28533:47;28597:131;28723:4;28597:131;:::i;:::-;28589:139;;28487:248;;;:::o;28741:419::-;28907:4;28945:2;28934:9;28930:18;28922:26;;28994:9;28988:4;28984:20;28980:1;28969:9;28965:17;28958:47;29022:131;29148:4;29022:131;:::i;:::-;29014:139;;28912:248;;;:::o;29166:419::-;29332:4;29370:2;29359:9;29355:18;29347:26;;29419:9;29413:4;29409:20;29405:1;29394:9;29390:17;29383:47;29447:131;29573:4;29447:131;:::i;:::-;29439:139;;29337:248;;;:::o;29591:419::-;29757:4;29795:2;29784:9;29780:18;29772:26;;29844:9;29838:4;29834:20;29830:1;29819:9;29815:17;29808:47;29872:131;29998:4;29872:131;:::i;:::-;29864:139;;29762:248;;;:::o;30016:419::-;30182:4;30220:2;30209:9;30205:18;30197:26;;30269:9;30263:4;30259:20;30255:1;30244:9;30240:17;30233:47;30297:131;30423:4;30297:131;:::i;:::-;30289:139;;30187:248;;;:::o;30441:419::-;30607:4;30645:2;30634:9;30630:18;30622:26;;30694:9;30688:4;30684:20;30680:1;30669:9;30665:17;30658:47;30722:131;30848:4;30722:131;:::i;:::-;30714:139;;30612:248;;;:::o;30866:419::-;31032:4;31070:2;31059:9;31055:18;31047:26;;31119:9;31113:4;31109:20;31105:1;31094:9;31090:17;31083:47;31147:131;31273:4;31147:131;:::i;:::-;31139:139;;31037:248;;;:::o;31291:419::-;31457:4;31495:2;31484:9;31480:18;31472:26;;31544:9;31538:4;31534:20;31530:1;31519:9;31515:17;31508:47;31572:131;31698:4;31572:131;:::i;:::-;31564:139;;31462:248;;;:::o;31716:419::-;31882:4;31920:2;31909:9;31905:18;31897:26;;31969:9;31963:4;31959:20;31955:1;31944:9;31940:17;31933:47;31997:131;32123:4;31997:131;:::i;:::-;31989:139;;31887:248;;;:::o;32141:419::-;32307:4;32345:2;32334:9;32330:18;32322:26;;32394:9;32388:4;32384:20;32380:1;32369:9;32365:17;32358:47;32422:131;32548:4;32422:131;:::i;:::-;32414:139;;32312:248;;;:::o;32566:419::-;32732:4;32770:2;32759:9;32755:18;32747:26;;32819:9;32813:4;32809:20;32805:1;32794:9;32790:17;32783:47;32847:131;32973:4;32847:131;:::i;:::-;32839:139;;32737:248;;;:::o;32991:419::-;33157:4;33195:2;33184:9;33180:18;33172:26;;33244:9;33238:4;33234:20;33230:1;33219:9;33215:17;33208:47;33272:131;33398:4;33272:131;:::i;:::-;33264:139;;33162:248;;;:::o;33416:419::-;33582:4;33620:2;33609:9;33605:18;33597:26;;33669:9;33663:4;33659:20;33655:1;33644:9;33640:17;33633:47;33697:131;33823:4;33697:131;:::i;:::-;33689:139;;33587:248;;;:::o;33841:419::-;34007:4;34045:2;34034:9;34030:18;34022:26;;34094:9;34088:4;34084:20;34080:1;34069:9;34065:17;34058:47;34122:131;34248:4;34122:131;:::i;:::-;34114:139;;34012:248;;;:::o;34266:419::-;34432:4;34470:2;34459:9;34455:18;34447:26;;34519:9;34513:4;34509:20;34505:1;34494:9;34490:17;34483:47;34547:131;34673:4;34547:131;:::i;:::-;34539:139;;34437:248;;;:::o;34691:419::-;34857:4;34895:2;34884:9;34880:18;34872:26;;34944:9;34938:4;34934:20;34930:1;34919:9;34915:17;34908:47;34972:131;35098:4;34972:131;:::i;:::-;34964:139;;34862:248;;;:::o;35116:419::-;35282:4;35320:2;35309:9;35305:18;35297:26;;35369:9;35363:4;35359:20;35355:1;35344:9;35340:17;35333:47;35397:131;35523:4;35397:131;:::i;:::-;35389:139;;35287:248;;;:::o;35541:419::-;35707:4;35745:2;35734:9;35730:18;35722:26;;35794:9;35788:4;35784:20;35780:1;35769:9;35765:17;35758:47;35822:131;35948:4;35822:131;:::i;:::-;35814:139;;35712:248;;;:::o;35966:419::-;36132:4;36170:2;36159:9;36155:18;36147:26;;36219:9;36213:4;36209:20;36205:1;36194:9;36190:17;36183:47;36247:131;36373:4;36247:131;:::i;:::-;36239:139;;36137:248;;;:::o;36391:419::-;36557:4;36595:2;36584:9;36580:18;36572:26;;36644:9;36638:4;36634:20;36630:1;36619:9;36615:17;36608:47;36672:131;36798:4;36672:131;:::i;:::-;36664:139;;36562:248;;;:::o;36816:419::-;36982:4;37020:2;37009:9;37005:18;36997:26;;37069:9;37063:4;37059:20;37055:1;37044:9;37040:17;37033:47;37097:131;37223:4;37097:131;:::i;:::-;37089:139;;36987:248;;;:::o;37241:419::-;37407:4;37445:2;37434:9;37430:18;37422:26;;37494:9;37488:4;37484:20;37480:1;37469:9;37465:17;37458:47;37522:131;37648:4;37522:131;:::i;:::-;37514:139;;37412:248;;;:::o;37666:419::-;37832:4;37870:2;37859:9;37855:18;37847:26;;37919:9;37913:4;37909:20;37905:1;37894:9;37890:17;37883:47;37947:131;38073:4;37947:131;:::i;:::-;37939:139;;37837:248;;;:::o;38091:419::-;38257:4;38295:2;38284:9;38280:18;38272:26;;38344:9;38338:4;38334:20;38330:1;38319:9;38315:17;38308:47;38372:131;38498:4;38372:131;:::i;:::-;38364:139;;38262:248;;;:::o;38516:419::-;38682:4;38720:2;38709:9;38705:18;38697:26;;38769:9;38763:4;38759:20;38755:1;38744:9;38740:17;38733:47;38797:131;38923:4;38797:131;:::i;:::-;38789:139;;38687:248;;;:::o;38941:419::-;39107:4;39145:2;39134:9;39130:18;39122:26;;39194:9;39188:4;39184:20;39180:1;39169:9;39165:17;39158:47;39222:131;39348:4;39222:131;:::i;:::-;39214:139;;39112:248;;;:::o;39366:419::-;39532:4;39570:2;39559:9;39555:18;39547:26;;39619:9;39613:4;39609:20;39605:1;39594:9;39590:17;39583:47;39647:131;39773:4;39647:131;:::i;:::-;39639:139;;39537:248;;;:::o;39791:419::-;39957:4;39995:2;39984:9;39980:18;39972:26;;40044:9;40038:4;40034:20;40030:1;40019:9;40015:17;40008:47;40072:131;40198:4;40072:131;:::i;:::-;40064:139;;39962:248;;;:::o;40216:419::-;40382:4;40420:2;40409:9;40405:18;40397:26;;40469:9;40463:4;40459:20;40455:1;40444:9;40440:17;40433:47;40497:131;40623:4;40497:131;:::i;:::-;40489:139;;40387:248;;;:::o;40641:419::-;40807:4;40845:2;40834:9;40830:18;40822:26;;40894:9;40888:4;40884:20;40880:1;40869:9;40865:17;40858:47;40922:131;41048:4;40922:131;:::i;:::-;40914:139;;40812:248;;;:::o;41066:419::-;41232:4;41270:2;41259:9;41255:18;41247:26;;41319:9;41313:4;41309:20;41305:1;41294:9;41290:17;41283:47;41347:131;41473:4;41347:131;:::i;:::-;41339:139;;41237:248;;;:::o;41491:222::-;41584:4;41622:2;41611:9;41607:18;41599:26;;41635:71;41703:1;41692:9;41688:17;41679:6;41635:71;:::i;:::-;41589:124;;;;:::o;41719:129::-;41753:6;41780:20;;:::i;:::-;41770:30;;41809:33;41837:4;41829:6;41809:33;:::i;:::-;41760:88;;;:::o;41854:75::-;41887:6;41920:2;41914:9;41904:19;;41894:35;:::o;41935:307::-;41996:4;42086:18;42078:6;42075:30;42072:2;;;42108:18;;:::i;:::-;42072:2;42146:29;42168:6;42146:29;:::i;:::-;42138:37;;42230:4;42224;42220:15;42212:23;;42001:241;;;:::o;42248:308::-;42310:4;42400:18;42392:6;42389:30;42386:2;;;42422:18;;:::i;:::-;42386:2;42460:29;42482:6;42460:29;:::i;:::-;42452:37;;42544:4;42538;42534:15;42526:23;;42315:241;;;:::o;42562:98::-;42613:6;42647:5;42641:12;42631:22;;42620:40;;;:::o;42666:99::-;42718:6;42752:5;42746:12;42736:22;;42725:40;;;:::o;42771:168::-;42854:11;42888:6;42883:3;42876:19;42928:4;42923:3;42919:14;42904:29;;42866:73;;;;:::o;42945:169::-;43029:11;43063:6;43058:3;43051:19;43103:4;43098:3;43094:14;43079:29;;43041:73;;;;:::o;43120:148::-;43222:11;43259:3;43244:18;;43234:34;;;;:::o;43274:305::-;43314:3;43333:20;43351:1;43333:20;:::i;:::-;43328:25;;43367:20;43385:1;43367:20;:::i;:::-;43362:25;;43521:1;43453:66;43449:74;43446:1;43443:81;43440:2;;;43527:18;;:::i;:::-;43440:2;43571:1;43568;43564:9;43557:16;;43318:261;;;;:::o;43585:237::-;43623:3;43642:18;43658:1;43642:18;:::i;:::-;43637:23;;43674:18;43690:1;43674:18;:::i;:::-;43669:23;;43764:1;43758:4;43754:12;43751:1;43748:19;43745:2;;;43770:18;;:::i;:::-;43745:2;43814:1;43811;43807:9;43800:16;;43627:195;;;;:::o;43828:185::-;43868:1;43885:20;43903:1;43885:20;:::i;:::-;43880:25;;43919:20;43937:1;43919:20;:::i;:::-;43914:25;;43958:1;43948:2;;43963:18;;:::i;:::-;43948:2;44005:1;44002;43998:9;43993:14;;43870:143;;;;:::o;44019:348::-;44059:7;44082:20;44100:1;44082:20;:::i;:::-;44077:25;;44116:20;44134:1;44116:20;:::i;:::-;44111:25;;44304:1;44236:66;44232:74;44229:1;44226:81;44221:1;44214:9;44207:17;44203:105;44200:2;;;44311:18;;:::i;:::-;44200:2;44359:1;44356;44352:9;44341:20;;44067:300;;;;:::o;44373:191::-;44413:4;44433:20;44451:1;44433:20;:::i;:::-;44428:25;;44467:20;44485:1;44467:20;:::i;:::-;44462:25;;44506:1;44503;44500:8;44497:2;;;44511:18;;:::i;:::-;44497:2;44556:1;44553;44549:9;44541:17;;44418:146;;;;:::o;44570:96::-;44607:7;44636:24;44654:5;44636:24;:::i;:::-;44625:35;;44615:51;;;:::o;44672:90::-;44706:7;44749:5;44742:13;44735:21;44724:32;;44714:48;;;:::o;44768:149::-;44804:7;44844:66;44837:5;44833:78;44822:89;;44812:105;;;:::o;44923:126::-;44960:7;45000:42;44993:5;44989:54;44978:65;;44968:81;;;:::o;45055:77::-;45092:7;45121:5;45110:16;;45100:32;;;:::o;45138:86::-;45173:7;45213:4;45206:5;45202:16;45191:27;;45181:43;;;:::o;45230:154::-;45314:6;45309:3;45304;45291:30;45376:1;45367:6;45362:3;45358:16;45351:27;45281:103;;;:::o;45390:307::-;45458:1;45468:113;45482:6;45479:1;45476:13;45468:113;;;45567:1;45562:3;45558:11;45552:18;45548:1;45543:3;45539:11;45532:39;45504:2;45501:1;45497:10;45492:15;;45468:113;;;45599:6;45596:1;45593:13;45590:2;;;45679:1;45670:6;45665:3;45661:16;45654:27;45590:2;45439:258;;;;:::o;45703:320::-;45747:6;45784:1;45778:4;45774:12;45764:22;;45831:1;45825:4;45821:12;45852:18;45842:2;;45908:4;45900:6;45896:17;45886:27;;45842:2;45970;45962:6;45959:14;45939:18;45936:38;45933:2;;;45989:18;;:::i;:::-;45933:2;45754:269;;;;:::o;46029:281::-;46112:27;46134:4;46112:27;:::i;:::-;46104:6;46100:40;46242:6;46230:10;46227:22;46206:18;46194:10;46191:34;46188:62;46185:2;;;46253:18;;:::i;:::-;46185:2;46293:10;46289:2;46282:22;46072:238;;;:::o;46316:233::-;46355:3;46378:24;46396:5;46378:24;:::i;:::-;46369:33;;46424:66;46417:5;46414:77;46411:2;;;46494:18;;:::i;:::-;46411:2;46541:1;46534:5;46530:13;46523:20;;46359:190;;;:::o;46555:180::-;46603:77;46600:1;46593:88;46700:4;46697:1;46690:15;46724:4;46721:1;46714:15;46741:180;46789:77;46786:1;46779:88;46886:4;46883:1;46876:15;46910:4;46907:1;46900:15;46927:180;46975:77;46972:1;46965:88;47072:4;47069:1;47062:15;47096:4;47093:1;47086:15;47113:180;47161:77;47158:1;47151:88;47258:4;47255:1;47248:15;47282:4;47279:1;47272:15;47299:180;47347:77;47344:1;47337:88;47444:4;47441:1;47434:15;47468:4;47465:1;47458:15;47485:117;47594:1;47591;47584:12;47608:117;47717:1;47714;47707:12;47731:117;47840:1;47837;47830:12;47854:117;47963:1;47960;47953:12;47977:102;48018:6;48069:2;48065:7;48060:2;48053:5;48049:14;48045:28;48035:38;;48025:54;;;:::o;48085:176::-;48225:28;48221:1;48213:6;48209:14;48202:52;48191:70;:::o;48267:220::-;48407:34;48403:1;48395:6;48391:14;48384:58;48476:3;48471:2;48463:6;48459:15;48452:28;48373:114;:::o;48493:237::-;48633:34;48629:1;48621:6;48617:14;48610:58;48702:20;48697:2;48689:6;48685:15;48678:45;48599:131;:::o;48736:225::-;48876:34;48872:1;48864:6;48860:14;48853:58;48945:8;48940:2;48932:6;48928:15;48921:33;48842:119;:::o;48967:220::-;49107:34;49103:1;49095:6;49091:14;49084:58;49176:3;49171:2;49163:6;49159:15;49152:28;49073:114;:::o;49193:178::-;49333:30;49329:1;49321:6;49317:14;49310:54;49299:72;:::o;49377:232::-;49517:34;49513:1;49505:6;49501:14;49494:58;49586:15;49581:2;49573:6;49569:15;49562:40;49483:126;:::o;49615:223::-;49755:34;49751:1;49743:6;49739:14;49732:58;49824:6;49819:2;49811:6;49807:15;49800:31;49721:117;:::o;49844:182::-;49984:34;49980:1;49972:6;49968:14;49961:58;49950:76;:::o;50032:223::-;50172:34;50168:1;50160:6;50156:14;50149:58;50241:6;50236:2;50228:6;50224:15;50217:31;50138:117;:::o;50261:175::-;50401:27;50397:1;50389:6;50385:14;50378:51;50367:69;:::o;50442:174::-;50582:26;50578:1;50570:6;50566:14;50559:50;50548:68;:::o;50622:231::-;50762:34;50758:1;50750:6;50746:14;50739:58;50831:14;50826:2;50818:6;50814:15;50807:39;50728:125;:::o;50859:231::-;50999:34;50995:1;50987:6;50983:14;50976:58;51068:14;51063:2;51055:6;51051:15;51044:39;50965:125;:::o;51096:161::-;51236:9;51232:1;51224:6;51220:14;51213:33;51202:55;:::o;51267:242::-;51411:34;51407:1;51399:6;51395:14;51388:58;51484:13;51479:2;51471:6;51467:15;51460:38;51373:136;:::o;51519:255::-;51663:34;51659:1;51651:6;51647:14;51640:58;51736:26;51731:2;51723:6;51719:15;51712:51;51625:149;:::o;51784:241::-;51928:34;51924:1;51916:6;51912:14;51905:58;52001:12;51996:2;51988:6;51984:15;51977:37;51890:135;:::o;52035:240::-;52179:34;52175:1;52167:6;52163:14;52156:58;52252:11;52247:2;52239:6;52235:15;52228:36;52141:134;:::o;52285:190::-;52429:34;52425:1;52417:6;52413:14;52406:58;52391:84;:::o;52485:180::-;52629:24;52625:1;52617:6;52613:14;52606:48;52591:74;:::o;52675:180::-;52819:24;52815:1;52807:6;52803:14;52796:48;52781:74;:::o;52865:243::-;53009:34;53005:1;52997:6;52993:14;52986:58;53082:14;53077:2;53069:6;53065:15;53058:39;52971:137;:::o;53118:163::-;53262:7;53258:1;53250:6;53246:14;53239:31;53224:57;:::o;53291:233::-;53435:34;53431:1;53423:6;53419:14;53412:58;53508:4;53503:2;53495:6;53491:15;53484:29;53397:127;:::o;53534:190::-;53678:34;53674:1;53666:6;53662:14;53655:58;53640:84;:::o;53734:240::-;53878:34;53874:1;53866:6;53862:14;53855:58;53951:11;53946:2;53938:6;53934:15;53927:36;53840:134;:::o;53984:232::-;54128:34;54124:1;54116:6;54112:14;54105:58;54201:3;54196:2;54188:6;54184:15;54177:28;54090:126;:::o;54226:248::-;54370:34;54366:1;54358:6;54354:14;54347:58;54443:19;54438:2;54430:6;54426:15;54419:44;54332:142;:::o;54484:307::-;54628:34;54624:1;54616:6;54612:14;54605:58;54701:34;54696:2;54688:6;54684:15;54677:59;54774:5;54769:2;54761:6;54757:15;54750:30;54590:201;:::o;54801:179::-;54945:23;54941:1;54933:6;54929:14;54922:47;54907:73;:::o;54990:181::-;55134:25;55130:1;55122:6;55118:14;55111:49;55096:75;:::o;55181:189::-;55325:33;55321:1;55313:6;55309:14;55302:57;55287:83;:::o;55380:170::-;55524:14;55520:1;55512:6;55508:14;55501:38;55486:64;:::o;55560:233::-;55704:34;55700:1;55692:6;55688:14;55681:58;55777:4;55772:2;55764:6;55760:15;55753:29;55666:127;:::o;55803:237::-;55947:34;55943:1;55935:6;55931:14;55924:58;56020:8;56015:2;56007:6;56003:15;55996:33;55909:131;:::o;56050:159::-;56194:3;56190:1;56182:6;56178:14;56171:27;56156:53;:::o;56219:182::-;56363:26;56359:1;56351:6;56347:14;56340:50;56325:76;:::o;56411:130::-;56488:24;56506:5;56488:24;:::i;:::-;56481:5;56478:35;56468:2;;56527:1;56524;56517:12;56468:2;56454:87;:::o;56551:124::-;56625:21;56640:5;56625:21;:::i;:::-;56618:5;56615:32;56605:2;;56661:1;56658;56651:12;56605:2;56591:84;:::o;56685:128::-;56761:23;56778:5;56761:23;:::i;:::-;56754:5;56751:34;56741:2;;56799:1;56796;56789:12;56741:2;56727:86;:::o;56823:130::-;56900:24;56918:5;56900:24;:::i;:::-;56893:5;56890:35;56880:2;;56939:1;56936;56929:12;56880:2;56866:87;:::o

Swarm Source

ipfs://f2f1106ae48c1762a58266144b53c73f3086c1952fee66d484af64541c97d0ec
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.