ERC-721
Overview
Max Total Supply
600 SMITHSLAPPERS
Holders
41
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 SMITHSLAPPERSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
smithslappers
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-28 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.10; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 public immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex - 1; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/smithslappers.sol pragma solidity >=0.7.0 <0.9.0; contract smithslappers is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 0.02 ether; uint256 public maxSupply = 5555; uint256 public maxsize = 20 ; // max mint per tx bool public paused = false; constructor() ERC721A("smith slappers", "SMITHSLAPPERS", maxsize) { setBaseURI("/"); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 tokens) public payable { require(!paused, "Contract is paused"); uint256 supply = totalSupply(); require(tokens > 0, "Need to mint at least 1 NFT"); require(tokens <= maxsize, "Max mint amount per tx exceeded"); require(supply + tokens <= maxSupply, "WE SOLD OUT!"); if (supply < 555) { require(msg.value >= 0 * tokens, "It's Free Mint"); } else { require(msg.value >= cost * tokens, "insufficient funds"); } _safeMint(_msgSender(), tokens); } /// @dev use it for giveaway and mint for yourself function gift(uint256 _mintAmount, address destination) public onlyOwner { require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); _safeMint(destination, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxsupply(uint256 _newsupply) public onlyOwner { maxSupply = _newsupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a0604052600160005560006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005b9291906200039c565b5066470de4df820000600b556115b3600c556014600d556000600e60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040518060400160405280600e81526020017f736d69746820736c6170706572730000000000000000000000000000000000008152506040518060400160405280600d81526020017f534d495448534c41505045525300000000000000000000000000000000000000815250600d546000811162000150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014790620004d3565b60405180910390fd5b8260019080519060200190620001689291906200039c565b508160029080519060200190620001819291906200039c565b508060808181525050505050620001ad620001a1620001f960201b60201c565b6200020160201b60201c565b620001f36040518060400160405280600181526020017f2f00000000000000000000000000000000000000000000000000000000000000815250620002c760201b60201c565b620005cc565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002d7620001f960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002fd6200037260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000356576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034d9062000545565b60405180910390fd5b80600990805190602001906200036e9291906200039c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003aa9062000596565b90600052602060002090601f016020900481019282620003ce57600085556200041a565b82601f10620003e957805160ff19168380011785556200041a565b828001600101855582156200041a579182015b8281111562000419578251825591602001919060010190620003fc565b5b5090506200042991906200042d565b5090565b5b80821115620004485760008160009055506001016200042e565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620004bb6027836200044c565b9150620004c8826200045d565b604082019050919050565b60006020820190508181036000830152620004ee81620004ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200052d6020836200044c565b91506200053a82620004f5565b602082019050919050565b6000602082019050818103600083015262000560816200051e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005af57607f821691505b60208210811415620005c657620005c562000567565b5b50919050565b608051614cf2620005fd60003960008181610d2d0152818161250c015281816125350152612be70152614cf26000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610781578063d7224ba0146107ac578063da3ef23f146107d7578063e985e9c514610800578063f2fde38b1461083d5761020f565b8063a22cb465146106c7578063b88d4fde146106f0578063c668286214610719578063c87b56dd146107445761020f565b8063715018a6116100e7578063715018a61461061557806383a076be1461062c5780638da5cb5b1461065557806395d89b4114610680578063a0712d68146106ab5761020f565b80636352211e146105455780636c0360eb146105825780636c6e927e146105ad57806370a08231146105d85761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461044e57806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780635c975abb1461051a5761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613171565b610866565b60405161024891906131b9565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613200565b6109b0565b005b34801561028657600080fd5b5061028f610a49565b60405161029c91906132c6565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061331e565b610adb565b6040516102d9919061338c565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133d3565b610b60565b005b34801561031757600080fd5b50610320610c79565b60405161032d9190613422565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061331e565b610c7f565b005b34801561036b57600080fd5b50610374610d05565b6040516103819190613422565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061343d565b610d1b565b005b3480156103bf57600080fd5b506103c8610d2b565b6040516103d59190613422565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133d3565b610d4f565b6040516104129190613422565b60405180910390f35b610423610f4d565b005b34801561043157600080fd5b5061044c6004803603810190610447919061343d565b611042565b005b34801561045a57600080fd5b5061047560048036038101906104709190613490565b611062565b604051610482919061357b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad919061331e565b611110565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061331e565b611196565b6040516104e89190613422565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906136d2565b6111e9565b005b34801561052657600080fd5b5061052f61127f565b60405161053c91906131b9565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061331e565b611292565b604051610579919061338c565b60405180910390f35b34801561058e57600080fd5b506105976112a8565b6040516105a491906132c6565b60405180910390f35b3480156105b957600080fd5b506105c2611336565b6040516105cf9190613422565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613490565b61133c565b60405161060c9190613422565b60405180910390f35b34801561062157600080fd5b5061062a611425565b005b34801561063857600080fd5b50610653600480360381019061064e919061371b565b6114ad565b005b34801561066157600080fd5b5061066a6115d7565b604051610677919061338c565b60405180910390f35b34801561068c57600080fd5b50610695611601565b6040516106a291906132c6565b60405180910390f35b6106c560048036038101906106c0919061331e565b611693565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061375b565b61188b565b005b3480156106fc57600080fd5b506107176004803603810190610712919061383c565b611a0c565b005b34801561072557600080fd5b5061072e611a68565b60405161073b91906132c6565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061331e565b611af6565b60405161077891906132c6565b60405180910390f35b34801561078d57600080fd5b50610796611ba0565b6040516107a39190613422565b60405180910390f35b3480156107b857600080fd5b506107c1611ba6565b6040516107ce9190613422565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906136d2565b611bac565b005b34801561080c57600080fd5b50610827600480360381019061082291906138bf565b611c42565b60405161083491906131b9565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190613490565b611cd6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a882611dce565b5b9050919050565b6109b8611e38565b73ffffffffffffffffffffffffffffffffffffffff166109d66115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a239061394b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a589061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061399a565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e40565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611292565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613ad0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e38565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e38565b611c42565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613b62565b60405180910390fd5b610c74838383611e4d565b505050565b600b5481565b610c87611e38565b73ffffffffffffffffffffffffffffffffffffffff16610ca56115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf29061394b565b60405180910390fd5b80600c8190555050565b60006001600054610d169190613bb1565b905090565b610d26838383611eff565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610d5a8361133c565b8210610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613c57565b60405180910390fd5b6000610da5610d05565b905060008060005b83811015610f0b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef75786841415610ee8578195505050505050610f47565b8380610ef390613c77565b9450505b508080610f0390613c77565b915050610dad565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d32565b60405180910390fd5b92915050565b610f55611e38565b73ffffffffffffffffffffffffffffffffffffffff16610f736115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061394b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fef90613d83565b60006040518083038185875af1925050503d806000811461102c576040519150601f19603f3d011682016040523d82523d6000602084013e611031565b606091505b505090508061103f57600080fd5b50565b61105d83838360405180602001604052806000815250611a0c565b505050565b6060600061106f8361133c565b905060008167ffffffffffffffff81111561108d5761108c6135a7565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b82811015611105576110d38582610d4f565b8282815181106110e6576110e5613d98565b5b60200260200101818152505080806110fd90613c77565b9150506110c1565b508092505050919050565b611118611e38565b73ffffffffffffffffffffffffffffffffffffffff166111366115d7565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061394b565b60405180910390fd5b80600b8190555050565b60006111a0610d05565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613e39565b60405180910390fd5b819050919050565b6111f1611e38565b73ffffffffffffffffffffffffffffffffffffffff1661120f6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c9061394b565b60405180910390fd5b806009908051906020019061127b929190613028565b5050565b600e60009054906101000a900460ff1681565b600061129d826124b8565b600001519050919050565b600980546112b59061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e19061399a565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613ecb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61142d611e38565b73ffffffffffffffffffffffffffffffffffffffff1661144b6115d7565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061394b565b60405180910390fd5b6114ab60006126bb565b565b6114b5611e38565b73ffffffffffffffffffffffffffffffffffffffff166114d36115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061394b565b60405180910390fd5b6000821161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613f37565b60405180910390fd5b6000611576610d05565b9050600c5483826115879190613f57565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613ff9565b60405180910390fd5b6115d28284612781565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116109061399a565b80601f016020809104026020016040519081016040528092919081815260200182805461163c9061399a565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614065565b60405180910390fd5b60006116ed610d05565b905060008211611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906140d1565b60405180910390fd5b600d54821115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e9061413d565b60405180910390fd5b600c5482826117869190613f57565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141a9565b60405180910390fd5b61022b811015611825578160006117de91906141c9565b341015611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061426f565b60405180910390fd5b611876565b81600b5461183391906141c9565b341015611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906142db565b60405180910390fd5b5b611887611881611e38565b83612781565b5050565b611893611e38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890614347565b60405180910390fd5b806006600061190e611e38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb611e38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0091906131b9565b60405180910390a35050565b611a17848484611eff565b611a238484848461279f565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906143d9565b60405180910390fd5b50505050565b600a8054611a759061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061399a565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b505050505081565b6060611b0182611e40565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061446b565b60405180910390fd5b6000611b4a612927565b90506000815111611b6a5760405180602001604052806000815250611b98565b80611b74846129b9565b600a604051602001611b889392919061455b565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bb4611e38565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061394b565b60405180910390fd5b80600a9080519060200190611c3e929190613028565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611e38565b73ffffffffffffffffffffffffffffffffffffffff16611cfc6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145fe565b60405180910390fd5b611dcb816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f0a826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f31611e38565b73ffffffffffffffffffffffffffffffffffffffff161480611f8d5750611f56611e38565b73ffffffffffffffffffffffffffffffffffffffff16611f7584610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611fa88260000151611fa3611e38565b611c42565b5b905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614690565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490614722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c4906147b4565b60405180910390fd5b6120da8585856001612b1a565b6120ea6000848460000151611e4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661215891906147f0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc9190614824565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123029190613f57565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124485761237881611e40565b15612447576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b08686866001612b20565b505050505050565b6124c06130ae565b6124c982611e40565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff906148dc565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061256c5760017f00000000000000000000000000000000000000000000000000000000000000008461255f9190613bb1565b6125699190613f57565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b508080612672906148fc565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad90614998565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b828260405180602001604052806000815250612b26565b5050565b60006127c08473ffffffffffffffffffffffffffffffffffffffff16613005565b1561291a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e9611e38565b8786866040518563ffffffff1660e01b815260040161280b9493929190614a0d565b6020604051808303816000875af192505050801561284757506040513d601f19601f820116820180604052508101906128449190614a6e565b60015b6128ca573d8060008114612877576040519150601f19603f3d011682016040523d82523d6000602084013e61287c565b606091505b506000815114156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b9906143d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061291f565b600190505b949350505050565b6060600980546129369061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546129629061399a565b80156129af5780601f10612984576101008083540402835291602001916129af565b820191906000526020600020905b81548152906001019060200180831161299257829003601f168201915b5050505050905090565b60606000821415612a01576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b15565b600082905060005b60008214612a33578080612a1c90613c77565b915050600a82612a2c9190614aca565b9150612a09565b60008167ffffffffffffffff811115612a4f57612a4e6135a7565b5b6040519080825280601f01601f191660200182016040528015612a815781602001600182028036833780820191505090505b5090505b60008514612b0e57600182612a9a9190613bb1565b9150600a85612aa99190614afb565b6030612ab59190613f57565b60f81b818381518110612acb57612aca613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b079190614aca565b9450612a85565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614b9e565b60405180910390fd5b612ba581611e40565b15612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c0a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90614c9c565b60405180910390fd5b612c556000858386612b1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d529190614824565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d799190614824565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fe857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f88600088848861279f565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe906143d9565b60405180910390fd5b8180612fd290613c77565b9250508080612fe090613c77565b915050612f17565b5080600081905550612ffd6000878588612b20565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130349061399a565b90600052602060002090601f016020900481019282613056576000855561309d565b82601f1061306f57805160ff191683800117855561309d565b8280016001018555821561309d579182015b8281111561309c578251825591602001919060010190613081565b5b5090506130aa91906130e8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131015760008160009055506001016130e9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314e81613119565b811461315957600080fd5b50565b60008135905061316b81613145565b92915050565b6000602082840312156131875761318661310f565b5b60006131958482850161315c565b91505092915050565b60008115159050919050565b6131b38161319e565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd8161319e565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000602082840312156132165761321561310f565b5b6000613224848285016131eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561326757808201518184015260208101905061324c565b83811115613276576000848401525b50505050565b6000601f19601f8301169050919050565b60006132988261322d565b6132a28185613238565b93506132b2818560208601613249565b6132bb8161327c565b840191505092915050565b600060208201905081810360008301526132e0818461328d565b905092915050565b6000819050919050565b6132fb816132e8565b811461330657600080fd5b50565b600081359050613318816132f2565b92915050565b6000602082840312156133345761333361310f565b5b600061334284828501613309565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133768261334b565b9050919050565b6133868161336b565b82525050565b60006020820190506133a1600083018461337d565b92915050565b6133b08161336b565b81146133bb57600080fd5b50565b6000813590506133cd816133a7565b92915050565b600080604083850312156133ea576133e961310f565b5b60006133f8858286016133be565b925050602061340985828601613309565b9150509250929050565b61341c816132e8565b82525050565b60006020820190506134376000830184613413565b92915050565b6000806000606084860312156134565761345561310f565b5b6000613464868287016133be565b9350506020613475868287016133be565b925050604061348686828701613309565b9150509250925092565b6000602082840312156134a6576134a561310f565b5b60006134b4848285016133be565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134f2816132e8565b82525050565b600061350483836134e9565b60208301905092915050565b6000602082019050919050565b6000613528826134bd565b61353281856134c8565b935061353d836134d9565b8060005b8381101561356e57815161355588826134f8565b975061356083613510565b925050600181019050613541565b5085935050505092915050565b60006020820190508181036000830152613595818461351d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135df8261327c565b810181811067ffffffffffffffff821117156135fe576135fd6135a7565b5b80604052505050565b6000613611613105565b905061361d82826135d6565b919050565b600067ffffffffffffffff82111561363d5761363c6135a7565b5b6136468261327c565b9050602081019050919050565b82818337600083830152505050565b600061367561367084613622565b613607565b905082815260208101848484011115613691576136906135a2565b5b61369c848285613653565b509392505050565b600082601f8301126136b9576136b861359d565b5b81356136c9848260208601613662565b91505092915050565b6000602082840312156136e8576136e761310f565b5b600082013567ffffffffffffffff81111561370657613705613114565b5b613712848285016136a4565b91505092915050565b600080604083850312156137325761373161310f565b5b600061374085828601613309565b9250506020613751858286016133be565b9150509250929050565b600080604083850312156137725761377161310f565b5b6000613780858286016133be565b9250506020613791858286016131eb565b9150509250929050565b600067ffffffffffffffff8211156137b6576137b56135a7565b5b6137bf8261327c565b9050602081019050919050565b60006137df6137da8461379b565b613607565b9050828152602081018484840111156137fb576137fa6135a2565b5b613806848285613653565b509392505050565b600082601f8301126138235761382261359d565b5b81356138338482602086016137cc565b91505092915050565b600080600080608085870312156138565761385561310f565b5b6000613864878288016133be565b9450506020613875878288016133be565b935050604061388687828801613309565b925050606085013567ffffffffffffffff8111156138a7576138a6613114565b5b6138b38782880161380e565b91505092959194509250565b600080604083850312156138d6576138d561310f565b5b60006138e4858286016133be565b92505060206138f5858286016133be565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083613238565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139b257607f821691505b602082108114156139c6576139c561396b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a28602d83613238565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aba602283613238565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b4c603983613238565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826132e8565b9150613bc7836132e8565b925082821015613bda57613bd9613b82565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c41602283613238565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b6000613c82826132e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb557613cb4613b82565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d1c602e83613238565b9150613d2782613cc0565b604082019050919050565b60006020820190508181036000830152613d4b81613d0f565b9050919050565b600081905092915050565b50565b6000613d6d600083613d52565b9150613d7882613d5d565b600082019050919050565b6000613d8e82613d60565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e23602383613238565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb5602b83613238565b9150613ec082613e59565b604082019050919050565b60006020820190508181036000830152613ee481613ea8565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f21601b83613238565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b6000613f62826132e8565b9150613f6d836132e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa257613fa1613b82565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613fe3601683613238565b9150613fee82613fad565b602082019050919050565b6000602082019050818103600083015261401281613fd6565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061404f601283613238565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006140bb601b83613238565b91506140c682614085565b602082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000614127601f83613238565b9150614132826140f1565b602082019050919050565b600060208201905081810360008301526141568161411a565b9050919050565b7f574520534f4c44204f5554210000000000000000000000000000000000000000600082015250565b6000614193600c83613238565b915061419e8261415d565b602082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b60006141d4826132e8565b91506141df836132e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421857614217613b82565b5b828202905092915050565b7f497427732046726565204d696e74000000000000000000000000000000000000600082015250565b6000614259600e83613238565b915061426482614223565b602082019050919050565b600060208201905081810360008301526142888161424c565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006142c5601283613238565b91506142d08261428f565b602082019050919050565b600060208201905081810360008301526142f4816142b8565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614331601a83613238565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143c3603383613238565b91506143ce82614367565b604082019050919050565b600060208201905081810360008301526143f2816143b6565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614455603083613238565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b600081905092915050565b60006144a18261322d565b6144ab818561448b565b93506144bb818560208601613249565b80840191505092915050565b60008190508160005260206000209050919050565b600081546144e98161399a565b6144f3818661448b565b9450600182166000811461450e576001811461451f57614552565b60ff19831686528186019350614552565b614528856144c7565b60005b8381101561454a5781548189015260018201915060208101905061452b565b838801955050505b50505092915050565b60006145678286614496565b91506145738285614496565b915061457f82846144dc565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e8602683613238565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061467a603283613238565b91506146858261461e565b604082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061470c602683613238565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061479e602583613238565b91506147a982614742565b604082019050919050565b600060208201905081810360008301526147cd81614791565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006147fb826147d4565b9150614806836147d4565b92508282101561481957614818613b82565b5b828203905092915050565b600061482f826147d4565b915061483a836147d4565b9250826fffffffffffffffffffffffffffffffff0382111561485f5761485e613b82565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006148c6602a83613238565b91506148d18261486a565b604082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b6000614907826132e8565b9150600082141561491b5761491a613b82565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614982602f83613238565b915061498d82614926565b604082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149df826149b8565b6149e981856149c3565b93506149f9818560208601613249565b614a028161327c565b840191505092915050565b6000608082019050614a22600083018761337d565b614a2f602083018661337d565b614a3c6040830185613413565b8181036060830152614a4e81846149d4565b905095945050505050565b600081519050614a6881613145565b92915050565b600060208284031215614a8457614a8361310f565b5b6000614a9284828501614a59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad5826132e8565b9150614ae0836132e8565b925082614af057614aef614a9b565b5b828204905092915050565b6000614b06826132e8565b9150614b11836132e8565b925082614b2157614b20614a9b565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b88602183613238565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614bf4601d83613238565b9150614bff82614bbe565b602082019050919050565b60006020820190508181036000830152614c2381614be7565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c86602283613238565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b905091905056fea264697066735822122066dc318325e1087e65ddb1e59d1afa7df3cbfd7b997eb574f53857a08c531d5d64736f6c634300080a0033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610781578063d7224ba0146107ac578063da3ef23f146107d7578063e985e9c514610800578063f2fde38b1461083d5761020f565b8063a22cb465146106c7578063b88d4fde146106f0578063c668286214610719578063c87b56dd146107445761020f565b8063715018a6116100e7578063715018a61461061557806383a076be1461062c5780638da5cb5b1461065557806395d89b4114610680578063a0712d68146106ab5761020f565b80636352211e146105455780636c0360eb146105825780636c6e927e146105ad57806370a08231146105d85761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461044e57806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780635c975abb1461051a5761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613171565b610866565b60405161024891906131b9565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613200565b6109b0565b005b34801561028657600080fd5b5061028f610a49565b60405161029c91906132c6565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061331e565b610adb565b6040516102d9919061338c565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133d3565b610b60565b005b34801561031757600080fd5b50610320610c79565b60405161032d9190613422565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061331e565b610c7f565b005b34801561036b57600080fd5b50610374610d05565b6040516103819190613422565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061343d565b610d1b565b005b3480156103bf57600080fd5b506103c8610d2b565b6040516103d59190613422565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133d3565b610d4f565b6040516104129190613422565b60405180910390f35b610423610f4d565b005b34801561043157600080fd5b5061044c6004803603810190610447919061343d565b611042565b005b34801561045a57600080fd5b5061047560048036038101906104709190613490565b611062565b604051610482919061357b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad919061331e565b611110565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061331e565b611196565b6040516104e89190613422565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906136d2565b6111e9565b005b34801561052657600080fd5b5061052f61127f565b60405161053c91906131b9565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061331e565b611292565b604051610579919061338c565b60405180910390f35b34801561058e57600080fd5b506105976112a8565b6040516105a491906132c6565b60405180910390f35b3480156105b957600080fd5b506105c2611336565b6040516105cf9190613422565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613490565b61133c565b60405161060c9190613422565b60405180910390f35b34801561062157600080fd5b5061062a611425565b005b34801561063857600080fd5b50610653600480360381019061064e919061371b565b6114ad565b005b34801561066157600080fd5b5061066a6115d7565b604051610677919061338c565b60405180910390f35b34801561068c57600080fd5b50610695611601565b6040516106a291906132c6565b60405180910390f35b6106c560048036038101906106c0919061331e565b611693565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061375b565b61188b565b005b3480156106fc57600080fd5b506107176004803603810190610712919061383c565b611a0c565b005b34801561072557600080fd5b5061072e611a68565b60405161073b91906132c6565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061331e565b611af6565b60405161077891906132c6565b60405180910390f35b34801561078d57600080fd5b50610796611ba0565b6040516107a39190613422565b60405180910390f35b3480156107b857600080fd5b506107c1611ba6565b6040516107ce9190613422565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906136d2565b611bac565b005b34801561080c57600080fd5b50610827600480360381019061082291906138bf565b611c42565b60405161083491906131b9565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190613490565b611cd6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a882611dce565b5b9050919050565b6109b8611e38565b73ffffffffffffffffffffffffffffffffffffffff166109d66115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a239061394b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a589061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061399a565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e40565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611292565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613ad0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e38565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e38565b611c42565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613b62565b60405180910390fd5b610c74838383611e4d565b505050565b600b5481565b610c87611e38565b73ffffffffffffffffffffffffffffffffffffffff16610ca56115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf29061394b565b60405180910390fd5b80600c8190555050565b60006001600054610d169190613bb1565b905090565b610d26838383611eff565b505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000610d5a8361133c565b8210610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613c57565b60405180910390fd5b6000610da5610d05565b905060008060005b83811015610f0b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef75786841415610ee8578195505050505050610f47565b8380610ef390613c77565b9450505b508080610f0390613c77565b915050610dad565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d32565b60405180910390fd5b92915050565b610f55611e38565b73ffffffffffffffffffffffffffffffffffffffff16610f736115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061394b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fef90613d83565b60006040518083038185875af1925050503d806000811461102c576040519150601f19603f3d011682016040523d82523d6000602084013e611031565b606091505b505090508061103f57600080fd5b50565b61105d83838360405180602001604052806000815250611a0c565b505050565b6060600061106f8361133c565b905060008167ffffffffffffffff81111561108d5761108c6135a7565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b82811015611105576110d38582610d4f565b8282815181106110e6576110e5613d98565b5b60200260200101818152505080806110fd90613c77565b9150506110c1565b508092505050919050565b611118611e38565b73ffffffffffffffffffffffffffffffffffffffff166111366115d7565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061394b565b60405180910390fd5b80600b8190555050565b60006111a0610d05565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613e39565b60405180910390fd5b819050919050565b6111f1611e38565b73ffffffffffffffffffffffffffffffffffffffff1661120f6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c9061394b565b60405180910390fd5b806009908051906020019061127b929190613028565b5050565b600e60009054906101000a900460ff1681565b600061129d826124b8565b600001519050919050565b600980546112b59061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e19061399a565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613ecb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61142d611e38565b73ffffffffffffffffffffffffffffffffffffffff1661144b6115d7565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061394b565b60405180910390fd5b6114ab60006126bb565b565b6114b5611e38565b73ffffffffffffffffffffffffffffffffffffffff166114d36115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061394b565b60405180910390fd5b6000821161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613f37565b60405180910390fd5b6000611576610d05565b9050600c5483826115879190613f57565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613ff9565b60405180910390fd5b6115d28284612781565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116109061399a565b80601f016020809104026020016040519081016040528092919081815260200182805461163c9061399a565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614065565b60405180910390fd5b60006116ed610d05565b905060008211611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906140d1565b60405180910390fd5b600d54821115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e9061413d565b60405180910390fd5b600c5482826117869190613f57565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141a9565b60405180910390fd5b61022b811015611825578160006117de91906141c9565b341015611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061426f565b60405180910390fd5b611876565b81600b5461183391906141c9565b341015611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c906142db565b60405180910390fd5b5b611887611881611e38565b83612781565b5050565b611893611e38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890614347565b60405180910390fd5b806006600061190e611e38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb611e38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0091906131b9565b60405180910390a35050565b611a17848484611eff565b611a238484848461279f565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906143d9565b60405180910390fd5b50505050565b600a8054611a759061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061399a565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b505050505081565b6060611b0182611e40565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061446b565b60405180910390fd5b6000611b4a612927565b90506000815111611b6a5760405180602001604052806000815250611b98565b80611b74846129b9565b600a604051602001611b889392919061455b565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bb4611e38565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061394b565b60405180910390fd5b80600a9080519060200190611c3e929190613028565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611e38565b73ffffffffffffffffffffffffffffffffffffffff16611cfc6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145fe565b60405180910390fd5b611dcb816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f0a826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f31611e38565b73ffffffffffffffffffffffffffffffffffffffff161480611f8d5750611f56611e38565b73ffffffffffffffffffffffffffffffffffffffff16611f7584610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611fa88260000151611fa3611e38565b611c42565b5b905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290614690565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490614722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c4906147b4565b60405180910390fd5b6120da8585856001612b1a565b6120ea6000848460000151611e4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661215891906147f0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc9190614824565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123029190613f57565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124485761237881611e40565b15612447576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b08686866001612b20565b505050505050565b6124c06130ae565b6124c982611e40565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff906148dc565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000014831061256c5760017f00000000000000000000000000000000000000000000000000000000000000148461255f9190613bb1565b6125699190613f57565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b508080612672906148fc565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad90614998565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b828260405180602001604052806000815250612b26565b5050565b60006127c08473ffffffffffffffffffffffffffffffffffffffff16613005565b1561291a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e9611e38565b8786866040518563ffffffff1660e01b815260040161280b9493929190614a0d565b6020604051808303816000875af192505050801561284757506040513d601f19601f820116820180604052508101906128449190614a6e565b60015b6128ca573d8060008114612877576040519150601f19603f3d011682016040523d82523d6000602084013e61287c565b606091505b506000815114156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b9906143d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061291f565b600190505b949350505050565b6060600980546129369061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546129629061399a565b80156129af5780601f10612984576101008083540402835291602001916129af565b820191906000526020600020905b81548152906001019060200180831161299257829003601f168201915b5050505050905090565b60606000821415612a01576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b15565b600082905060005b60008214612a33578080612a1c90613c77565b915050600a82612a2c9190614aca565b9150612a09565b60008167ffffffffffffffff811115612a4f57612a4e6135a7565b5b6040519080825280601f01601f191660200182016040528015612a815781602001600182028036833780820191505090505b5090505b60008514612b0e57600182612a9a9190613bb1565b9150600a85612aa99190614afb565b6030612ab59190613f57565b60f81b818381518110612acb57612aca613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b079190614aca565b9450612a85565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614b9e565b60405180910390fd5b612ba581611e40565b15612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c0a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90614c9c565b60405180910390fd5b612c556000858386612b1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d529190614824565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d799190614824565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fe857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f88600088848861279f565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe906143d9565b60405180910390fd5b8180612fd290613c77565b9250508080612fe090613c77565b915050612f17565b5080600081905550612ffd6000878588612b20565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130349061399a565b90600052602060002090601f016020900481019282613056576000855561309d565b82601f1061306f57805160ff191683800117855561309d565b8280016001018555821561309d579182015b8281111561309c578251825591602001919060010190613081565b5b5090506130aa91906130e8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131015760008160009055506001016130e9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314e81613119565b811461315957600080fd5b50565b60008135905061316b81613145565b92915050565b6000602082840312156131875761318661310f565b5b60006131958482850161315c565b91505092915050565b60008115159050919050565b6131b38161319e565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd8161319e565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000602082840312156132165761321561310f565b5b6000613224848285016131eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561326757808201518184015260208101905061324c565b83811115613276576000848401525b50505050565b6000601f19601f8301169050919050565b60006132988261322d565b6132a28185613238565b93506132b2818560208601613249565b6132bb8161327c565b840191505092915050565b600060208201905081810360008301526132e0818461328d565b905092915050565b6000819050919050565b6132fb816132e8565b811461330657600080fd5b50565b600081359050613318816132f2565b92915050565b6000602082840312156133345761333361310f565b5b600061334284828501613309565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133768261334b565b9050919050565b6133868161336b565b82525050565b60006020820190506133a1600083018461337d565b92915050565b6133b08161336b565b81146133bb57600080fd5b50565b6000813590506133cd816133a7565b92915050565b600080604083850312156133ea576133e961310f565b5b60006133f8858286016133be565b925050602061340985828601613309565b9150509250929050565b61341c816132e8565b82525050565b60006020820190506134376000830184613413565b92915050565b6000806000606084860312156134565761345561310f565b5b6000613464868287016133be565b9350506020613475868287016133be565b925050604061348686828701613309565b9150509250925092565b6000602082840312156134a6576134a561310f565b5b60006134b4848285016133be565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134f2816132e8565b82525050565b600061350483836134e9565b60208301905092915050565b6000602082019050919050565b6000613528826134bd565b61353281856134c8565b935061353d836134d9565b8060005b8381101561356e57815161355588826134f8565b975061356083613510565b925050600181019050613541565b5085935050505092915050565b60006020820190508181036000830152613595818461351d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135df8261327c565b810181811067ffffffffffffffff821117156135fe576135fd6135a7565b5b80604052505050565b6000613611613105565b905061361d82826135d6565b919050565b600067ffffffffffffffff82111561363d5761363c6135a7565b5b6136468261327c565b9050602081019050919050565b82818337600083830152505050565b600061367561367084613622565b613607565b905082815260208101848484011115613691576136906135a2565b5b61369c848285613653565b509392505050565b600082601f8301126136b9576136b861359d565b5b81356136c9848260208601613662565b91505092915050565b6000602082840312156136e8576136e761310f565b5b600082013567ffffffffffffffff81111561370657613705613114565b5b613712848285016136a4565b91505092915050565b600080604083850312156137325761373161310f565b5b600061374085828601613309565b9250506020613751858286016133be565b9150509250929050565b600080604083850312156137725761377161310f565b5b6000613780858286016133be565b9250506020613791858286016131eb565b9150509250929050565b600067ffffffffffffffff8211156137b6576137b56135a7565b5b6137bf8261327c565b9050602081019050919050565b60006137df6137da8461379b565b613607565b9050828152602081018484840111156137fb576137fa6135a2565b5b613806848285613653565b509392505050565b600082601f8301126138235761382261359d565b5b81356138338482602086016137cc565b91505092915050565b600080600080608085870312156138565761385561310f565b5b6000613864878288016133be565b9450506020613875878288016133be565b935050604061388687828801613309565b925050606085013567ffffffffffffffff8111156138a7576138a6613114565b5b6138b38782880161380e565b91505092959194509250565b600080604083850312156138d6576138d561310f565b5b60006138e4858286016133be565b92505060206138f5858286016133be565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083613238565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139b257607f821691505b602082108114156139c6576139c561396b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a28602d83613238565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aba602283613238565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b4c603983613238565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826132e8565b9150613bc7836132e8565b925082821015613bda57613bd9613b82565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c41602283613238565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b6000613c82826132e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb557613cb4613b82565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d1c602e83613238565b9150613d2782613cc0565b604082019050919050565b60006020820190508181036000830152613d4b81613d0f565b9050919050565b600081905092915050565b50565b6000613d6d600083613d52565b9150613d7882613d5d565b600082019050919050565b6000613d8e82613d60565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e23602383613238565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb5602b83613238565b9150613ec082613e59565b604082019050919050565b60006020820190508181036000830152613ee481613ea8565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f21601b83613238565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b6000613f62826132e8565b9150613f6d836132e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa257613fa1613b82565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613fe3601683613238565b9150613fee82613fad565b602082019050919050565b6000602082019050818103600083015261401281613fd6565b9050919050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061404f601283613238565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f4e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006140bb601b83613238565b91506140c682614085565b602082019050919050565b600060208201905081810360008301526140ea816140ae565b9050919050565b7f4d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b6000614127601f83613238565b9150614132826140f1565b602082019050919050565b600060208201905081810360008301526141568161411a565b9050919050565b7f574520534f4c44204f5554210000000000000000000000000000000000000000600082015250565b6000614193600c83613238565b915061419e8261415d565b602082019050919050565b600060208201905081810360008301526141c281614186565b9050919050565b60006141d4826132e8565b91506141df836132e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561421857614217613b82565b5b828202905092915050565b7f497427732046726565204d696e74000000000000000000000000000000000000600082015250565b6000614259600e83613238565b915061426482614223565b602082019050919050565b600060208201905081810360008301526142888161424c565b9050919050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006142c5601283613238565b91506142d08261428f565b602082019050919050565b600060208201905081810360008301526142f4816142b8565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614331601a83613238565b915061433c826142fb565b602082019050919050565b6000602082019050818103600083015261436081614324565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006143c3603383613238565b91506143ce82614367565b604082019050919050565b600060208201905081810360008301526143f2816143b6565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000614455603083613238565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b600081905092915050565b60006144a18261322d565b6144ab818561448b565b93506144bb818560208601613249565b80840191505092915050565b60008190508160005260206000209050919050565b600081546144e98161399a565b6144f3818661448b565b9450600182166000811461450e576001811461451f57614552565b60ff19831686528186019350614552565b614528856144c7565b60005b8381101561454a5781548189015260018201915060208101905061452b565b838801955050505b50505092915050565b60006145678286614496565b91506145738285614496565b915061457f82846144dc565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145e8602683613238565b91506145f38261458c565b604082019050919050565b60006020820190508181036000830152614617816145db565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061467a603283613238565b91506146858261461e565b604082019050919050565b600060208201905081810360008301526146a98161466d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061470c602683613238565b9150614717826146b0565b604082019050919050565b6000602082019050818103600083015261473b816146ff565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061479e602583613238565b91506147a982614742565b604082019050919050565b600060208201905081810360008301526147cd81614791565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006147fb826147d4565b9150614806836147d4565b92508282101561481957614818613b82565b5b828203905092915050565b600061482f826147d4565b915061483a836147d4565b9250826fffffffffffffffffffffffffffffffff0382111561485f5761485e613b82565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006148c6602a83613238565b91506148d18261486a565b604082019050919050565b600060208201905081810360008301526148f5816148b9565b9050919050565b6000614907826132e8565b9150600082141561491b5761491a613b82565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614982602f83613238565b915061498d82614926565b604082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006149df826149b8565b6149e981856149c3565b93506149f9818560208601613249565b614a028161327c565b840191505092915050565b6000608082019050614a22600083018761337d565b614a2f602083018661337d565b614a3c6040830185613413565b8181036060830152614a4e81846149d4565b905095945050505050565b600081519050614a6881613145565b92915050565b600060208284031215614a8457614a8361310f565b5b6000614a9284828501614a59565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad5826132e8565b9150614ae0836132e8565b925082614af057614aef614a9b565b5b828204905092915050565b6000614b06826132e8565b9150614b11836132e8565b925082614b2157614b20614a9b565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b88602183613238565b9150614b9382614b2c565b604082019050919050565b60006020820190508181036000830152614bb781614b7b565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614bf4601d83613238565b9150614bff82614bbe565b602082019050919050565b60006020820190508181036000830152614c2381614be7565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c86602283613238565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b905091905056fea264697066735822122066dc318325e1087e65ddb1e59d1afa7df3cbfd7b997eb574f53857a08c531d5d64736f6c634300080a0033
Deployed Bytecode Sourcemap
46497:2940:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34208:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49196:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35934:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37459:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37022:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46645:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48858:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38309:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31646:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33400:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49276:158;;;:::i;:::-;;38514:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47962:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48770:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32935:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48960:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46770:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35757:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46577:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46718:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34634:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11792:103;;;;;;;;;;;;;:::i;:::-;;47643:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11141:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36089:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47039:537;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37727:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38734:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46603:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48316:430;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46682:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43065:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49064:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38064:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12050:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34208:370;34335:4;34380:25;34365:40;;;:11;:40;;;;:99;;;;34431:33;34416:48;;;:11;:48;;;;34365:99;:160;;;;34490:35;34475:50;;;:11;:50;;;;34365:160;:207;;;;34536:36;34560:11;34536:23;:36::i;:::-;34365:207;34351:221;;34208:370;;;:::o;49196:73::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49257:6:::1;49248;;:15;;;;;;;;;;;;;;;;;;49196:73:::0;:::o;35934:94::-;35988:13;36017:5;36010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35934:94;:::o;37459:204::-;37527:7;37551:16;37559:7;37551;:16::i;:::-;37543:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37633:15;:24;37649:7;37633:24;;;;;;;;;;;;;;;;;;;;;37626:31;;37459:204;;;:::o;37022:379::-;37091:13;37107:24;37123:7;37107:15;:24::i;:::-;37091:40;;37152:5;37146:11;;:2;:11;;;;37138:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37237:5;37221:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37246:37;37263:5;37270:12;:10;:12::i;:::-;37246:16;:37::i;:::-;37221:62;37205:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;37367:28;37376:2;37380:7;37389:5;37367:8;:28::i;:::-;37084:317;37022:379;;:::o;46645:32::-;;;;:::o;48858:94::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48936:10:::1;48924:9;:22;;;;48858:94:::0;:::o;32768:98::-;32821:7;32859:1;32844:12;;:16;;;;:::i;:::-;32837:23;;32768:98;:::o;38309:142::-;38417:28;38427:4;38433:2;38437:7;38417:9;:28::i;:::-;38309:142;;;:::o;31646:37::-;;;:::o;33400:744::-;33509:7;33544:16;33554:5;33544:9;:16::i;:::-;33536:5;:24;33528:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33606:22;33631:13;:11;:13::i;:::-;33606:38;;33651:19;33681:25;33731:9;33726:350;33750:14;33746:1;:18;33726:350;;;33780:31;33814:11;:14;33826:1;33814:14;;;;;;;;;;;33780:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33867:1;33841:28;;:9;:14;;;:28;;;33837:89;;33902:9;:14;;;33882:34;;33837:89;33959:5;33938:26;;:17;:26;;;33934:135;;;33996:5;33981:11;:20;33977:59;;;34023:1;34016:8;;;;;;;;;33977:59;34046:13;;;;;:::i;:::-;;;;33934:135;33771:305;33766:3;;;;;:::i;:::-;;;;33726:350;;;;34082:56;;;;;;;;;;:::i;:::-;;;;;;;;33400:744;;;;;:::o;49276:158::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49329:12:::1;49355:10;49347:24;;49379:21;49347:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49328:77;;;49420:7;49412:16;;;::::0;::::1;;49321:113;49276:158::o:0;38514:157::-;38626:39;38643:4;38649:2;38653:7;38626:39;;;;;;;;;;;;:16;:39::i;:::-;38514:157;;;:::o;47962:348::-;48037:16;48065:23;48091:17;48101:6;48091:9;:17::i;:::-;48065:43;;48115:25;48157:15;48143:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48115:58;;48185:9;48180:103;48200:15;48196:1;:19;48180:103;;;48245:30;48265:6;48273:1;48245:19;:30::i;:::-;48231:8;48240:1;48231:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48217:3;;;;;:::i;:::-;;;;48180:103;;;;48296:8;48289:15;;;;47962:348;;;:::o;48770:80::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48836:8:::1;48829:4;:15;;;;48770:80:::0;:::o;32935:177::-;33002:7;33034:13;:11;:13::i;:::-;33026:5;:21;33018:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;33101:5;33094:12;;32935:177;;;:::o;48960:98::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49041:11:::1;49031:7;:21;;;;;;;;;;;;:::i;:::-;;48960:98:::0;:::o;46770:26::-;;;;;;;;;;;;;:::o;35757:118::-;35821:7;35844:20;35856:7;35844:11;:20::i;:::-;:25;;;35837:32;;35757:118;;;:::o;46577:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46718:27::-;;;;:::o;34634:211::-;34698:7;34739:1;34722:19;;:5;:19;;;;34714:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;34811:12;:19;34824:5;34811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34803:36;;34796:43;;34634:211;;;:::o;11792:103::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11857:30:::1;11884:1;11857:18;:30::i;:::-;11792:103::o:0;47643:305::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47745:1:::1;47731:11;:15;47723:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47785:14;47802:13;:11;:13::i;:::-;47785:30;;47854:9;;47839:11;47830:6;:20;;;;:::i;:::-;:33;;47822:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47901:35;47911:11;47924;47901:9;:35::i;:::-;47716:232;47643:305:::0;;:::o;11141:87::-;11187:7;11214:6;;;;;;;;;;;11207:13;;11141:87;:::o;36089:98::-;36145:13;36174:7;36167:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36089:98;:::o;47039:537::-;47100:6;;;;;;;;;;;47099:7;47091:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;47136:14;47153:13;:11;:13::i;:::-;47136:30;;47190:1;47181:6;:10;47173:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47248:7;;47238:6;:17;;47230:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47325:9;;47315:6;47306;:15;;;;:::i;:::-;:28;;47298:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;47371:3;47362:6;:12;47358:165;;;47410:6;47406:1;:10;;;;:::i;:::-;47393:9;:23;;47385:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47358:165;;;47486:6;47479:4;;:13;;;;:::i;:::-;47466:9;:26;;47458:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47358:165;47533:31;47543:12;:10;:12::i;:::-;47557:6;47533:9;:31::i;:::-;47084:492;47039:537;:::o;37727:274::-;37830:12;:10;:12::i;:::-;37818:24;;:8;:24;;;;37810:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37927:8;37882:18;:32;37901:12;:10;:12::i;:::-;37882:32;;;;;;;;;;;;;;;:42;37915:8;37882:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37976:8;37947:48;;37962:12;:10;:12::i;:::-;37947:48;;;37986:8;37947:48;;;;;;:::i;:::-;;;;;;;;37727:274;;:::o;38734:311::-;38871:28;38881:4;38887:2;38891:7;38871:9;:28::i;:::-;38922:48;38945:4;38951:2;38955:7;38964:5;38922:22;:48::i;:::-;38906:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;38734:311;;;;:::o;46603:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48316:430::-;48414:13;48455:16;48463:7;48455;:16::i;:::-;48439:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;48552:28;48583:10;:8;:10::i;:::-;48552:41;;48638:1;48613:14;48607:28;:32;:133;;;;;;;;;;;;;;;;;48675:14;48691:18;:7;:16;:18::i;:::-;48711:13;48658:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48607:133;48600:140;;;48316:430;;;:::o;46682:31::-;;;;:::o;43065:43::-;;;;:::o;49064:122::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49163:17:::1;49147:13;:33;;;;;;;;;;;;:::i;:::-;;49064:122:::0;:::o;38064:186::-;38186:4;38209:18;:25;38228:5;38209:25;;;;;;;;;;;;;;;:35;38235:8;38209:35;;;;;;;;;;;;;;;;;;;;;;;;;38202:42;;38064:186;;;;:::o;12050:201::-;11372:12;:10;:12::i;:::-;11361:23;;:7;:5;:7::i;:::-;:23;;;11353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12159:1:::1;12139:22;;:8;:22;;;;12131:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12215:28;12234:8;12215:18;:28::i;:::-;12050:201:::0;:::o;23925:157::-;24010:4;24049:25;24034:40;;;:11;:40;;;;24027:47;;23925:157;;;:::o;9865:98::-;9918:7;9945:10;9938:17;;9865:98;:::o;39284:105::-;39341:4;39371:12;;39361:7;:22;39354:29;;39284:105;;;:::o;42887:172::-;43011:2;42984:15;:24;43000:7;42984:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43045:7;43041:2;43025:28;;43034:5;43025:28;;;;;;;;;;;;42887:172;;;:::o;41252:1529::-;41349:35;41387:20;41399:7;41387:11;:20::i;:::-;41349:58;;41416:22;41458:13;:18;;;41442:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;41511:12;:10;:12::i;:::-;41487:36;;:20;41499:7;41487:11;:20::i;:::-;:36;;;41442:81;:142;;;;41534:50;41551:13;:18;;;41571:12;:10;:12::i;:::-;41534:16;:50::i;:::-;41442:142;41416:169;;41610:17;41594:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;41742:4;41720:26;;:13;:18;;;:26;;;41704:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41831:1;41817:16;;:2;:16;;;;41809:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41884:43;41906:4;41912:2;41916:7;41925:1;41884:21;:43::i;:::-;41984:49;42001:1;42005:7;42014:13;:18;;;41984:8;:49::i;:::-;42072:1;42042:12;:18;42055:4;42042:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42108:1;42080:12;:16;42093:2;42080:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42139:43;;;;;;;;42154:2;42139:43;;;;;;42165:15;42139:43;;;;;42116:11;:20;42128:7;42116:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42410:19;42442:1;42432:7;:11;;;;:::i;:::-;42410:33;;42495:1;42454:43;;:11;:24;42466:11;42454:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42450:236;;;42512:20;42520:11;42512:7;:20::i;:::-;42508:171;;;42572:97;;;;;;;;42599:13;:18;;;42572:97;;;;;;42630:13;:28;;;42572:97;;;;;42545:11;:24;42557:11;42545:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42508:171;42450:236;42718:7;42714:2;42699:27;;42708:4;42699:27;;;;;;;;;;;;42733:42;42754:4;42760:2;42764:7;42773:1;42733:20;:42::i;:::-;41342:1439;;;41252:1529;;;:::o;35097:606::-;35173:21;;:::i;:::-;35214:16;35222:7;35214;:16::i;:::-;35206:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35286:26;35334:12;35323:7;:23;35319:93;;35403:1;35388:12;35378:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;35357:47;;35319:93;35425:12;35440:7;35425:22;;35420:212;35457:18;35449:4;:26;35420:212;;35494:31;35528:11;:17;35540:4;35528:17;;;;;;;;;;;35494:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35584:1;35558:28;;:9;:14;;;:28;;;35554:71;;35606:9;35599:16;;;;;;;35554:71;35485:147;35477:6;;;;;:::i;:::-;;;;35420:212;;;;35640:57;;;;;;;;;;:::i;:::-;;;;;;;;35097:606;;;;:::o;12411:191::-;12485:16;12504:6;;;;;;;;;;;12485:25;;12530:8;12521:6;;:17;;;;;;;;;;;;;;;;;;12585:8;12554:40;;12575:8;12554:40;;;;;;;;;;;;12474:128;12411:191;:::o;39395:98::-;39460:27;39470:2;39474:8;39460:27;;;;;;;;;;;;:9;:27::i;:::-;39395:98;;:::o;44598:690::-;44735:4;44752:15;:2;:13;;;:15::i;:::-;44748:535;;;44807:2;44791:36;;;44828:12;:10;:12::i;:::-;44842:4;44848:7;44857:5;44791:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44778:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45039:1;45022:6;:13;:18;45018:215;;;45055:61;;;;;;;;;;:::i;:::-;;;;;;;;45018:215;45201:6;45195:13;45186:6;45182:2;45178:15;45171:38;44778:464;44923:45;;;44913:55;;;:6;:55;;;;44906:62;;;;;44748:535;45271:4;45264:11;;44598:690;;;;;;;:::o;46918:102::-;46978:13;47007:7;47000:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46918:102;:::o;7427:723::-;7483:13;7713:1;7704:5;:10;7700:53;;;7731:10;;;;;;;;;;;;;;;;;;;;;7700:53;7763:12;7778:5;7763:20;;7794:14;7819:78;7834:1;7826:4;:9;7819:78;;7852:8;;;;;:::i;:::-;;;;7883:2;7875:10;;;;;:::i;:::-;;;7819:78;;;7907:19;7939:6;7929:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:39;;7957:154;7973:1;7964:5;:10;7957:154;;8001:1;7991:11;;;;;:::i;:::-;;;8068:2;8060:5;:10;;;;:::i;:::-;8047:2;:24;;;;:::i;:::-;8034:39;;8017:6;8024;8017:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8097:2;8088:11;;;;;:::i;:::-;;;7957:154;;;8135:6;8121:21;;;;;7427:723;;;;:::o;45750:141::-;;;;;:::o;46277:140::-;;;;;:::o;39748:1272::-;39853:20;39876:12;;39853:35;;39917:1;39903:16;;:2;:16;;;;39895:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40094:21;40102:12;40094:7;:21::i;:::-;40093:22;40085:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40176:12;40164:8;:24;;40156:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40236:61;40266:1;40270:2;40274:12;40288:8;40236:21;:61::i;:::-;40306:30;40339:12;:16;40352:2;40339:16;;;;;;;;;;;;;;;40306:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40381:119;;;;;;;;40431:8;40401:11;:19;;;:39;;;;:::i;:::-;40381:119;;;;;;40484:8;40449:11;:24;;;:44;;;;:::i;:::-;40381:119;;;;;40362:12;:16;40375:2;40362:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40535:43;;;;;;;;40550:2;40535:43;;;;;;40561:15;40535:43;;;;;40507:11;:25;40519:12;40507:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40587:20;40610:12;40587:35;;40636:9;40631:281;40655:8;40651:1;:12;40631:281;;;40709:12;40705:2;40684:38;;40701:1;40684:38;;;;;;;;;;;;40749:59;40780:1;40784:2;40788:12;40802:5;40749:22;:59::i;:::-;40731:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;40890:14;;;;;:::i;:::-;;;;40665:3;;;;;:::i;:::-;;;;40631:281;;;;40935:12;40920;:27;;;;40954:60;40983:1;40987:2;40991:12;41005:8;40954:20;:60::i;:::-;39846:1174;;;39748:1272;;;:::o;13842:326::-;13902:4;14159:1;14137:7;:19;;;:23;14130:30;;13842:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:474::-;11542:6;11550;11599:2;11587:9;11578:7;11574:23;11570:32;11567:119;;;11605:79;;:::i;:::-;11567:119;11725:1;11750:53;11795:7;11786:6;11775:9;11771:22;11750:53;:::i;:::-;11740:63;;11696:117;11852:2;11878:53;11923:7;11914:6;11903:9;11899:22;11878:53;:::i;:::-;11868:63;;11823:118;11474:474;;;;;:::o;11954:468::-;12019:6;12027;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;12329:2;12355:50;12397:7;12388:6;12377:9;12373:22;12355:50;:::i;:::-;12345:60;;12300:115;11954:468;;;;;:::o;12428:307::-;12489:4;12579:18;12571:6;12568:30;12565:56;;;12601:18;;:::i;:::-;12565:56;12639:29;12661:6;12639:29;:::i;:::-;12631:37;;12723:4;12717;12713:15;12705:23;;12428:307;;;:::o;12741:410::-;12818:5;12843:65;12859:48;12900:6;12859:48;:::i;:::-;12843:65;:::i;:::-;12834:74;;12931:6;12924:5;12917:21;12969:4;12962:5;12958:16;13007:3;12998:6;12993:3;12989:16;12986:25;12983:112;;;13014:79;;:::i;:::-;12983:112;13104:41;13138:6;13133:3;13128;13104:41;:::i;:::-;12824:327;12741:410;;;;;:::o;13170:338::-;13225:5;13274:3;13267:4;13259:6;13255:17;13251:27;13241:122;;13282:79;;:::i;:::-;13241:122;13399:6;13386:20;13424:78;13498:3;13490:6;13483:4;13475:6;13471:17;13424:78;:::i;:::-;13415:87;;13231:277;13170:338;;;;:::o;13514:943::-;13609:6;13617;13625;13633;13682:3;13670:9;13661:7;13657:23;13653:33;13650:120;;;13689:79;;:::i;:::-;13650:120;13809:1;13834:53;13879:7;13870:6;13859:9;13855:22;13834:53;:::i;:::-;13824:63;;13780:117;13936:2;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13907:118;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14220:2;14209:9;14205:18;14192:32;14251:18;14243:6;14240:30;14237:117;;;14273:79;;:::i;:::-;14237:117;14378:62;14432:7;14423:6;14412:9;14408:22;14378:62;:::i;:::-;14368:72;;14163:287;13514:943;;;;;;;:::o;14463:474::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:182::-;15083:34;15079:1;15071:6;15067:14;15060:58;14943:182;:::o;15131:366::-;15273:3;15294:67;15358:2;15353:3;15294:67;:::i;:::-;15287:74;;15370:93;15459:3;15370:93;:::i;:::-;15488:2;15483:3;15479:12;15472:19;;15131:366;;;:::o;15503:419::-;15669:4;15707:2;15696:9;15692:18;15684:26;;15756:9;15750:4;15746:20;15742:1;15731:9;15727:17;15720:47;15784:131;15910:4;15784:131;:::i;:::-;15776:139;;15503:419;;;:::o;15928:180::-;15976:77;15973:1;15966:88;16073:4;16070:1;16063:15;16097:4;16094:1;16087:15;16114:320;16158:6;16195:1;16189:4;16185:12;16175:22;;16242:1;16236:4;16232:12;16263:18;16253:81;;16319:4;16311:6;16307:17;16297:27;;16253:81;16381:2;16373:6;16370:14;16350:18;16347:38;16344:84;;;16400:18;;:::i;:::-;16344:84;16165:269;16114:320;;;:::o;16440:232::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:15;16644:2;16636:6;16632:15;16625:40;16440:232;:::o;16678:366::-;16820:3;16841:67;16905:2;16900:3;16841:67;:::i;:::-;16834:74;;16917:93;17006:3;16917:93;:::i;:::-;17035:2;17030:3;17026:12;17019:19;;16678:366;;;:::o;17050:419::-;17216:4;17254:2;17243:9;17239:18;17231:26;;17303:9;17297:4;17293:20;17289:1;17278:9;17274:17;17267:47;17331:131;17457:4;17331:131;:::i;:::-;17323:139;;17050:419;;;:::o;17475:221::-;17615:34;17611:1;17603:6;17599:14;17592:58;17684:4;17679:2;17671:6;17667:15;17660:29;17475:221;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:244::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:27;18703:2;18695:6;18691:15;18684:52;18499:244;:::o;18749:366::-;18891:3;18912:67;18976:2;18971:3;18912:67;:::i;:::-;18905:74;;18988:93;19077:3;18988:93;:::i;:::-;19106:2;19101:3;19097:12;19090:19;;18749:366;;;:::o;19121:419::-;19287:4;19325:2;19314:9;19310:18;19302:26;;19374:9;19368:4;19364:20;19360:1;19349:9;19345:17;19338:47;19402:131;19528:4;19402:131;:::i;:::-;19394:139;;19121:419;;;:::o;19546:180::-;19594:77;19591:1;19584:88;19691:4;19688:1;19681:15;19715:4;19712:1;19705:15;19732:191;19772:4;19792:20;19810:1;19792:20;:::i;:::-;19787:25;;19826:20;19844:1;19826:20;:::i;:::-;19821:25;;19865:1;19862;19859:8;19856:34;;;19870:18;;:::i;:::-;19856:34;19915:1;19912;19908:9;19900:17;;19732:191;;;;:::o;19929:221::-;20069:34;20065:1;20057:6;20053:14;20046:58;20138:4;20133:2;20125:6;20121:15;20114:29;19929:221;:::o;20156:366::-;20298:3;20319:67;20383:2;20378:3;20319:67;:::i;:::-;20312:74;;20395:93;20484:3;20395:93;:::i;:::-;20513:2;20508:3;20504:12;20497:19;;20156:366;;;:::o;20528:419::-;20694:4;20732:2;20721:9;20717:18;20709:26;;20781:9;20775:4;20771:20;20767:1;20756:9;20752:17;20745:47;20809:131;20935:4;20809:131;:::i;:::-;20801:139;;20528:419;;;:::o;20953:233::-;20992:3;21015:24;21033:5;21015:24;:::i;:::-;21006:33;;21061:66;21054:5;21051:77;21048:103;;;21131:18;;:::i;:::-;21048:103;21178:1;21171:5;21167:13;21160:20;;20953:233;;;:::o;21192:::-;21332:34;21328:1;21320:6;21316:14;21309:58;21401:16;21396:2;21388:6;21384:15;21377:41;21192:233;:::o;21431:366::-;21573:3;21594:67;21658:2;21653:3;21594:67;:::i;:::-;21587:74;;21670:93;21759:3;21670:93;:::i;:::-;21788:2;21783:3;21779:12;21772:19;;21431:366;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:147::-;22329:11;22366:3;22351:18;;22228:147;;;;:::o;22381:114::-;;:::o;22501:398::-;22660:3;22681:83;22762:1;22757:3;22681:83;:::i;:::-;22674:90;;22773:93;22862:3;22773:93;:::i;:::-;22891:1;22886:3;22882:11;22875:18;;22501:398;;;:::o;22905:379::-;23089:3;23111:147;23254:3;23111:147;:::i;:::-;23104:154;;23275:3;23268:10;;22905:379;;;:::o;23290:180::-;23338:77;23335:1;23328:88;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23476:222;23616:34;23612:1;23604:6;23600:14;23593:58;23685:5;23680:2;23672:6;23668:15;23661:30;23476:222;:::o;23704:366::-;23846:3;23867:67;23931:2;23926:3;23867:67;:::i;:::-;23860:74;;23943:93;24032:3;23943:93;:::i;:::-;24061:2;24056:3;24052:12;24045:19;;23704:366;;;:::o;24076:419::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:230::-;24641:34;24637:1;24629:6;24625:14;24618:58;24710:13;24705:2;24697:6;24693:15;24686:38;24501:230;:::o;24737:366::-;24879:3;24900:67;24964:2;24959:3;24900:67;:::i;:::-;24893:74;;24976:93;25065:3;24976:93;:::i;:::-;25094:2;25089:3;25085:12;25078:19;;24737:366;;;:::o;25109:419::-;25275:4;25313:2;25302:9;25298:18;25290:26;;25362:9;25356:4;25352:20;25348:1;25337:9;25333:17;25326:47;25390:131;25516:4;25390:131;:::i;:::-;25382:139;;25109:419;;;:::o;25534:177::-;25674:29;25670:1;25662:6;25658:14;25651:53;25534:177;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:305::-;26554:3;26573:20;26591:1;26573:20;:::i;:::-;26568:25;;26607:20;26625:1;26607:20;:::i;:::-;26602:25;;26761:1;26693:66;26689:74;26686:1;26683:81;26680:107;;;26767:18;;:::i;:::-;26680:107;26811:1;26808;26804:9;26797:16;;26514:305;;;;:::o;26825:172::-;26965:24;26961:1;26953:6;26949:14;26942:48;26825:172;:::o;27003:366::-;27145:3;27166:67;27230:2;27225:3;27166:67;:::i;:::-;27159:74;;27242:93;27331:3;27242:93;:::i;:::-;27360:2;27355:3;27351:12;27344:19;;27003:366;;;:::o;27375:419::-;27541:4;27579:2;27568:9;27564:18;27556:26;;27628:9;27622:4;27618:20;27614:1;27603:9;27599:17;27592:47;27656:131;27782:4;27656:131;:::i;:::-;27648:139;;27375:419;;;:::o;27800:168::-;27940:20;27936:1;27928:6;27924:14;27917:44;27800:168;:::o;27974:366::-;28116:3;28137:67;28201:2;28196:3;28137:67;:::i;:::-;28130:74;;28213:93;28302:3;28213:93;:::i;:::-;28331:2;28326:3;28322:12;28315:19;;27974:366;;;:::o;28346:419::-;28512:4;28550:2;28539:9;28535:18;28527:26;;28599:9;28593:4;28589:20;28585:1;28574:9;28570:17;28563:47;28627:131;28753:4;28627:131;:::i;:::-;28619:139;;28346:419;;;:::o;28771:177::-;28911:29;28907:1;28899:6;28895:14;28888:53;28771:177;:::o;28954:366::-;29096:3;29117:67;29181:2;29176:3;29117:67;:::i;:::-;29110:74;;29193:93;29282:3;29193:93;:::i;:::-;29311:2;29306:3;29302:12;29295:19;;28954:366;;;:::o;29326:419::-;29492:4;29530:2;29519:9;29515:18;29507:26;;29579:9;29573:4;29569:20;29565:1;29554:9;29550:17;29543:47;29607:131;29733:4;29607:131;:::i;:::-;29599:139;;29326:419;;;:::o;29751:181::-;29891:33;29887:1;29879:6;29875:14;29868:57;29751:181;:::o;29938:366::-;30080:3;30101:67;30165:2;30160:3;30101:67;:::i;:::-;30094:74;;30177:93;30266:3;30177:93;:::i;:::-;30295:2;30290:3;30286:12;30279:19;;29938:366;;;:::o;30310:419::-;30476:4;30514:2;30503:9;30499:18;30491:26;;30563:9;30557:4;30553:20;30549:1;30538:9;30534:17;30527:47;30591:131;30717:4;30591:131;:::i;:::-;30583:139;;30310:419;;;:::o;30735:162::-;30875:14;30871:1;30863:6;30859:14;30852:38;30735:162;:::o;30903:366::-;31045:3;31066:67;31130:2;31125:3;31066:67;:::i;:::-;31059:74;;31142:93;31231:3;31142:93;:::i;:::-;31260:2;31255:3;31251:12;31244:19;;30903:366;;;:::o;31275:419::-;31441:4;31479:2;31468:9;31464:18;31456:26;;31528:9;31522:4;31518:20;31514:1;31503:9;31499:17;31492:47;31556:131;31682:4;31556:131;:::i;:::-;31548:139;;31275:419;;;:::o;31700:348::-;31740:7;31763:20;31781:1;31763:20;:::i;:::-;31758:25;;31797:20;31815:1;31797:20;:::i;:::-;31792:25;;31985:1;31917:66;31913:74;31910:1;31907:81;31902:1;31895:9;31888:17;31884:105;31881:131;;;31992:18;;:::i;:::-;31881:131;32040:1;32037;32033:9;32022:20;;31700:348;;;;:::o;32054:164::-;32194:16;32190:1;32182:6;32178:14;32171:40;32054:164;:::o;32224:366::-;32366:3;32387:67;32451:2;32446:3;32387:67;:::i;:::-;32380:74;;32463:93;32552:3;32463:93;:::i;:::-;32581:2;32576:3;32572:12;32565:19;;32224:366;;;:::o;32596:419::-;32762:4;32800:2;32789:9;32785:18;32777:26;;32849:9;32843:4;32839:20;32835:1;32824:9;32820:17;32813:47;32877:131;33003:4;32877:131;:::i;:::-;32869:139;;32596:419;;;:::o;33021:168::-;33161:20;33157:1;33149:6;33145:14;33138:44;33021:168;:::o;33195:366::-;33337:3;33358:67;33422:2;33417:3;33358:67;:::i;:::-;33351:74;;33434:93;33523:3;33434:93;:::i;:::-;33552:2;33547:3;33543:12;33536:19;;33195:366;;;:::o;33567:419::-;33733:4;33771:2;33760:9;33756:18;33748:26;;33820:9;33814:4;33810:20;33806:1;33795:9;33791:17;33784:47;33848:131;33974:4;33848:131;:::i;:::-;33840:139;;33567:419;;;:::o;33992:176::-;34132:28;34128:1;34120:6;34116:14;34109:52;33992:176;:::o;34174:366::-;34316:3;34337:67;34401:2;34396:3;34337:67;:::i;:::-;34330:74;;34413:93;34502:3;34413:93;:::i;:::-;34531:2;34526:3;34522:12;34515:19;;34174:366;;;:::o;34546:419::-;34712:4;34750:2;34739:9;34735:18;34727:26;;34799:9;34793:4;34789:20;34785:1;34774:9;34770:17;34763:47;34827:131;34953:4;34827:131;:::i;:::-;34819:139;;34546:419;;;:::o;34971:238::-;35111:34;35107:1;35099:6;35095:14;35088:58;35180:21;35175:2;35167:6;35163:15;35156:46;34971:238;:::o;35215:366::-;35357:3;35378:67;35442:2;35437:3;35378:67;:::i;:::-;35371:74;;35454:93;35543:3;35454:93;:::i;:::-;35572:2;35567:3;35563:12;35556:19;;35215:366;;;:::o;35587:419::-;35753:4;35791:2;35780:9;35776:18;35768:26;;35840:9;35834:4;35830:20;35826:1;35815:9;35811:17;35804:47;35868:131;35994:4;35868:131;:::i;:::-;35860:139;;35587:419;;;:::o;36012:235::-;36152:34;36148:1;36140:6;36136:14;36129:58;36221:18;36216:2;36208:6;36204:15;36197:43;36012:235;:::o;36253:366::-;36395:3;36416:67;36480:2;36475:3;36416:67;:::i;:::-;36409:74;;36492:93;36581:3;36492:93;:::i;:::-;36610:2;36605:3;36601:12;36594:19;;36253:366;;;:::o;36625:419::-;36791:4;36829:2;36818:9;36814:18;36806:26;;36878:9;36872:4;36868:20;36864:1;36853:9;36849:17;36842:47;36906:131;37032:4;36906:131;:::i;:::-;36898:139;;36625:419;;;:::o;37050:148::-;37152:11;37189:3;37174:18;;37050:148;;;;:::o;37204:377::-;37310:3;37338:39;37371:5;37338:39;:::i;:::-;37393:89;37475:6;37470:3;37393:89;:::i;:::-;37386:96;;37491:52;37536:6;37531:3;37524:4;37517:5;37513:16;37491:52;:::i;:::-;37568:6;37563:3;37559:16;37552:23;;37314:267;37204:377;;;;:::o;37587:141::-;37636:4;37659:3;37651:11;;37682:3;37679:1;37672:14;37716:4;37713:1;37703:18;37695:26;;37587:141;;;:::o;37758:845::-;37861:3;37898:5;37892:12;37927:36;37953:9;37927:36;:::i;:::-;37979:89;38061:6;38056:3;37979:89;:::i;:::-;37972:96;;38099:1;38088:9;38084:17;38115:1;38110:137;;;;38261:1;38256:341;;;;38077:520;;38110:137;38194:4;38190:9;38179;38175:25;38170:3;38163:38;38230:6;38225:3;38221:16;38214:23;;38110:137;;38256:341;38323:38;38355:5;38323:38;:::i;:::-;38383:1;38397:154;38411:6;38408:1;38405:13;38397:154;;;38485:7;38479:14;38475:1;38470:3;38466:11;38459:35;38535:1;38526:7;38522:15;38511:26;;38433:4;38430:1;38426:12;38421:17;;38397:154;;;38580:6;38575:3;38571:16;38564:23;;38263:334;;38077:520;;37865:738;;37758:845;;;;:::o;38609:589::-;38834:3;38856:95;38947:3;38938:6;38856:95;:::i;:::-;38849:102;;38968:95;39059:3;39050:6;38968:95;:::i;:::-;38961:102;;39080:92;39168:3;39159:6;39080:92;:::i;:::-;39073:99;;39189:3;39182:10;;38609:589;;;;;;:::o;39204:225::-;39344:34;39340:1;39332:6;39328:14;39321:58;39413:8;39408:2;39400:6;39396:15;39389:33;39204:225;:::o;39435:366::-;39577:3;39598:67;39662:2;39657:3;39598:67;:::i;:::-;39591:74;;39674:93;39763:3;39674:93;:::i;:::-;39792:2;39787:3;39783:12;39776:19;;39435:366;;;:::o;39807:419::-;39973:4;40011:2;40000:9;39996:18;39988:26;;40060:9;40054:4;40050:20;40046:1;40035:9;40031:17;40024:47;40088:131;40214:4;40088:131;:::i;:::-;40080:139;;39807:419;;;:::o;40232:237::-;40372:34;40368:1;40360:6;40356:14;40349:58;40441:20;40436:2;40428:6;40424:15;40417:45;40232:237;:::o;40475:366::-;40617:3;40638:67;40702:2;40697:3;40638:67;:::i;:::-;40631:74;;40714:93;40803:3;40714:93;:::i;:::-;40832:2;40827:3;40823:12;40816:19;;40475:366;;;:::o;40847:419::-;41013:4;41051:2;41040:9;41036:18;41028:26;;41100:9;41094:4;41090:20;41086:1;41075:9;41071:17;41064:47;41128:131;41254:4;41128:131;:::i;:::-;41120:139;;40847:419;;;:::o;41272:225::-;41412:34;41408:1;41400:6;41396:14;41389:58;41481:8;41476:2;41468:6;41464:15;41457:33;41272:225;:::o;41503:366::-;41645:3;41666:67;41730:2;41725:3;41666:67;:::i;:::-;41659:74;;41742:93;41831:3;41742:93;:::i;:::-;41860:2;41855:3;41851:12;41844:19;;41503:366;;;:::o;41875:419::-;42041:4;42079:2;42068:9;42064:18;42056:26;;42128:9;42122:4;42118:20;42114:1;42103:9;42099:17;42092:47;42156:131;42282:4;42156:131;:::i;:::-;42148:139;;41875:419;;;:::o;42300:224::-;42440:34;42436:1;42428:6;42424:14;42417:58;42509:7;42504:2;42496:6;42492:15;42485:32;42300:224;:::o;42530:366::-;42672:3;42693:67;42757:2;42752:3;42693:67;:::i;:::-;42686:74;;42769:93;42858:3;42769:93;:::i;:::-;42887:2;42882:3;42878:12;42871:19;;42530:366;;;:::o;42902:419::-;43068:4;43106:2;43095:9;43091:18;43083:26;;43155:9;43149:4;43145:20;43141:1;43130:9;43126:17;43119:47;43183:131;43309:4;43183:131;:::i;:::-;43175:139;;42902:419;;;:::o;43327:118::-;43364:7;43404:34;43397:5;43393:46;43382:57;;43327:118;;;:::o;43451:191::-;43491:4;43511:20;43529:1;43511:20;:::i;:::-;43506:25;;43545:20;43563:1;43545:20;:::i;:::-;43540:25;;43584:1;43581;43578:8;43575:34;;;43589:18;;:::i;:::-;43575:34;43634:1;43631;43627:9;43619:17;;43451:191;;;;:::o;43648:273::-;43688:3;43707:20;43725:1;43707:20;:::i;:::-;43702:25;;43741:20;43759:1;43741:20;:::i;:::-;43736:25;;43863:1;43827:34;43823:42;43820:1;43817:49;43814:75;;;43869:18;;:::i;:::-;43814:75;43913:1;43910;43906:9;43899:16;;43648:273;;;;:::o;43927:229::-;44067:34;44063:1;44055:6;44051:14;44044:58;44136:12;44131:2;44123:6;44119:15;44112:37;43927:229;:::o;44162:366::-;44304:3;44325:67;44389:2;44384:3;44325:67;:::i;:::-;44318:74;;44401:93;44490:3;44401:93;:::i;:::-;44519:2;44514:3;44510:12;44503:19;;44162:366;;;:::o;44534:419::-;44700:4;44738:2;44727:9;44723:18;44715:26;;44787:9;44781:4;44777:20;44773:1;44762:9;44758:17;44751:47;44815:131;44941:4;44815:131;:::i;:::-;44807:139;;44534:419;;;:::o;44959:171::-;44998:3;45021:24;45039:5;45021:24;:::i;:::-;45012:33;;45067:4;45060:5;45057:15;45054:41;;;45075:18;;:::i;:::-;45054:41;45122:1;45115:5;45111:13;45104:20;;44959:171;;;:::o;45136:234::-;45276:34;45272:1;45264:6;45260:14;45253:58;45345:17;45340:2;45332:6;45328:15;45321:42;45136:234;:::o;45376:366::-;45518:3;45539:67;45603:2;45598:3;45539:67;:::i;:::-;45532:74;;45615:93;45704:3;45615:93;:::i;:::-;45733:2;45728:3;45724:12;45717:19;;45376:366;;;:::o;45748:419::-;45914:4;45952:2;45941:9;45937:18;45929:26;;46001:9;45995:4;45991:20;45987:1;45976:9;45972:17;45965:47;46029:131;46155:4;46029:131;:::i;:::-;46021:139;;45748:419;;;:::o;46173:98::-;46224:6;46258:5;46252:12;46242:22;;46173:98;;;:::o;46277:168::-;46360:11;46394:6;46389:3;46382:19;46434:4;46429:3;46425:14;46410:29;;46277:168;;;;:::o;46451:360::-;46537:3;46565:38;46597:5;46565:38;:::i;:::-;46619:70;46682:6;46677:3;46619:70;:::i;:::-;46612:77;;46698:52;46743:6;46738:3;46731:4;46724:5;46720:16;46698:52;:::i;:::-;46775:29;46797:6;46775:29;:::i;:::-;46770:3;46766:39;46759:46;;46541:270;46451:360;;;;:::o;46817:640::-;47012:4;47050:3;47039:9;47035:19;47027:27;;47064:71;47132:1;47121:9;47117:17;47108:6;47064:71;:::i;:::-;47145:72;47213:2;47202:9;47198:18;47189:6;47145:72;:::i;:::-;47227;47295:2;47284:9;47280:18;47271:6;47227:72;:::i;:::-;47346:9;47340:4;47336:20;47331:2;47320:9;47316:18;47309:48;47374:76;47445:4;47436:6;47374:76;:::i;:::-;47366:84;;46817:640;;;;;;;:::o;47463:141::-;47519:5;47550:6;47544:13;47535:22;;47566:32;47592:5;47566:32;:::i;:::-;47463:141;;;;:::o;47610:349::-;47679:6;47728:2;47716:9;47707:7;47703:23;47699:32;47696:119;;;47734:79;;:::i;:::-;47696:119;47854:1;47879:63;47934:7;47925:6;47914:9;47910:22;47879:63;:::i;:::-;47869:73;;47825:127;47610:349;;;;:::o;47965:180::-;48013:77;48010:1;48003:88;48110:4;48107:1;48100:15;48134:4;48131:1;48124:15;48151:185;48191:1;48208:20;48226:1;48208:20;:::i;:::-;48203:25;;48242:20;48260:1;48242:20;:::i;:::-;48237:25;;48281:1;48271:35;;48286:18;;:::i;:::-;48271:35;48328:1;48325;48321:9;48316:14;;48151:185;;;;:::o;48342:176::-;48374:1;48391:20;48409:1;48391:20;:::i;:::-;48386:25;;48425:20;48443:1;48425:20;:::i;:::-;48420:25;;48464:1;48454:35;;48469:18;;:::i;:::-;48454:35;48510:1;48507;48503:9;48498:14;;48342:176;;;;:::o;48524:220::-;48664:34;48660:1;48652:6;48648:14;48641:58;48733:3;48728:2;48720:6;48716:15;48709:28;48524:220;:::o;48750:366::-;48892:3;48913:67;48977:2;48972:3;48913:67;:::i;:::-;48906:74;;48989:93;49078:3;48989:93;:::i;:::-;49107:2;49102:3;49098:12;49091:19;;48750:366;;;:::o;49122:419::-;49288:4;49326:2;49315:9;49311:18;49303:26;;49375:9;49369:4;49365:20;49361:1;49350:9;49346:17;49339:47;49403:131;49529:4;49403:131;:::i;:::-;49395:139;;49122:419;;;:::o;49547:179::-;49687:31;49683:1;49675:6;49671:14;49664:55;49547:179;:::o;49732:366::-;49874:3;49895:67;49959:2;49954:3;49895:67;:::i;:::-;49888:74;;49971:93;50060:3;49971:93;:::i;:::-;50089:2;50084:3;50080:12;50073:19;;49732:366;;;:::o;50104:419::-;50270:4;50308:2;50297:9;50293:18;50285:26;;50357:9;50351:4;50347:20;50343:1;50332:9;50328:17;50321:47;50385:131;50511:4;50385:131;:::i;:::-;50377:139;;50104:419;;;:::o;50529:221::-;50669:34;50665:1;50657:6;50653:14;50646:58;50738:4;50733:2;50725:6;50721:15;50714:29;50529:221;:::o;50756:366::-;50898:3;50919:67;50983:2;50978:3;50919:67;:::i;:::-;50912:74;;50995:93;51084:3;50995:93;:::i;:::-;51113:2;51108:3;51104:12;51097:19;;50756:366;;;:::o;51128:419::-;51294:4;51332:2;51321:9;51317:18;51309:26;;51381:9;51375:4;51371:20;51367:1;51356:9;51352:17;51345:47;51409:131;51535:4;51409:131;:::i;:::-;51401:139;;51128:419;;;:::o
Swarm Source
ipfs://66dc318325e1087e65ddb1e59d1afa7df3cbfd7b997eb574f53857a08c531d5d
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.