Overview
TokenID
1816
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
yabap
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-11-10 */ pragma solidity ^0.8.13; // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol) /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @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); } } // Creator: Chiru Labs /** * @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). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ abstract contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract yabap is ERC721A, Ownable { using Strings for uint256; uint256 public constant maxSupply = 2464; uint256 public mintPrice = 1 ether; uint256 public maxMintPerWallet = 5; string private _baseURIExtended = "ipfs://bafybeifqnz2njbjelmkfrwpnyxs5qxmvwxci4y27b7ij5ywmu3qtuezsnu/"; constructor() ERC721A("Yet Another Bored Ape Punks", "YABAP") { _safeMint(msg.sender, 164); } function contractURI() public pure returns (string memory) { string memory json = '{"name": "Yet Another Bored Ape Punks","description":"Inspired by CryptoPunks and BAYC, Yet Another Bored Ape Punks (YABAP) are 2464 collectible characters living on APECHAIN."}'; return string.concat("data:application/json;utf8,", json); } function setMintPrice(uint256 newMintPrice) external onlyOwner { mintPrice = newMintPrice; } function setMaxMintPerWallet(uint256 newMaxMintPerWallet) external onlyOwner { maxMintPerWallet = newMaxMintPerWallet; } function setBaseURI(string memory baseURI) external onlyOwner { _baseURIExtended = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIExtended; } function tokenURI(uint256 token) public view virtual override returns (string memory) { require(token >= 0 && token <= totalSupply(),"URI query for nonexistent token"); return string(abi.encodePacked(_baseURIExtended, token.toString(),".json")); } function withdraw() public onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(msg.sender), balance); } mapping(address => uint256) public minted; function mintApe(uint amount) external payable { require(msg.sender == tx.origin, "Wallet required"); require(minted[msg.sender] + amount <= maxMintPerWallet, "limit per wallet reached"); uint256 mintableAmount = amount; uint256 avail = maxSupply - totalSupply(); mintableAmount = Math.min(mintableAmount, avail); require(mintableAmount > 0, "Sold out!"); uint256 totalMintCost = mintableAmount * mintPrice; require(msg.value >= totalMintCost, "Not enough $APE sent; check price!"); minted[msg.sender] += mintableAmount; _safeMint(msg.sender, mintableAmount); uint256 change = msg.value - totalMintCost; if (change != 0) { Address.sendValue(payable(msg.sender), change); } } function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } }
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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintApe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","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":"token","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052670de0b6b3a764000060085560056009556040518060800160405280604381526020016152f160439139600a908161003c9190610969565b50348015610048575f80fd5b506040518060400160405280601b81526020017f59657420416e6f7468657220426f726564204170652050756e6b7300000000008152506040518060400160405280600581526020017f594142415000000000000000000000000000000000000000000000000000000081525081600190816100c49190610969565b5080600290816100d49190610969565b5050506100f36100e861010960201b60201c565b61011060201b60201c565b6101043360a46101d360201b60201c565b610d7e565b5f33905090565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6101f2828260405180602001604052805f8152506101f660201b60201c565b5050565b610209838383600161020e60201b60201c565b505050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027890610ab8565b60405180910390fd5b5f84036102c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ba90610b46565b60405180910390fd5b6102d55f86838761058460201b60201c565b8360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508460035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f5b8581101561056357818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561054e5761050e5f88848861058a60201b60201c565b61054d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054490610bd4565b60405180910390fd5b5b81806001019250508080600101915050610493565b50805f819055505061057d5f86838761071860201b60201c565b5050505050565b50505050565b5f6105b08473ffffffffffffffffffffffffffffffffffffffff1661071e60201b60201c565b1561070b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026105df61010960201b60201c565b8786866040518563ffffffff1660e01b81526004016106019493929190610cb0565b6020604051808303815f875af192505050801561063c57506040513d601f19601f820116820180604052508101906106399190610d53565b60015b6106bb573d805f811461066a576040519150601f19603f3d011682016040523d82523d5f602084013e61066f565b606091505b505f8151036106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa90610bd4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050610710565b600190505b949350505050565b50505050565b5f80823b90505f8111915050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806107aa57607f821691505b6020821081036107bd576107bc610766565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261081f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107e4565b61082986836107e4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61086d61086861086384610841565b61084a565b610841565b9050919050565b5f819050919050565b61088683610853565b61089a61089282610874565b8484546107f0565b825550505050565b5f90565b6108ae6108a2565b6108b981848461087d565b505050565b5b818110156108dc576108d15f826108a6565b6001810190506108bf565b5050565b601f821115610921576108f2816107c3565b6108fb846107d5565b8101602085101561090a578190505b61091e610916856107d5565b8301826108be565b50505b505050565b5f82821c905092915050565b5f6109415f1984600802610926565b1980831691505092915050565b5f6109598383610932565b9150826002028217905092915050565b6109728261072f565b67ffffffffffffffff81111561098b5761098a610739565b5b6109958254610793565b6109a08282856108e0565b5f60209050601f8311600181146109d1575f84156109bf578287015190505b6109c9858261094e565b865550610a30565b601f1984166109df866107c3565b5f5b82811015610a06578489015182556001820191506020850194506020810190506109e1565b86831015610a235784890151610a1f601f891682610932565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f610aa2602183610a38565b9150610aad82610a48565b604082019050919050565b5f6020820190508181035f830152610acf81610a96565b9050919050565b7f455243373231413a207175616e74697479206d757374206265206772656174655f8201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b5f610b30602883610a38565b9150610b3b82610ad6565b604082019050919050565b5f6020820190508181035f830152610b5d81610b24565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e20455243373231525f8201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b5f610bbe603383610a38565b9150610bc982610b64565b604082019050919050565b5f6020820190508181035f830152610beb81610bb2565b9050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610c1b82610bf2565b9050919050565b610c2b81610c11565b82525050565b610c3a81610841565b82525050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610c8282610c40565b610c8c8185610c4a565b9350610c9c818560208601610c5a565b610ca581610c68565b840191505092915050565b5f608082019050610cc35f830187610c22565b610cd06020830186610c22565b610cdd6040830185610c31565b8181036060830152610cef8184610c78565b905095945050505050565b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b610d3281610cfe565b8114610d3c575f80fd5b50565b5f81519050610d4d81610d29565b92915050565b5f60208284031215610d6857610d67610cfa565b5b5f610d7584828501610d3f565b91505092915050565b61456680610d8b5f395ff3fe6080604052600436106101cc575f3560e01c8063715018a6116100f6578063b228d92511610094578063e8a3d48511610063578063e8a3d48514610672578063e985e9c51461069c578063f2fde38b146106d8578063f4a0a52814610700576101cc565b8063b228d925146105ba578063b88d4fde146105e4578063c87b56dd1461060c578063d5abeb0114610648576101cc565b806395d89b41116100d057806395d89b4114610524578063a22cb4651461054e578063a723533e14610576578063afdf613414610592576101cc565b8063715018a6146104a85780638462151c146104be5780638da5cb5b146104fa576101cc565b80632f745c591161016e57806355f804b31161013d57806355f804b3146103de5780636352211e146104065780636817c76c1461044257806370a082311461046c576101cc565b80632f745c59146103285780633ccfd60b1461036457806342842e0e1461037a5780634f6ccce7146103a2576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461029a5780631e7269c5146102c457806323b872dd14610300576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f191906129b7565b610728565b60405161020391906129fc565b60405180910390f35b348015610217575f80fd5b50610220610871565b60405161022d9190612a85565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190612ad8565b610901565b6040516102699190612b42565b60405180910390f35b34801561027d575f80fd5b5061029860048036038101906102939190612b85565b610982565b005b3480156102a5575f80fd5b506102ae610a99565b6040516102bb9190612bd2565b60405180910390f35b3480156102cf575f80fd5b506102ea60048036038101906102e59190612beb565b610aa1565b6040516102f79190612bd2565b60405180910390f35b34801561030b575f80fd5b5061032660048036038101906103219190612c16565b610ab6565b005b348015610333575f80fd5b5061034e60048036038101906103499190612b85565b610ac6565b60405161035b9190612bd2565b60405180910390f35b34801561036f575f80fd5b50610378610ca9565b005b348015610385575f80fd5b506103a0600480360381019061039b9190612c16565b610d36565b005b3480156103ad575f80fd5b506103c860048036038101906103c39190612ad8565b610d55565b6040516103d59190612bd2565b60405180910390f35b3480156103e9575f80fd5b5061040460048036038101906103ff9190612d92565b610da7565b005b348015610411575f80fd5b5061042c60048036038101906104279190612ad8565b610e36565b6040516104399190612b42565b60405180910390f35b34801561044d575f80fd5b50610456610e4a565b6040516104639190612bd2565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d9190612beb565b610e50565b60405161049f9190612bd2565b60405180910390f35b3480156104b3575f80fd5b506104bc610f33565b005b3480156104c9575f80fd5b506104e460048036038101906104df9190612beb565b610fba565b6040516104f19190612e90565b60405180910390f35b348015610505575f80fd5b5061050e6110b8565b60405161051b9190612b42565b60405180910390f35b34801561052f575f80fd5b506105386110e0565b6040516105459190612a85565b60405180910390f35b348015610559575f80fd5b50610574600480360381019061056f9190612eda565b611170565b005b610590600480360381019061058b9190612ad8565b6112eb565b005b34801561059d575f80fd5b506105b860048036038101906105b39190612ad8565b611529565b005b3480156105c5575f80fd5b506105ce6115af565b6040516105db9190612bd2565b60405180910390f35b3480156105ef575f80fd5b5061060a60048036038101906106059190612fb6565b6115b5565b005b348015610617575f80fd5b50610632600480360381019061062d9190612ad8565b611611565b60405161063f9190612a85565b60405180910390f35b348015610653575f80fd5b5061065c61169b565b6040516106699190612bd2565b60405180910390f35b34801561067d575f80fd5b506106866116a1565b6040516106939190612a85565b60405180910390f35b3480156106a7575f80fd5b506106c260048036038101906106bd9190613036565b6116e5565b6040516106cf91906129fc565b60405180910390f35b3480156106e3575f80fd5b506106fe60048036038101906106f99190612beb565b611773565b005b34801561070b575f80fd5b5061072660048036038101906107219190612ad8565b611869565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086a5750610869826118ef565b5b9050919050565b606060018054610880906130a1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac906130a1565b80156108f75780601f106108ce576101008083540402835291602001916108f7565b820191905f5260205f20905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b5f61090b82611958565b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613141565b60405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61098c82610e36565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f3906131cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1b611964565b73ffffffffffffffffffffffffffffffffffffffff161480610a4a5750610a4981610a44611964565b6116e5565b5b610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a809061325d565b60405180910390fd5b610a9483838361196b565b505050565b5f8054905090565b600b602052805f5260405f205f915090505481565b610ac1838383611a1a565b505050565b5f610ad083610e50565b8210610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b08906132eb565b60405180910390fd5b5f610b1a610a99565b90505f805f5b83811015610c67575f60035f8381526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614610c0957805f015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5957868403610c50578195505050505050610ca3565b83806001019450505b508080600101915050610b20565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613379565b60405180910390fd5b92915050565b610cb1611964565b73ffffffffffffffffffffffffffffffffffffffff16610ccf6110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906133e1565b60405180910390fd5b5f479050610d333382611f33565b50565b610d5083838360405180602001604052805f8152506115b5565b505050565b5f610d5e610a99565b8210610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d969061346f565b60405180910390fd5b819050919050565b610daf611964565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906133e1565b60405180910390fd5b80600a9081610e32919061362a565b5050565b5f610e4082612023565b5f01519050919050565b60085481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690613769565b60405180910390fd5b60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f3b611964565b73ffffffffffffffffffffffffffffffffffffffff16610f596110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa6906133e1565b60405180910390fd5b610fb85f6121b3565b565b60605f610fc683610e50565b90505f8103611020575f67ffffffffffffffff811115610fe957610fe8612c6e565b5b6040519080825280602002602001820160405280156110175781602001602082028036833780820191505090505b509150506110b3565b5f8167ffffffffffffffff81111561103b5761103a612c6e565b5b6040519080825280602002602001820160405280156110695781602001602082028036833780820191505090505b5090505f5b828110156110ac576110808582610ac6565b82828151811061109357611092613787565b5b602002602001018181525050808060010191505061106e565b8193505050505b919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110ef906130a1565b80601f016020809104026020016040519081016040528092919081815260200182805461111b906130a1565b80156111665780601f1061113d57610100808354040283529160200191611166565b820191905f5260205f20905b81548152906001019060200180831161114957829003601f168201915b5050505050905090565b611178611964565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906137fe565b60405180910390fd5b8060065f6111f1611964565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661129a611964565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112df91906129fc565b60405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613866565b60405180910390fd5b60095481600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113a591906138b1565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061392e565b60405180910390fd5b5f8190505f6113f3610a99565b6109a0611400919061394c565b905061140c8282612276565b91505f8211611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906139c9565b60405180910390fd5b5f6008548361145f91906139e7565b9050803410156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a98565b60405180910390fd5b82600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546114f091906138b1565b92505081905550611501338461228e565b5f813461150e919061394c565b90505f8114611522576115213382611f33565b5b5050505050565b611531611964565b73ffffffffffffffffffffffffffffffffffffffff1661154f6110b8565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c906133e1565b60405180910390fd5b8060098190555050565b60095481565b6115c0848484611a1a565b6115cc848484846122ab565b61160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613b26565b60405180910390fd5b50505050565b60605f821015801561162a5750611626610a99565b8211155b611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613b8e565b60405180910390fd5b600a6116748361242d565b604051602001611685929190613cb0565b6040516020818303038152906040529050919050565b6109a081565b60605f6040518060e0016040528060b1815260200161448060b191399050806040516020016116d09190613d04565b60405160208183030381529060405291505090565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61177b611964565b73ffffffffffffffffffffffffffffffffffffffff166117996110b8565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e6906133e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613d99565b60405180910390fd5b611866816121b3565b50565b611871611964565b73ffffffffffffffffffffffffffffffffffffffff1661188f6110b8565b73ffffffffffffffffffffffffffffffffffffffff16146118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc906133e1565b60405180910390fd5b8060088190555050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f805482109050919050565b5f33905090565b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f611a2482612023565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff16611a49611964565b73ffffffffffffffffffffffffffffffffffffffff161480611aa55750611a6e611964565b73ffffffffffffffffffffffffffffffffffffffff16611a8d84610901565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ac05750611abf825f0151611aba611964565b6116e5565b5b905080611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990613e27565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613eb5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613f43565b60405180910390fd5b611bee8585856001612586565b611bfc5f84845f015161196b565b600160045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550600160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508360035f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660035f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ec357611e2a81611958565b15611ec257825f015160035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2c858585600161258c565b5050505050565b80471015611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90613fab565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611f9b90613ff6565b5f6040518083038185875af1925050503d805f8114611fd5576040519150601f19603f3d011682016040523d82523d5f602084013e611fda565b606091505b505090508061201e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120159061407a565b60405180910390fd5b505050565b61202b612919565b61203482611958565b612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90614108565b60405180910390fd5b5f8290505b5f8110612172575f60035f8381526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16146121635780925050506121ae565b50808060019003915050612078565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590614196565b60405180910390fd5b919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183106122845781612286565b825b905092915050565b6122a7828260405180602001604052805f815250612592565b5050565b5f6122cb8473ffffffffffffffffffffffffffffffffffffffff166125a4565b15612420578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122f4611964565b8786866040518563ffffffff1660e01b81526004016123169493929190614206565b6020604051808303815f875af192505050801561235157506040513d601f19601f8201168201806040525081019061234e9190614264565b60015b6123d0573d805f811461237f576040519150601f19603f3d011682016040523d82523d5f602084013e612384565b606091505b505f8151036123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90613b26565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612425565b600190505b949350505050565b60605f8203612473576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612581565b5f8290505f5b5f82146124a257808061248b9061428f565b915050600a8261249b9190614303565b9150612479565b5f8167ffffffffffffffff8111156124bd576124bc612c6e565b5b6040519080825280601f01601f1916602001820160405280156124ef5781602001600182028036833780820191505090505b5090505b5f851461257a57600182612507919061394c565b9150600a856125169190614333565b603061252291906138b1565b60f81b81838151811061253857612537613787565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856125739190614303565b94506124f3565b8093505050505b919050565b50505050565b50505050565b61259f83838360016125b5565b505050565b5f80823b90505f8111915050919050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f906143d3565b60405180910390fd5b5f840361266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614461565b60405180910390fd5b6126765f868387612586565b8360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508460035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f5b858110156128fe57818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156128e9576128a95f8884886122ab565b6128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df90613b26565b60405180910390fd5b5b81806001019250508080600101915050612834565b50805f81905550506129125f86838761258c565b5050505050565b60405180604001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61299681612962565b81146129a0575f80fd5b50565b5f813590506129b18161298d565b92915050565b5f602082840312156129cc576129cb61295a565b5b5f6129d9848285016129a3565b91505092915050565b5f8115159050919050565b6129f6816129e2565b82525050565b5f602082019050612a0f5f8301846129ed565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612a5782612a15565b612a618185612a1f565b9350612a71818560208601612a2f565b612a7a81612a3d565b840191505092915050565b5f6020820190508181035f830152612a9d8184612a4d565b905092915050565b5f819050919050565b612ab781612aa5565b8114612ac1575f80fd5b50565b5f81359050612ad281612aae565b92915050565b5f60208284031215612aed57612aec61295a565b5b5f612afa84828501612ac4565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b2c82612b03565b9050919050565b612b3c81612b22565b82525050565b5f602082019050612b555f830184612b33565b92915050565b612b6481612b22565b8114612b6e575f80fd5b50565b5f81359050612b7f81612b5b565b92915050565b5f8060408385031215612b9b57612b9a61295a565b5b5f612ba885828601612b71565b9250506020612bb985828601612ac4565b9150509250929050565b612bcc81612aa5565b82525050565b5f602082019050612be55f830184612bc3565b92915050565b5f60208284031215612c0057612bff61295a565b5b5f612c0d84828501612b71565b91505092915050565b5f805f60608486031215612c2d57612c2c61295a565b5b5f612c3a86828701612b71565b9350506020612c4b86828701612b71565b9250506040612c5c86828701612ac4565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612ca482612a3d565b810181811067ffffffffffffffff82111715612cc357612cc2612c6e565b5b80604052505050565b5f612cd5612951565b9050612ce18282612c9b565b919050565b5f67ffffffffffffffff821115612d0057612cff612c6e565b5b612d0982612a3d565b9050602081019050919050565b828183375f83830152505050565b5f612d36612d3184612ce6565b612ccc565b905082815260208101848484011115612d5257612d51612c6a565b5b612d5d848285612d16565b509392505050565b5f82601f830112612d7957612d78612c66565b5b8135612d89848260208601612d24565b91505092915050565b5f60208284031215612da757612da661295a565b5b5f82013567ffffffffffffffff811115612dc457612dc361295e565b5b612dd084828501612d65565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612e0b81612aa5565b82525050565b5f612e1c8383612e02565b60208301905092915050565b5f602082019050919050565b5f612e3e82612dd9565b612e488185612de3565b9350612e5383612df3565b805f5b83811015612e83578151612e6a8882612e11565b9750612e7583612e28565b925050600181019050612e56565b5085935050505092915050565b5f6020820190508181035f830152612ea88184612e34565b905092915050565b612eb9816129e2565b8114612ec3575f80fd5b50565b5f81359050612ed481612eb0565b92915050565b5f8060408385031215612ef057612eef61295a565b5b5f612efd85828601612b71565b9250506020612f0e85828601612ec6565b9150509250929050565b5f67ffffffffffffffff821115612f3257612f31612c6e565b5b612f3b82612a3d565b9050602081019050919050565b5f612f5a612f5584612f18565b612ccc565b905082815260208101848484011115612f7657612f75612c6a565b5b612f81848285612d16565b509392505050565b5f82601f830112612f9d57612f9c612c66565b5b8135612fad848260208601612f48565b91505092915050565b5f805f8060808587031215612fce57612fcd61295a565b5b5f612fdb87828801612b71565b9450506020612fec87828801612b71565b9350506040612ffd87828801612ac4565b925050606085013567ffffffffffffffff81111561301e5761301d61295e565b5b61302a87828801612f89565b91505092959194509250565b5f806040838503121561304c5761304b61295a565b5b5f61305985828601612b71565b925050602061306a85828601612b71565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806130b857607f821691505b6020821081036130cb576130ca613074565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e655f8201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b5f61312b602d83612a1f565b9150613136826130d1565b604082019050919050565b5f6020820190508181035f8301526131588161311f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e5f8201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b5f6131b9602283612a1f565b91506131c48261315f565b604082019050919050565b5f6020820190508181035f8301526131e6816131ad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f5f8201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b5f613247603983612a1f565b9150613252826131ed565b604082019050919050565b5f6020820190508181035f8301526132748161323b565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e5f8201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132d5602283612a1f565b91506132e08261327b565b604082019050919050565b5f6020820190508181035f830152613302816132c9565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f66205f8201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b5f613363602e83612a1f565b915061336e82613309565b604082019050919050565b5f6020820190508181035f83015261339081613357565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6133cb602083612a1f565b91506133d682613397565b602082019050919050565b5f6020820190508181035f8301526133f8816133bf565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f755f8201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b5f613459602383612a1f565b9150613464826133ff565b604082019050919050565b5f6020820190508181035f8301526134868161344d565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026134e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ae565b6134f386836134ae565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61352e61352961352484612aa5565b61350b565b612aa5565b9050919050565b5f819050919050565b61354783613514565b61355b61355382613535565b8484546134ba565b825550505050565b5f90565b61356f613563565b61357a81848461353e565b505050565b5b8181101561359d576135925f82613567565b600181019050613580565b5050565b601f8211156135e2576135b38161348d565b6135bc8461349f565b810160208510156135cb578190505b6135df6135d78561349f565b83018261357f565b50505b505050565b5f82821c905092915050565b5f6136025f19846008026135e7565b1980831691505092915050565b5f61361a83836135f3565b9150826002028217905092915050565b61363382612a15565b67ffffffffffffffff81111561364c5761364b612c6e565b5b61365682546130a1565b6136618282856135a1565b5f60209050601f831160018114613692575f8415613680578287015190505b61368a858261360f565b8655506136f1565b601f1984166136a08661348d565b5f5b828110156136c7578489015182556001820191506020850194506020810190506136a2565b868310156136e457848901516136e0601f8916826135f3565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f613753602b83612a1f565b915061375e826136f9565b604082019050919050565b5f6020820190508181035f83015261378081613747565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f455243373231413a20617070726f766520746f2063616c6c65720000000000005f82015250565b5f6137e8601a83612a1f565b91506137f3826137b4565b602082019050919050565b5f6020820190508181035f830152613815816137dc565b9050919050565b7f57616c6c657420726571756972656400000000000000000000000000000000005f82015250565b5f613850600f83612a1f565b915061385b8261381c565b602082019050919050565b5f6020820190508181035f83015261387d81613844565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138bb82612aa5565b91506138c683612aa5565b92508282019050808211156138de576138dd613884565b5b92915050565b7f6c696d6974207065722077616c6c6574207265616368656400000000000000005f82015250565b5f613918601883612a1f565b9150613923826138e4565b602082019050919050565b5f6020820190508181035f8301526139458161390c565b9050919050565b5f61395682612aa5565b915061396183612aa5565b925082820390508181111561397957613978613884565b5b92915050565b7f536f6c64206f75742100000000000000000000000000000000000000000000005f82015250565b5f6139b3600983612a1f565b91506139be8261397f565b602082019050919050565b5f6020820190508181035f8301526139e0816139a7565b9050919050565b5f6139f182612aa5565b91506139fc83612aa5565b9250828202613a0a81612aa5565b91508282048414831517613a2157613a20613884565b5b5092915050565b7f4e6f7420656e6f75676820244150452073656e743b20636865636b20707269635f8201527f6521000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a82602283612a1f565b9150613a8d82613a28565b604082019050919050565b5f6020820190508181035f830152613aaf81613a76565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e20455243373231525f8201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b5f613b10603383612a1f565b9150613b1b82613ab6565b604082019050919050565b5f6020820190508181035f830152613b3d81613b04565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f613b78601f83612a1f565b9150613b8382613b44565b602082019050919050565b5f6020820190508181035f830152613ba581613b6c565b9050919050565b5f81905092915050565b5f8154613bc2816130a1565b613bcc8186613bac565b9450600182165f8114613be65760018114613bfb57613c2d565b60ff1983168652811515820286019350613c2d565b613c048561348d565b5f5b83811015613c2557815481890152600182019150602081019050613c06565b838801955050505b50505092915050565b5f613c4082612a15565b613c4a8185613bac565b9350613c5a818560208601612a2f565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613c9a600583613bac565b9150613ca582613c66565b600582019050919050565b5f613cbb8285613bb6565b9150613cc78284613c36565b9150613cd282613c8e565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613d0e82613cde565b601b82019150613d1e8284613c36565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613d83602683612a1f565b9150613d8e82613d29565b604082019050919050565b5f6020820190508181035f830152613db081613d77565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f74205f8201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b5f613e11603283612a1f565b9150613e1c82613db7565b604082019050919050565b5f6020820190508181035f830152613e3e81613e05565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f72726563745f8201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b5f613e9f602683612a1f565b9150613eaa82613e45565b604082019050919050565b5f6020820190508181035f830152613ecc81613e93565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613f2d602583612a1f565b9150613f3882613ed3565b604082019050919050565b5f6020820190508181035f830152613f5a81613f21565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f613f95601d83612a1f565b9150613fa082613f61565b602082019050919050565b5f6020820190508181035f830152613fc281613f89565b9050919050565b5f81905092915050565b50565b5f613fe15f83613fc9565b9150613fec82613fd3565b5f82019050919050565b5f61400082613fd6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f614064603a83612a1f565b915061406f8261400a565b604082019050919050565b5f6020820190508181035f83015261409181614058565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e657869735f8201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b5f6140f2602a83612a1f565b91506140fd82614098565b604082019050919050565b5f6020820190508181035f83015261411f816140e6565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e65207468655f8201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b5f614180602f83612a1f565b915061418b82614126565b604082019050919050565b5f6020820190508181035f8301526141ad81614174565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6141d8826141b4565b6141e281856141be565b93506141f2818560208601612a2f565b6141fb81612a3d565b840191505092915050565b5f6080820190506142195f830187612b33565b6142266020830186612b33565b6142336040830185612bc3565b818103606083015261424581846141ce565b905095945050505050565b5f8151905061425e8161298d565b92915050565b5f602082840312156142795761427861295a565b5b5f61428684828501614250565b91505092915050565b5f61429982612aa5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142cb576142ca613884565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61430d82612aa5565b915061431883612aa5565b925082614328576143276142d6565b5b828204905092915050565b5f61433d82612aa5565b915061434883612aa5565b925082614358576143576142d6565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6143bd602183612a1f565b91506143c882614363565b604082019050919050565b5f6020820190508181035f8301526143ea816143b1565b9050919050565b7f455243373231413a207175616e74697479206d757374206265206772656174655f8201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b5f61444b602883612a1f565b9150614456826143f1565b604082019050919050565b5f6020820190508181035f8301526144788161443f565b905091905056fe7b226e616d65223a202259657420416e6f7468657220426f726564204170652050756e6b73222c226465736372697074696f6e223a22496e7370697265642062792043727970746f50756e6b7320616e6420424159432c2059657420416e6f7468657220426f726564204170652050756e6b73202859414241502920617265203234363420636f6c6c65637469626c652063686172616374657273206c6976696e67206f6e20415045434841494e2e227da264697066735822122063c1f793254c59256d42c94daf81f7d43f304ce0716159618c7cbf6cde1fe01464736f6c634300081a0033697066733a2f2f6261667962656966716e7a326e6a626a656c6d6b667277706e7978733571786d7677786369347932376237696a3579776d7533717475657a736e752f
Deployed Bytecode
0x6080604052600436106101cc575f3560e01c8063715018a6116100f6578063b228d92511610094578063e8a3d48511610063578063e8a3d48514610672578063e985e9c51461069c578063f2fde38b146106d8578063f4a0a52814610700576101cc565b8063b228d925146105ba578063b88d4fde146105e4578063c87b56dd1461060c578063d5abeb0114610648576101cc565b806395d89b41116100d057806395d89b4114610524578063a22cb4651461054e578063a723533e14610576578063afdf613414610592576101cc565b8063715018a6146104a85780638462151c146104be5780638da5cb5b146104fa576101cc565b80632f745c591161016e57806355f804b31161013d57806355f804b3146103de5780636352211e146104065780636817c76c1461044257806370a082311461046c576101cc565b80632f745c59146103285780633ccfd60b1461036457806342842e0e1461037a5780634f6ccce7146103a2576101cc565b8063095ea7b3116101aa578063095ea7b31461027257806318160ddd1461029a5780631e7269c5146102c457806323b872dd14610300576101cc565b806301ffc9a7146101d057806306fdde031461020c578063081812fc14610236575b5f80fd5b3480156101db575f80fd5b506101f660048036038101906101f191906129b7565b610728565b60405161020391906129fc565b60405180910390f35b348015610217575f80fd5b50610220610871565b60405161022d9190612a85565b60405180910390f35b348015610241575f80fd5b5061025c60048036038101906102579190612ad8565b610901565b6040516102699190612b42565b60405180910390f35b34801561027d575f80fd5b5061029860048036038101906102939190612b85565b610982565b005b3480156102a5575f80fd5b506102ae610a99565b6040516102bb9190612bd2565b60405180910390f35b3480156102cf575f80fd5b506102ea60048036038101906102e59190612beb565b610aa1565b6040516102f79190612bd2565b60405180910390f35b34801561030b575f80fd5b5061032660048036038101906103219190612c16565b610ab6565b005b348015610333575f80fd5b5061034e60048036038101906103499190612b85565b610ac6565b60405161035b9190612bd2565b60405180910390f35b34801561036f575f80fd5b50610378610ca9565b005b348015610385575f80fd5b506103a0600480360381019061039b9190612c16565b610d36565b005b3480156103ad575f80fd5b506103c860048036038101906103c39190612ad8565b610d55565b6040516103d59190612bd2565b60405180910390f35b3480156103e9575f80fd5b5061040460048036038101906103ff9190612d92565b610da7565b005b348015610411575f80fd5b5061042c60048036038101906104279190612ad8565b610e36565b6040516104399190612b42565b60405180910390f35b34801561044d575f80fd5b50610456610e4a565b6040516104639190612bd2565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d9190612beb565b610e50565b60405161049f9190612bd2565b60405180910390f35b3480156104b3575f80fd5b506104bc610f33565b005b3480156104c9575f80fd5b506104e460048036038101906104df9190612beb565b610fba565b6040516104f19190612e90565b60405180910390f35b348015610505575f80fd5b5061050e6110b8565b60405161051b9190612b42565b60405180910390f35b34801561052f575f80fd5b506105386110e0565b6040516105459190612a85565b60405180910390f35b348015610559575f80fd5b50610574600480360381019061056f9190612eda565b611170565b005b610590600480360381019061058b9190612ad8565b6112eb565b005b34801561059d575f80fd5b506105b860048036038101906105b39190612ad8565b611529565b005b3480156105c5575f80fd5b506105ce6115af565b6040516105db9190612bd2565b60405180910390f35b3480156105ef575f80fd5b5061060a60048036038101906106059190612fb6565b6115b5565b005b348015610617575f80fd5b50610632600480360381019061062d9190612ad8565b611611565b60405161063f9190612a85565b60405180910390f35b348015610653575f80fd5b5061065c61169b565b6040516106699190612bd2565b60405180910390f35b34801561067d575f80fd5b506106866116a1565b6040516106939190612a85565b60405180910390f35b3480156106a7575f80fd5b506106c260048036038101906106bd9190613036565b6116e5565b6040516106cf91906129fc565b60405180910390f35b3480156106e3575f80fd5b506106fe60048036038101906106f99190612beb565b611773565b005b34801561070b575f80fd5b5061072660048036038101906107219190612ad8565b611869565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086a5750610869826118ef565b5b9050919050565b606060018054610880906130a1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac906130a1565b80156108f75780601f106108ce576101008083540402835291602001916108f7565b820191905f5260205f20905b8154815290600101906020018083116108da57829003601f168201915b5050505050905090565b5f61090b82611958565b61094a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094190613141565b60405180910390fd5b60055f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61098c82610e36565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f3906131cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1b611964565b73ffffffffffffffffffffffffffffffffffffffff161480610a4a5750610a4981610a44611964565b6116e5565b5b610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a809061325d565b60405180910390fd5b610a9483838361196b565b505050565b5f8054905090565b600b602052805f5260405f205f915090505481565b610ac1838383611a1a565b505050565b5f610ad083610e50565b8210610b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b08906132eb565b60405180910390fd5b5f610b1a610a99565b90505f805f5b83811015610c67575f60035f8381526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1614610c0957805f015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5957868403610c50578195505050505050610ca3565b83806001019450505b508080600101915050610b20565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613379565b60405180910390fd5b92915050565b610cb1611964565b73ffffffffffffffffffffffffffffffffffffffff16610ccf6110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906133e1565b60405180910390fd5b5f479050610d333382611f33565b50565b610d5083838360405180602001604052805f8152506115b5565b505050565b5f610d5e610a99565b8210610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d969061346f565b60405180910390fd5b819050919050565b610daf611964565b73ffffffffffffffffffffffffffffffffffffffff16610dcd6110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a906133e1565b60405180910390fd5b80600a9081610e32919061362a565b5050565b5f610e4082612023565b5f01519050919050565b60085481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690613769565b60405180910390fd5b60045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f3b611964565b73ffffffffffffffffffffffffffffffffffffffff16610f596110b8565b73ffffffffffffffffffffffffffffffffffffffff1614610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa6906133e1565b60405180910390fd5b610fb85f6121b3565b565b60605f610fc683610e50565b90505f8103611020575f67ffffffffffffffff811115610fe957610fe8612c6e565b5b6040519080825280602002602001820160405280156110175781602001602082028036833780820191505090505b509150506110b3565b5f8167ffffffffffffffff81111561103b5761103a612c6e565b5b6040519080825280602002602001820160405280156110695781602001602082028036833780820191505090505b5090505f5b828110156110ac576110808582610ac6565b82828151811061109357611092613787565b5b602002602001018181525050808060010191505061106e565b8193505050505b919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110ef906130a1565b80601f016020809104026020016040519081016040528092919081815260200182805461111b906130a1565b80156111665780601f1061113d57610100808354040283529160200191611166565b820191905f5260205f20905b81548152906001019060200180831161114957829003601f168201915b5050505050905090565b611178611964565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc906137fe565b60405180910390fd5b8060065f6111f1611964565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661129a611964565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112df91906129fc565b60405180910390a35050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135090613866565b60405180910390fd5b60095481600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113a591906138b1565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd9061392e565b60405180910390fd5b5f8190505f6113f3610a99565b6109a0611400919061394c565b905061140c8282612276565b91505f8211611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906139c9565b60405180910390fd5b5f6008548361145f91906139e7565b9050803410156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613a98565b60405180910390fd5b82600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546114f091906138b1565b92505081905550611501338461228e565b5f813461150e919061394c565b90505f8114611522576115213382611f33565b5b5050505050565b611531611964565b73ffffffffffffffffffffffffffffffffffffffff1661154f6110b8565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c906133e1565b60405180910390fd5b8060098190555050565b60095481565b6115c0848484611a1a565b6115cc848484846122ab565b61160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613b26565b60405180910390fd5b50505050565b60605f821015801561162a5750611626610a99565b8211155b611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613b8e565b60405180910390fd5b600a6116748361242d565b604051602001611685929190613cb0565b6040516020818303038152906040529050919050565b6109a081565b60605f6040518060e0016040528060b1815260200161448060b191399050806040516020016116d09190613d04565b60405160208183030381529060405291505090565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61177b611964565b73ffffffffffffffffffffffffffffffffffffffff166117996110b8565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e6906133e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613d99565b60405180910390fd5b611866816121b3565b50565b611871611964565b73ffffffffffffffffffffffffffffffffffffffff1661188f6110b8565b73ffffffffffffffffffffffffffffffffffffffff16146118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc906133e1565b60405180910390fd5b8060088190555050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f805482109050919050565b5f33905090565b8260055f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f611a2482612023565b90505f815f015173ffffffffffffffffffffffffffffffffffffffff16611a49611964565b73ffffffffffffffffffffffffffffffffffffffff161480611aa55750611a6e611964565b73ffffffffffffffffffffffffffffffffffffffff16611a8d84610901565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ac05750611abf825f0151611aba611964565b6116e5565b5b905080611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af990613e27565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff1614611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a90613eb5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613f43565b60405180910390fd5b611bee8585856001612586565b611bfc5f84845f015161196b565b600160045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550600160045f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508360035f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8581526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f6001840190505f73ffffffffffffffffffffffffffffffffffffffff1660035f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ec357611e2a81611958565b15611ec257825f015160035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826020015160035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2c858585600161258c565b5050505050565b80471015611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90613fab565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611f9b90613ff6565b5f6040518083038185875af1925050503d805f8114611fd5576040519150601f19603f3d011682016040523d82523d5f602084013e611fda565b606091505b505090508061201e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120159061407a565b60405180910390fd5b505050565b61202b612919565b61203482611958565b612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90614108565b60405180910390fd5b5f8290505b5f8110612172575f60035f8381526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16146121635780925050506121ae565b50808060019003915050612078565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590614196565b60405180910390fd5b919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183106122845781612286565b825b905092915050565b6122a7828260405180602001604052805f815250612592565b5050565b5f6122cb8473ffffffffffffffffffffffffffffffffffffffff166125a4565b15612420578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122f4611964565b8786866040518563ffffffff1660e01b81526004016123169493929190614206565b6020604051808303815f875af192505050801561235157506040513d601f19601f8201168201806040525081019061234e9190614264565b60015b6123d0573d805f811461237f576040519150601f19603f3d011682016040523d82523d5f602084013e612384565b606091505b505f8151036123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90613b26565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612425565b600190505b949350505050565b60605f8203612473576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612581565b5f8290505f5b5f82146124a257808061248b9061428f565b915050600a8261249b9190614303565b9150612479565b5f8167ffffffffffffffff8111156124bd576124bc612c6e565b5b6040519080825280601f01601f1916602001820160405280156124ef5781602001600182028036833780820191505090505b5090505b5f851461257a57600182612507919061394c565b9150600a856125169190614333565b603061252291906138b1565b60f81b81838151811061253857612537613787565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600a856125739190614303565b94506124f3565b8093505050505b919050565b50505050565b50505050565b61259f83838360016125b5565b505050565b5f80823b90505f8111915050919050565b5f805490505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f906143d3565b60405180910390fd5b5f840361266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614461565b60405180910390fd5b6126765f868387612586565b8360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f015f8282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508360045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508460035f8381526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260035f8381526020019081526020015f205f0160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8190505f5b858110156128fe57818773ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156128e9576128a95f8884886122ab565b6128e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128df90613b26565b60405180910390fd5b5b81806001019250508080600101915050612834565b50805f81905550506129125f86838761258c565b5050505050565b60405180604001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61299681612962565b81146129a0575f80fd5b50565b5f813590506129b18161298d565b92915050565b5f602082840312156129cc576129cb61295a565b5b5f6129d9848285016129a3565b91505092915050565b5f8115159050919050565b6129f6816129e2565b82525050565b5f602082019050612a0f5f8301846129ed565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612a5782612a15565b612a618185612a1f565b9350612a71818560208601612a2f565b612a7a81612a3d565b840191505092915050565b5f6020820190508181035f830152612a9d8184612a4d565b905092915050565b5f819050919050565b612ab781612aa5565b8114612ac1575f80fd5b50565b5f81359050612ad281612aae565b92915050565b5f60208284031215612aed57612aec61295a565b5b5f612afa84828501612ac4565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b2c82612b03565b9050919050565b612b3c81612b22565b82525050565b5f602082019050612b555f830184612b33565b92915050565b612b6481612b22565b8114612b6e575f80fd5b50565b5f81359050612b7f81612b5b565b92915050565b5f8060408385031215612b9b57612b9a61295a565b5b5f612ba885828601612b71565b9250506020612bb985828601612ac4565b9150509250929050565b612bcc81612aa5565b82525050565b5f602082019050612be55f830184612bc3565b92915050565b5f60208284031215612c0057612bff61295a565b5b5f612c0d84828501612b71565b91505092915050565b5f805f60608486031215612c2d57612c2c61295a565b5b5f612c3a86828701612b71565b9350506020612c4b86828701612b71565b9250506040612c5c86828701612ac4565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612ca482612a3d565b810181811067ffffffffffffffff82111715612cc357612cc2612c6e565b5b80604052505050565b5f612cd5612951565b9050612ce18282612c9b565b919050565b5f67ffffffffffffffff821115612d0057612cff612c6e565b5b612d0982612a3d565b9050602081019050919050565b828183375f83830152505050565b5f612d36612d3184612ce6565b612ccc565b905082815260208101848484011115612d5257612d51612c6a565b5b612d5d848285612d16565b509392505050565b5f82601f830112612d7957612d78612c66565b5b8135612d89848260208601612d24565b91505092915050565b5f60208284031215612da757612da661295a565b5b5f82013567ffffffffffffffff811115612dc457612dc361295e565b5b612dd084828501612d65565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612e0b81612aa5565b82525050565b5f612e1c8383612e02565b60208301905092915050565b5f602082019050919050565b5f612e3e82612dd9565b612e488185612de3565b9350612e5383612df3565b805f5b83811015612e83578151612e6a8882612e11565b9750612e7583612e28565b925050600181019050612e56565b5085935050505092915050565b5f6020820190508181035f830152612ea88184612e34565b905092915050565b612eb9816129e2565b8114612ec3575f80fd5b50565b5f81359050612ed481612eb0565b92915050565b5f8060408385031215612ef057612eef61295a565b5b5f612efd85828601612b71565b9250506020612f0e85828601612ec6565b9150509250929050565b5f67ffffffffffffffff821115612f3257612f31612c6e565b5b612f3b82612a3d565b9050602081019050919050565b5f612f5a612f5584612f18565b612ccc565b905082815260208101848484011115612f7657612f75612c6a565b5b612f81848285612d16565b509392505050565b5f82601f830112612f9d57612f9c612c66565b5b8135612fad848260208601612f48565b91505092915050565b5f805f8060808587031215612fce57612fcd61295a565b5b5f612fdb87828801612b71565b9450506020612fec87828801612b71565b9350506040612ffd87828801612ac4565b925050606085013567ffffffffffffffff81111561301e5761301d61295e565b5b61302a87828801612f89565b91505092959194509250565b5f806040838503121561304c5761304b61295a565b5b5f61305985828601612b71565b925050602061306a85828601612b71565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806130b857607f821691505b6020821081036130cb576130ca613074565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e655f8201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b5f61312b602d83612a1f565b9150613136826130d1565b604082019050919050565b5f6020820190508181035f8301526131588161311f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e5f8201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b5f6131b9602283612a1f565b91506131c48261315f565b604082019050919050565b5f6020820190508181035f8301526131e6816131ad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f5f8201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b5f613247603983612a1f565b9150613252826131ed565b604082019050919050565b5f6020820190508181035f8301526132748161323b565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e5f8201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132d5602283612a1f565b91506132e08261327b565b604082019050919050565b5f6020820190508181035f830152613302816132c9565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f66205f8201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b5f613363602e83612a1f565b915061336e82613309565b604082019050919050565b5f6020820190508181035f83015261339081613357565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6133cb602083612a1f565b91506133d682613397565b602082019050919050565b5f6020820190508181035f8301526133f8816133bf565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f755f8201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b5f613459602383612a1f565b9150613464826133ff565b604082019050919050565b5f6020820190508181035f8301526134868161344d565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026134e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134ae565b6134f386836134ae565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61352e61352961352484612aa5565b61350b565b612aa5565b9050919050565b5f819050919050565b61354783613514565b61355b61355382613535565b8484546134ba565b825550505050565b5f90565b61356f613563565b61357a81848461353e565b505050565b5b8181101561359d576135925f82613567565b600181019050613580565b5050565b601f8211156135e2576135b38161348d565b6135bc8461349f565b810160208510156135cb578190505b6135df6135d78561349f565b83018261357f565b50505b505050565b5f82821c905092915050565b5f6136025f19846008026135e7565b1980831691505092915050565b5f61361a83836135f3565b9150826002028217905092915050565b61363382612a15565b67ffffffffffffffff81111561364c5761364b612c6e565b5b61365682546130a1565b6136618282856135a1565b5f60209050601f831160018114613692575f8415613680578287015190505b61368a858261360f565b8655506136f1565b601f1984166136a08661348d565b5f5b828110156136c7578489015182556001820191506020850194506020810190506136a2565b868310156136e457848901516136e0601f8916826135f3565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f613753602b83612a1f565b915061375e826136f9565b604082019050919050565b5f6020820190508181035f83015261378081613747565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f455243373231413a20617070726f766520746f2063616c6c65720000000000005f82015250565b5f6137e8601a83612a1f565b91506137f3826137b4565b602082019050919050565b5f6020820190508181035f830152613815816137dc565b9050919050565b7f57616c6c657420726571756972656400000000000000000000000000000000005f82015250565b5f613850600f83612a1f565b915061385b8261381c565b602082019050919050565b5f6020820190508181035f83015261387d81613844565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138bb82612aa5565b91506138c683612aa5565b92508282019050808211156138de576138dd613884565b5b92915050565b7f6c696d6974207065722077616c6c6574207265616368656400000000000000005f82015250565b5f613918601883612a1f565b9150613923826138e4565b602082019050919050565b5f6020820190508181035f8301526139458161390c565b9050919050565b5f61395682612aa5565b915061396183612aa5565b925082820390508181111561397957613978613884565b5b92915050565b7f536f6c64206f75742100000000000000000000000000000000000000000000005f82015250565b5f6139b3600983612a1f565b91506139be8261397f565b602082019050919050565b5f6020820190508181035f8301526139e0816139a7565b9050919050565b5f6139f182612aa5565b91506139fc83612aa5565b9250828202613a0a81612aa5565b91508282048414831517613a2157613a20613884565b5b5092915050565b7f4e6f7420656e6f75676820244150452073656e743b20636865636b20707269635f8201527f6521000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a82602283612a1f565b9150613a8d82613a28565b604082019050919050565b5f6020820190508181035f830152613aaf81613a76565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e20455243373231525f8201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b5f613b10603383612a1f565b9150613b1b82613ab6565b604082019050919050565b5f6020820190508181035f830152613b3d81613b04565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f613b78601f83612a1f565b9150613b8382613b44565b602082019050919050565b5f6020820190508181035f830152613ba581613b6c565b9050919050565b5f81905092915050565b5f8154613bc2816130a1565b613bcc8186613bac565b9450600182165f8114613be65760018114613bfb57613c2d565b60ff1983168652811515820286019350613c2d565b613c048561348d565b5f5b83811015613c2557815481890152600182019150602081019050613c06565b838801955050505b50505092915050565b5f613c4082612a15565b613c4a8185613bac565b9350613c5a818560208601612a2f565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613c9a600583613bac565b9150613ca582613c66565b600582019050919050565b5f613cbb8285613bb6565b9150613cc78284613c36565b9150613cd282613c8e565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613d0e82613cde565b601b82019150613d1e8284613c36565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613d83602683612a1f565b9150613d8e82613d29565b604082019050919050565b5f6020820190508181035f830152613db081613d77565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f74205f8201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b5f613e11603283612a1f565b9150613e1c82613db7565b604082019050919050565b5f6020820190508181035f830152613e3e81613e05565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f72726563745f8201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b5f613e9f602683612a1f565b9150613eaa82613e45565b604082019050919050565b5f6020820190508181035f830152613ecc81613e93565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613f2d602583612a1f565b9150613f3882613ed3565b604082019050919050565b5f6020820190508181035f830152613f5a81613f21565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f613f95601d83612a1f565b9150613fa082613f61565b602082019050919050565b5f6020820190508181035f830152613fc281613f89565b9050919050565b5f81905092915050565b50565b5f613fe15f83613fc9565b9150613fec82613fd3565b5f82019050919050565b5f61400082613fd6565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f614064603a83612a1f565b915061406f8261400a565b604082019050919050565b5f6020820190508181035f83015261409181614058565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e657869735f8201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b5f6140f2602a83612a1f565b91506140fd82614098565b604082019050919050565b5f6020820190508181035f83015261411f816140e6565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e65207468655f8201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b5f614180602f83612a1f565b915061418b82614126565b604082019050919050565b5f6020820190508181035f8301526141ad81614174565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6141d8826141b4565b6141e281856141be565b93506141f2818560208601612a2f565b6141fb81612a3d565b840191505092915050565b5f6080820190506142195f830187612b33565b6142266020830186612b33565b6142336040830185612bc3565b818103606083015261424581846141ce565b905095945050505050565b5f8151905061425e8161298d565b92915050565b5f602082840312156142795761427861295a565b5b5f61428684828501614250565b91505092915050565b5f61429982612aa5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036142cb576142ca613884565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61430d82612aa5565b915061431883612aa5565b925082614328576143276142d6565b5b828204905092915050565b5f61433d82612aa5565b915061434883612aa5565b925082614358576143576142d6565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6143bd602183612a1f565b91506143c882614363565b604082019050919050565b5f6020820190508181035f8301526143ea816143b1565b9050919050565b7f455243373231413a207175616e74697479206d757374206265206772656174655f8201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b5f61444b602883612a1f565b9150614456826143f1565b604082019050919050565b5f6020820190508181035f8301526144788161443f565b905091905056fe7b226e616d65223a202259657420416e6f7468657220426f726564204170652050756e6b73222c226465736372697074696f6e223a22496e7370697265642062792043727970746f50756e6b7320616e6420424159432c2059657420416e6f7468657220426f726564204170652050756e6b73202859414241502920617265203234363420636f6c6c65637469626c652063686172616374657273206c6976696e67206f6e20415045434841494e2e227da264697066735822122063c1f793254c59256d42c94daf81f7d43f304ce0716159618c7cbf6cde1fe01464736f6c634300081a0033
Deployed Bytecode Sourcemap
40323:3109:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27199:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30647:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30168:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25456:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42047:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31523:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26120:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41886:153;;;;;;;;;;;;;:::i;:::-;;31756:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25633:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41368:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28894:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40446:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27635:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22898:103;;;;;;;;;;;;;:::i;:::-;;42927:502;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22247:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29254:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30933:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42097:822;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41226:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40487:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32004:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41608:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40397:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40758:346;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31292:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23156:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41112:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27199:372;27301:4;27353:25;27338:40;;;:11;:40;;;;:105;;;;27410:33;27395:48;;;:11;:48;;;;27338:105;:172;;;;27475:35;27460:50;;;:11;:50;;;;27338:172;:225;;;;27527:36;27551:11;27527:23;:36::i;:::-;27338:225;27318:245;;27199:372;;;:::o;29085:100::-;29139:13;29172:5;29165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29085:100;:::o;30647:214::-;30715:7;30743:16;30751:7;30743;:16::i;:::-;30735:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30829:15;:24;30845:7;30829:24;;;;;;;;;;;;;;;;;;;;;30822:31;;30647:214;;;:::o;30168:413::-;30241:13;30257:24;30273:7;30257:15;:24::i;:::-;30241:40;;30306:5;30300:11;;:2;:11;;;30292:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30401:5;30385:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30410:37;30427:5;30434:12;:10;:12::i;:::-;30410:16;:37::i;:::-;30385:62;30363:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30545:28;30554:2;30558:7;30567:5;30545:8;:28::i;:::-;30230:351;30168:413;;:::o;25456:100::-;25509:7;25536:12;;25529:19;;25456:100;:::o;42047:41::-;;;;;;;;;;;;;;;;;:::o;31523:162::-;31649:28;31659:4;31665:2;31669:7;31649:9;:28::i;:::-;31523:162;;;:::o;26120:1007::-;26209:7;26245:16;26255:5;26245:9;:16::i;:::-;26237:5;:24;26229:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26311:22;26336:13;:11;:13::i;:::-;26311:38;;26360:19;26390:25;26579:9;26574:466;26594:14;26590:1;:18;26574:466;;;26634:31;26668:11;:14;26680:1;26668:14;;;;;;;;;;;26634:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26731:1;26705:28;;:9;:14;;;:28;;;26701:111;;26778:9;:14;;;26758:34;;26701:111;26855:5;26834:26;;:17;:26;;;26830:195;;26904:5;26889:11;:20;26885:85;;26945:1;26938:8;;;;;;;;;26885:85;26992:13;;;;;;;26830:195;26615:425;26610:3;;;;;;;26574:466;;;;27063:56;;;;;;;;;;:::i;:::-;;;;;;;;26120:1007;;;;;:::o;41886:153::-;22478:12;:10;:12::i;:::-;22467:23;;:7;:5;:7::i;:::-;:23;;;22459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41934:15:::1;41952:21;41934:39;;41984:47;42010:10;42023:7;41984:17;:47::i;:::-;41923:116;41886:153::o:0;31756:177::-;31886:39;31903:4;31909:2;31913:7;31886:39;;;;;;;;;;;;:16;:39::i;:::-;31756:177;;;:::o;25633:187::-;25700:7;25736:13;:11;:13::i;:::-;25728:5;:21;25720:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25807:5;25800:12;;25633:187;;;:::o;41368:107::-;22478:12;:10;:12::i;:::-;22467:23;;:7;:5;:7::i;:::-;:23;;;22459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41460:7:::1;41441:16;:26;;;;;;:::i;:::-;;41368:107:::0;:::o;28894:124::-;28958:7;28985:20;28997:7;28985:11;:20::i;:::-;:25;;;28978:32;;28894:124;;;:::o;40446:34::-;;;;:::o;27635:221::-;27699:7;27744:1;27727:19;;:5;:19;;;27719:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27820:12;:19;27833:5;27820:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27812:36;;27805:43;;27635:221;;;:::o;22898:103::-;22478:12;:10;:12::i;:::-;22467:23;;:7;:5;:7::i;:::-;:23;;;22459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22963:30:::1;22990:1;22963:18;:30::i;:::-;22898:103::o:0;42927:502::-;42989:16;43018:18;43039:17;43049:6;43039:9;:17::i;:::-;43018:38;;43085:1;43071:10;:15;43067:355;;43124:1;43110:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43103:23;;;;;43067:355;43159:23;43199:10;43185:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43159:51;;43225:13;43253:130;43277:10;43269:5;:18;43253:130;;;43333:34;43353:6;43361:5;43333:19;:34::i;:::-;43317:6;43324:5;43317:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;43289:7;;;;;;;43253:130;;;43404:6;43397:13;;;;;42927:502;;;;:::o;22247:87::-;22293:7;22320:6;;;;;;;;;;;22313:13;;22247:87;:::o;29254:104::-;29310:13;29343:7;29336:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29254:104;:::o;30933:288::-;31040:12;:10;:12::i;:::-;31028:24;;:8;:24;;;31020:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31141:8;31096:18;:32;31115:12;:10;:12::i;:::-;31096:32;;;;;;;;;;;;;;;:42;31129:8;31096:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31194:8;31165:48;;31180:12;:10;:12::i;:::-;31165:48;;;31204:8;31165:48;;;;;;:::i;:::-;;;;;;;;30933:288;;:::o;42097:822::-;42177:9;42163:23;;:10;:23;;;42155:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;42256:16;;42246:6;42225;:18;42232:10;42225:18;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;:47;;42217:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;42314:22;42339:6;42314:31;;42356:13;42384;:11;:13::i;:::-;40433:4;42372:25;;;;:::i;:::-;42356:41;;42427:31;42436:14;42452:5;42427:8;:31::i;:::-;42410:48;;42494:1;42477:14;:18;42469:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;42522:21;42563:9;;42546:14;:26;;;;:::i;:::-;42522:50;;42604:13;42591:9;:26;;42583:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42692:14;42670:6;:18;42677:10;42670:18;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;42719:37;42729:10;42741:14;42719:9;:37::i;:::-;42769:14;42798:13;42786:9;:25;;;;:::i;:::-;42769:42;;42836:1;42826:6;:11;42822:90;;42854:46;42880:10;42893:6;42854:17;:46::i;:::-;42822:90;42144:775;;;;42097:822;:::o;41226:134::-;22478:12;:10;:12::i;:::-;22467:23;;:7;:5;:7::i;:::-;:23;;;22459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41333:19:::1;41314:16;:38;;;;41226:134:::0;:::o;40487:35::-;;;;:::o;32004:355::-;32163:28;32173:4;32179:2;32183:7;32163:9;:28::i;:::-;32224:48;32247:4;32253:2;32257:7;32266:5;32224:22;:48::i;:::-;32202:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;32004:355;;;;:::o;41608:270::-;41679:13;41722:1;41713:5;:10;;:36;;;;;41736:13;:11;:13::i;:::-;41727:5;:22;;41713:36;41705:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;41826:16;41844;:5;:14;:16::i;:::-;41809:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41795:75;;41608:270;;;:::o;40397:40::-;40433:4;40397:40;:::o;40758:346::-;40802:13;40828:18;:200;;;;;;;;;;;;;;;;;;;41091:4;41046:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;41039:57;;;40758:346;:::o;31292:164::-;31389:4;31413:18;:25;31432:5;31413:25;;;;;;;;;;;;;;;:35;31439:8;31413:35;;;;;;;;;;;;;;;;;;;;;;;;;31406:42;;31292:164;;;;:::o;23156:201::-;22478:12;:10;:12::i;:::-;22467:23;;:7;:5;:7::i;:::-;:23;;;22459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23265:1:::1;23245:22;;:8;:22;;::::0;23237:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23321:28;23340:8;23321:18;:28::i;:::-;23156:201:::0;:::o;41112:106::-;22478:12;:10;:12::i;:::-;22467:23;;:7;:5;:7::i;:::-;:23;;;22459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41198:12:::1;41186:9;:24;;;;41112:106:::0;:::o;1644:157::-;1729:4;1768:25;1753:40;;;:11;:40;;;;1746:47;;1644:157;;;:::o;32614:111::-;32671:4;32705:12;;32695:7;:22;32688:29;;32614:111;;;:::o;4441:98::-;4494:7;4521:10;4514:17;;4441:98;:::o;37534:196::-;37676:2;37649:15;:24;37665:7;37649:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37714:7;37710:2;37694:28;;37703:5;37694:28;;;;;;;;;;;;37534:196;;;:::o;35414:2002::-;35529:35;35567:20;35579:7;35567:11;:20::i;:::-;35529:58;;35600:22;35642:13;:18;;;35626:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;35701:12;:10;:12::i;:::-;35677:36;;:20;35689:7;35677:11;:20::i;:::-;:36;;;35626:87;:154;;;;35730:50;35747:13;:18;;;35767:12;:10;:12::i;:::-;35730:16;:50::i;:::-;35626:154;35600:181;;35802:17;35794:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;35917:4;35895:26;;:13;:18;;;:26;;;35887:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35997:1;35983:16;;:2;:16;;;35975:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36054:43;36076:4;36082:2;36086:7;36095:1;36054:21;:43::i;:::-;36162:49;36179:1;36183:7;36192:13;:18;;;36162:8;:49::i;:::-;36537:1;36507:12;:18;36520:4;36507:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36581:1;36553:12;:16;36566:2;36553:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36627:2;36599:11;:20;36611:7;36599:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36689:15;36644:11;:20;36656:7;36644:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36957:19;36989:1;36979:7;:11;36957:33;;37050:1;37009:43;;:11;:24;37021:11;37009:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37005:295;;37077:20;37085:11;37077:7;:20::i;:::-;37073:212;;;37154:13;:18;;;37122:11;:24;37134:11;37122:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37237:13;:28;;;37195:11;:24;37207:11;37195:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37073:212;37005:295;36482:829;37347:7;37343:2;37328:27;;37337:4;37328:27;;;;;;;;;;;;37366:42;37387:4;37393:2;37397:7;37406:1;37366:20;:42::i;:::-;35518:1898;;35414:2002;;;:::o;6712:317::-;6827:6;6802:21;:31;;6794:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6881:12;6899:9;:14;;6921:6;6899:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6880:52;;;6951:7;6943:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;6783:246;6712:317;;:::o;28295:537::-;28356:21;;:::i;:::-;28398:16;28406:7;28398;:16::i;:::-;28390:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28504:12;28519:7;28504:22;;28499:245;28536:1;28528:4;:9;28499:245;;28566:31;28600:11;:17;28612:4;28600:17;;;;;;;;;;;28566:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28666:1;28640:28;;:9;:14;;;:28;;;28636:93;;28700:9;28693:16;;;;;;28636:93;28547:197;28539:6;;;;;;;;28499:245;;;;28767:57;;;;;;;;;;:::i;:::-;;;;;;;;28295:537;;;;:::o;23517:191::-;23591:16;23610:6;;;;;;;;;;;23591:25;;23636:8;23627:6;;:17;;;;;;;;;;;;;;;;;;23691:8;23660:40;;23681:8;23660:40;;;;;;;;;;;;23580:128;23517:191;:::o;20481:106::-;20539:7;20570:1;20566;:5;:13;;20578:1;20566:13;;;20574:1;20566:13;20559:20;;20481:106;;;;:::o;32733:104::-;32802:27;32812:2;32816:8;32802:27;;;;;;;;;;;;:9;:27::i;:::-;32733:104;;:::o;38295:804::-;38450:4;38471:15;:2;:13;;;:15::i;:::-;38467:625;;;38523:2;38507:36;;;38544:12;:10;:12::i;:::-;38558:4;38564:7;38573:5;38507:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38503:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38770:1;38753:6;:13;:18;38749:273;;38796:61;;;;;;;;;;:::i;:::-;;;;;;;;38749:273;38972:6;38966:13;38957:6;38953:2;38949:15;38942:38;38503:534;38640:45;;;38630:55;;;:6;:55;;;;38623:62;;;;;38467:625;39076:4;39069:11;;38295:804;;;;;;;:::o;2088:723::-;2144:13;2374:1;2365:5;:10;2361:53;;2392:10;;;;;;;;;;;;;;;;;;;;;2361:53;2424:12;2439:5;2424:20;;2455:14;2480:78;2495:1;2487:4;:9;2480:78;;2513:8;;;;;:::i;:::-;;;;2544:2;2536:10;;;;;:::i;:::-;;;2480:78;;;2568:19;2600:6;2590:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2568:39;;2618:154;2634:1;2625:5;:10;2618:154;;2662:1;2652:11;;;;;:::i;:::-;;;2729:2;2721:5;:10;;;;:::i;:::-;2708:2;:24;;;;:::i;:::-;2695:39;;2678:6;2685;2678:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2758:2;2749:11;;;;;:::i;:::-;;;2618:154;;;2796:6;2782:21;;;;;2088:723;;;;:::o;39587:159::-;;;;;:::o;40158:158::-;;;;;:::o;33200:163::-;33323:32;33329:2;33333:8;33343:5;33350:4;33323:5;:32::i;:::-;33200:163;;;:::o;5390:387::-;5450:4;5658:12;5725:7;5713:20;5705:28;;5768:1;5761:4;:8;5754:15;;;5390:387;;;:::o;33622:1538::-;33761:20;33784:12;;33761:35;;33829:1;33815:16;;:2;:16;;;33807:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33900:1;33888:8;:13;33880:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33959:61;33989:1;33993:2;33997:12;34011:8;33959:21;:61::i;:::-;34334:8;34298:12;:16;34311:2;34298:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34399:8;34358:12;:16;34371:2;34358:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34458:2;34425:11;:25;34437:12;34425:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34525:15;34475:11;:25;34487:12;34475:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34558:20;34581:12;34558:35;;34615:9;34610:415;34630:8;34626:1;:12;34610:415;;;34694:12;34690:2;34669:38;;34686:1;34669:38;;;;;;;;;;;;34730:4;34726:249;;;34793:59;34824:1;34828:2;34832:12;34846:5;34793:22;:59::i;:::-;34759:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;34726:249;34995:14;;;;;;;34640:3;;;;;;;34610:415;;;;35056:12;35041;:27;;;;34273:807;35092:60;35121:1;35125:2;35129:12;35143:8;35092:20;:60::i;:::-;33750:1410;33622:1538;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:329::-;5194:6;5243:2;5231:9;5222:7;5218:23;5214:32;5211:119;;;5249:79;;:::i;:::-;5211:119;5369:1;5394:53;5439:7;5430:6;5419:9;5415:22;5394:53;:::i;:::-;5384:63;;5340:117;5135:329;;;;:::o;5470:619::-;5547:6;5555;5563;5612:2;5600:9;5591:7;5587:23;5583:32;5580:119;;;5618:79;;:::i;:::-;5580:119;5738:1;5763:53;5808:7;5799:6;5788:9;5784:22;5763:53;:::i;:::-;5753:63;;5709:117;5865:2;5891:53;5936:7;5927:6;5916:9;5912:22;5891:53;:::i;:::-;5881:63;;5836:118;5993:2;6019:53;6064:7;6055:6;6044:9;6040:22;6019:53;:::i;:::-;6009:63;;5964:118;5470:619;;;;;:::o;6095:117::-;6204:1;6201;6194:12;6218:117;6327:1;6324;6317:12;6341:180;6389:77;6386:1;6379:88;6486:4;6483:1;6476:15;6510:4;6507:1;6500:15;6527:281;6610:27;6632:4;6610:27;:::i;:::-;6602:6;6598:40;6740:6;6728:10;6725:22;6704:18;6692:10;6689:34;6686:62;6683:88;;;6751:18;;:::i;:::-;6683:88;6791:10;6787:2;6780:22;6570:238;6527:281;;:::o;6814:129::-;6848:6;6875:20;;:::i;:::-;6865:30;;6904:33;6932:4;6924:6;6904:33;:::i;:::-;6814:129;;;:::o;6949:308::-;7011:4;7101:18;7093:6;7090:30;7087:56;;;7123:18;;:::i;:::-;7087:56;7161:29;7183:6;7161:29;:::i;:::-;7153:37;;7245:4;7239;7235:15;7227:23;;6949:308;;;:::o;7263:148::-;7361:6;7356:3;7351;7338:30;7402:1;7393:6;7388:3;7384:16;7377:27;7263:148;;;:::o;7417:425::-;7495:5;7520:66;7536:49;7578:6;7536:49;:::i;:::-;7520:66;:::i;:::-;7511:75;;7609:6;7602:5;7595:21;7647:4;7640:5;7636:16;7685:3;7676:6;7671:3;7667:16;7664:25;7661:112;;;7692:79;;:::i;:::-;7661:112;7782:54;7829:6;7824:3;7819;7782:54;:::i;:::-;7501:341;7417:425;;;;;:::o;7862:340::-;7918:5;7967:3;7960:4;7952:6;7948:17;7944:27;7934:122;;7975:79;;:::i;:::-;7934:122;8092:6;8079:20;8117:79;8192:3;8184:6;8177:4;8169:6;8165:17;8117:79;:::i;:::-;8108:88;;7924:278;7862:340;;;;:::o;8208:509::-;8277:6;8326:2;8314:9;8305:7;8301:23;8297:32;8294:119;;;8332:79;;:::i;:::-;8294:119;8480:1;8469:9;8465:17;8452:31;8510:18;8502:6;8499:30;8496:117;;;8532:79;;:::i;:::-;8496:117;8637:63;8692:7;8683:6;8672:9;8668:22;8637:63;:::i;:::-;8627:73;;8423:287;8208:509;;;;:::o;8723:114::-;8790:6;8824:5;8818:12;8808:22;;8723:114;;;:::o;8843:184::-;8942:11;8976:6;8971:3;8964:19;9016:4;9011:3;9007:14;8992:29;;8843:184;;;;:::o;9033:132::-;9100:4;9123:3;9115:11;;9153:4;9148:3;9144:14;9136:22;;9033:132;;;:::o;9171:108::-;9248:24;9266:5;9248:24;:::i;:::-;9243:3;9236:37;9171:108;;:::o;9285:179::-;9354:10;9375:46;9417:3;9409:6;9375:46;:::i;:::-;9453:4;9448:3;9444:14;9430:28;;9285:179;;;;:::o;9470:113::-;9540:4;9572;9567:3;9563:14;9555:22;;9470:113;;;:::o;9619:732::-;9738:3;9767:54;9815:5;9767:54;:::i;:::-;9837:86;9916:6;9911:3;9837:86;:::i;:::-;9830:93;;9947:56;9997:5;9947:56;:::i;:::-;10026:7;10057:1;10042:284;10067:6;10064:1;10061:13;10042:284;;;10143:6;10137:13;10170:63;10229:3;10214:13;10170:63;:::i;:::-;10163:70;;10256:60;10309:6;10256:60;:::i;:::-;10246:70;;10102:224;10089:1;10086;10082:9;10077:14;;10042:284;;;10046:14;10342:3;10335:10;;9743:608;;;9619:732;;;;:::o;10357:373::-;10500:4;10538:2;10527:9;10523:18;10515:26;;10587:9;10581:4;10577:20;10573:1;10562:9;10558:17;10551:47;10615:108;10718:4;10709:6;10615:108;:::i;:::-;10607:116;;10357:373;;;;:::o;10736:116::-;10806:21;10821:5;10806:21;:::i;:::-;10799:5;10796:32;10786:60;;10842:1;10839;10832:12;10786:60;10736:116;:::o;10858:133::-;10901:5;10939:6;10926:20;10917:29;;10955:30;10979:5;10955:30;:::i;:::-;10858:133;;;;:::o;10997:468::-;11062:6;11070;11119:2;11107:9;11098:7;11094:23;11090:32;11087:119;;;11125:79;;:::i;:::-;11087:119;11245:1;11270:53;11315:7;11306:6;11295:9;11291:22;11270:53;:::i;:::-;11260:63;;11216:117;11372:2;11398:50;11440:7;11431:6;11420:9;11416:22;11398:50;:::i;:::-;11388:60;;11343:115;10997:468;;;;;:::o;11471:307::-;11532:4;11622:18;11614:6;11611:30;11608:56;;;11644:18;;:::i;:::-;11608:56;11682:29;11704:6;11682:29;:::i;:::-;11674:37;;11766:4;11760;11756:15;11748:23;;11471:307;;;:::o;11784:423::-;11861:5;11886:65;11902:48;11943:6;11902:48;:::i;:::-;11886:65;:::i;:::-;11877:74;;11974:6;11967:5;11960:21;12012:4;12005:5;12001:16;12050:3;12041:6;12036:3;12032:16;12029:25;12026:112;;;12057:79;;:::i;:::-;12026:112;12147:54;12194:6;12189:3;12184;12147:54;:::i;:::-;11867:340;11784:423;;;;;:::o;12226:338::-;12281:5;12330:3;12323:4;12315:6;12311:17;12307:27;12297:122;;12338:79;;:::i;:::-;12297:122;12455:6;12442:20;12480:78;12554:3;12546:6;12539:4;12531:6;12527:17;12480:78;:::i;:::-;12471:87;;12287:277;12226:338;;;;:::o;12570:943::-;12665:6;12673;12681;12689;12738:3;12726:9;12717:7;12713:23;12709:33;12706:120;;;12745:79;;:::i;:::-;12706:120;12865:1;12890:53;12935:7;12926:6;12915:9;12911:22;12890:53;:::i;:::-;12880:63;;12836:117;12992:2;13018:53;13063:7;13054:6;13043:9;13039:22;13018:53;:::i;:::-;13008:63;;12963:118;13120:2;13146:53;13191:7;13182:6;13171:9;13167:22;13146:53;:::i;:::-;13136:63;;13091:118;13276:2;13265:9;13261:18;13248:32;13307:18;13299:6;13296:30;13293:117;;;13329:79;;:::i;:::-;13293:117;13434:62;13488:7;13479:6;13468:9;13464:22;13434:62;:::i;:::-;13424:72;;13219:287;12570:943;;;;;;;:::o;13519:474::-;13587:6;13595;13644:2;13632:9;13623:7;13619:23;13615:32;13612:119;;;13650:79;;:::i;:::-;13612:119;13770:1;13795:53;13840:7;13831:6;13820:9;13816:22;13795:53;:::i;:::-;13785:63;;13741:117;13897:2;13923:53;13968:7;13959:6;13948:9;13944:22;13923:53;:::i;:::-;13913:63;;13868:118;13519:474;;;;;:::o;13999:180::-;14047:77;14044:1;14037:88;14144:4;14141:1;14134:15;14168:4;14165:1;14158:15;14185:320;14229:6;14266:1;14260:4;14256:12;14246:22;;14313:1;14307:4;14303:12;14334:18;14324:81;;14390:4;14382:6;14378:17;14368:27;;14324:81;14452:2;14444:6;14441:14;14421:18;14418:38;14415:84;;14471:18;;:::i;:::-;14415:84;14236:269;14185:320;;;:::o;14511:232::-;14651:34;14647:1;14639:6;14635:14;14628:58;14720:15;14715:2;14707:6;14703:15;14696:40;14511:232;:::o;14749:366::-;14891:3;14912:67;14976:2;14971:3;14912:67;:::i;:::-;14905:74;;14988:93;15077:3;14988:93;:::i;:::-;15106:2;15101:3;15097:12;15090:19;;14749:366;;;:::o;15121:419::-;15287:4;15325:2;15314:9;15310:18;15302:26;;15374:9;15368:4;15364:20;15360:1;15349:9;15345:17;15338:47;15402:131;15528:4;15402:131;:::i;:::-;15394:139;;15121:419;;;:::o;15546:221::-;15686:34;15682:1;15674:6;15670:14;15663:58;15755:4;15750:2;15742:6;15738:15;15731:29;15546:221;:::o;15773:366::-;15915:3;15936:67;16000:2;15995:3;15936:67;:::i;:::-;15929:74;;16012:93;16101:3;16012:93;:::i;:::-;16130:2;16125:3;16121:12;16114:19;;15773:366;;;:::o;16145:419::-;16311:4;16349:2;16338:9;16334:18;16326:26;;16398:9;16392:4;16388:20;16384:1;16373:9;16369:17;16362:47;16426:131;16552:4;16426:131;:::i;:::-;16418:139;;16145:419;;;:::o;16570:244::-;16710:34;16706:1;16698:6;16694:14;16687:58;16779:27;16774:2;16766:6;16762:15;16755:52;16570:244;:::o;16820:366::-;16962:3;16983:67;17047:2;17042:3;16983:67;:::i;:::-;16976:74;;17059:93;17148:3;17059:93;:::i;:::-;17177:2;17172:3;17168:12;17161:19;;16820:366;;;:::o;17192:419::-;17358:4;17396:2;17385:9;17381:18;17373:26;;17445:9;17439:4;17435:20;17431:1;17420:9;17416:17;17409:47;17473:131;17599:4;17473:131;:::i;:::-;17465:139;;17192:419;;;:::o;17617:221::-;17757:34;17753:1;17745:6;17741:14;17734:58;17826:4;17821:2;17813:6;17809:15;17802:29;17617:221;:::o;17844:366::-;17986:3;18007:67;18071:2;18066:3;18007:67;:::i;:::-;18000:74;;18083:93;18172:3;18083:93;:::i;:::-;18201:2;18196:3;18192:12;18185:19;;17844:366;;;:::o;18216:419::-;18382:4;18420:2;18409:9;18405:18;18397:26;;18469:9;18463:4;18459:20;18455:1;18444:9;18440:17;18433:47;18497:131;18623:4;18497:131;:::i;:::-;18489:139;;18216:419;;;:::o;18641:233::-;18781:34;18777:1;18769:6;18765:14;18758:58;18850:16;18845:2;18837:6;18833:15;18826:41;18641:233;:::o;18880:366::-;19022:3;19043:67;19107:2;19102:3;19043:67;:::i;:::-;19036:74;;19119:93;19208:3;19119:93;:::i;:::-;19237:2;19232:3;19228:12;19221:19;;18880:366;;;:::o;19252:419::-;19418:4;19456:2;19445:9;19441:18;19433:26;;19505:9;19499:4;19495:20;19491:1;19480:9;19476:17;19469:47;19533:131;19659:4;19533:131;:::i;:::-;19525:139;;19252:419;;;:::o;19677:182::-;19817:34;19813:1;19805:6;19801:14;19794:58;19677:182;:::o;19865:366::-;20007:3;20028:67;20092:2;20087:3;20028:67;:::i;:::-;20021:74;;20104:93;20193:3;20104:93;:::i;:::-;20222:2;20217:3;20213:12;20206:19;;19865:366;;;:::o;20237:419::-;20403:4;20441:2;20430:9;20426:18;20418:26;;20490:9;20484:4;20480:20;20476:1;20465:9;20461:17;20454:47;20518:131;20644:4;20518:131;:::i;:::-;20510:139;;20237:419;;;:::o;20662:222::-;20802:34;20798:1;20790:6;20786:14;20779:58;20871:5;20866:2;20858:6;20854:15;20847:30;20662:222;:::o;20890:366::-;21032:3;21053:67;21117:2;21112:3;21053:67;:::i;:::-;21046:74;;21129:93;21218:3;21129:93;:::i;:::-;21247:2;21242:3;21238:12;21231:19;;20890:366;;;:::o;21262:419::-;21428:4;21466:2;21455:9;21451:18;21443:26;;21515:9;21509:4;21505:20;21501:1;21490:9;21486:17;21479:47;21543:131;21669:4;21543:131;:::i;:::-;21535:139;;21262:419;;;:::o;21687:141::-;21736:4;21759:3;21751:11;;21782:3;21779:1;21772:14;21816:4;21813:1;21803:18;21795:26;;21687:141;;;:::o;21834:93::-;21871:6;21918:2;21913;21906:5;21902:14;21898:23;21888:33;;21834:93;;;:::o;21933:107::-;21977:8;22027:5;22021:4;22017:16;21996:37;;21933:107;;;;:::o;22046:393::-;22115:6;22165:1;22153:10;22149:18;22188:97;22218:66;22207:9;22188:97;:::i;:::-;22306:39;22336:8;22325:9;22306:39;:::i;:::-;22294:51;;22378:4;22374:9;22367:5;22363:21;22354:30;;22427:4;22417:8;22413:19;22406:5;22403:30;22393:40;;22122:317;;22046:393;;;;;:::o;22445:60::-;22473:3;22494:5;22487:12;;22445:60;;;:::o;22511:142::-;22561:9;22594:53;22612:34;22621:24;22639:5;22621:24;:::i;:::-;22612:34;:::i;:::-;22594:53;:::i;:::-;22581:66;;22511:142;;;:::o;22659:75::-;22702:3;22723:5;22716:12;;22659:75;;;:::o;22740:269::-;22850:39;22881:7;22850:39;:::i;:::-;22911:91;22960:41;22984:16;22960:41;:::i;:::-;22952:6;22945:4;22939:11;22911:91;:::i;:::-;22905:4;22898:105;22816:193;22740:269;;;:::o;23015:73::-;23060:3;23015:73;:::o;23094:189::-;23171:32;;:::i;:::-;23212:65;23270:6;23262;23256:4;23212:65;:::i;:::-;23147:136;23094:189;;:::o;23289:186::-;23349:120;23366:3;23359:5;23356:14;23349:120;;;23420:39;23457:1;23450:5;23420:39;:::i;:::-;23393:1;23386:5;23382:13;23373:22;;23349:120;;;23289:186;;:::o;23481:543::-;23582:2;23577:3;23574:11;23571:446;;;23616:38;23648:5;23616:38;:::i;:::-;23700:29;23718:10;23700:29;:::i;:::-;23690:8;23686:44;23883:2;23871:10;23868:18;23865:49;;;23904:8;23889:23;;23865:49;23927:80;23983:22;24001:3;23983:22;:::i;:::-;23973:8;23969:37;23956:11;23927:80;:::i;:::-;23586:431;;23571:446;23481:543;;;:::o;24030:117::-;24084:8;24134:5;24128:4;24124:16;24103:37;;24030:117;;;;:::o;24153:169::-;24197:6;24230:51;24278:1;24274:6;24266:5;24263:1;24259:13;24230:51;:::i;:::-;24226:56;24311:4;24305;24301:15;24291:25;;24204:118;24153:169;;;;:::o;24327:295::-;24403:4;24549:29;24574:3;24568:4;24549:29;:::i;:::-;24541:37;;24611:3;24608:1;24604:11;24598:4;24595:21;24587:29;;24327:295;;;;:::o;24627:1395::-;24744:37;24777:3;24744:37;:::i;:::-;24846:18;24838:6;24835:30;24832:56;;;24868:18;;:::i;:::-;24832:56;24912:38;24944:4;24938:11;24912:38;:::i;:::-;24997:67;25057:6;25049;25043:4;24997:67;:::i;:::-;25091:1;25115:4;25102:17;;25147:2;25139:6;25136:14;25164:1;25159:618;;;;25821:1;25838:6;25835:77;;;25887:9;25882:3;25878:19;25872:26;25863:35;;25835:77;25938:67;25998:6;25991:5;25938:67;:::i;:::-;25932:4;25925:81;25794:222;25129:887;;25159:618;25211:4;25207:9;25199:6;25195:22;25245:37;25277:4;25245:37;:::i;:::-;25304:1;25318:208;25332:7;25329:1;25326:14;25318:208;;;25411:9;25406:3;25402:19;25396:26;25388:6;25381:42;25462:1;25454:6;25450:14;25440:24;;25509:2;25498:9;25494:18;25481:31;;25355:4;25352:1;25348:12;25343:17;;25318:208;;;25554:6;25545:7;25542:19;25539:179;;;25612:9;25607:3;25603:19;25597:26;25655:48;25697:4;25689:6;25685:17;25674:9;25655:48;:::i;:::-;25647:6;25640:64;25562:156;25539:179;25764:1;25760;25752:6;25748:14;25744:22;25738:4;25731:36;25166:611;;;25129:887;;24719:1303;;;24627:1395;;:::o;26028:230::-;26168:34;26164:1;26156:6;26152:14;26145:58;26237:13;26232:2;26224:6;26220:15;26213:38;26028:230;:::o;26264:366::-;26406:3;26427:67;26491:2;26486:3;26427:67;:::i;:::-;26420:74;;26503:93;26592:3;26503:93;:::i;:::-;26621:2;26616:3;26612:12;26605:19;;26264:366;;;:::o;26636:419::-;26802:4;26840:2;26829:9;26825:18;26817:26;;26889:9;26883:4;26879:20;26875:1;26864:9;26860:17;26853:47;26917:131;27043:4;26917:131;:::i;:::-;26909:139;;26636:419;;;:::o;27061:180::-;27109:77;27106:1;27099:88;27206:4;27203:1;27196:15;27230:4;27227:1;27220:15;27247:176;27387:28;27383:1;27375:6;27371:14;27364:52;27247:176;:::o;27429:366::-;27571:3;27592:67;27656:2;27651:3;27592:67;:::i;:::-;27585:74;;27668:93;27757:3;27668:93;:::i;:::-;27786:2;27781:3;27777:12;27770:19;;27429:366;;;:::o;27801:419::-;27967:4;28005:2;27994:9;27990:18;27982:26;;28054:9;28048:4;28044:20;28040:1;28029:9;28025:17;28018:47;28082:131;28208:4;28082:131;:::i;:::-;28074:139;;27801:419;;;:::o;28226:165::-;28366:17;28362:1;28354:6;28350:14;28343:41;28226:165;:::o;28397:366::-;28539:3;28560:67;28624:2;28619:3;28560:67;:::i;:::-;28553:74;;28636:93;28725:3;28636:93;:::i;:::-;28754:2;28749:3;28745:12;28738:19;;28397:366;;;:::o;28769:419::-;28935:4;28973:2;28962:9;28958:18;28950:26;;29022:9;29016:4;29012:20;29008:1;28997:9;28993:17;28986:47;29050:131;29176:4;29050:131;:::i;:::-;29042:139;;28769:419;;;:::o;29194:180::-;29242:77;29239:1;29232:88;29339:4;29336:1;29329:15;29363:4;29360:1;29353:15;29380:191;29420:3;29439:20;29457:1;29439:20;:::i;:::-;29434:25;;29473:20;29491:1;29473:20;:::i;:::-;29468:25;;29516:1;29513;29509:9;29502:16;;29537:3;29534:1;29531:10;29528:36;;;29544:18;;:::i;:::-;29528:36;29380:191;;;;:::o;29577:174::-;29717:26;29713:1;29705:6;29701:14;29694:50;29577:174;:::o;29757:366::-;29899:3;29920:67;29984:2;29979:3;29920:67;:::i;:::-;29913:74;;29996:93;30085:3;29996:93;:::i;:::-;30114:2;30109:3;30105:12;30098:19;;29757:366;;;:::o;30129:419::-;30295:4;30333:2;30322:9;30318:18;30310:26;;30382:9;30376:4;30372:20;30368:1;30357:9;30353:17;30346:47;30410:131;30536:4;30410:131;:::i;:::-;30402:139;;30129:419;;;:::o;30554:194::-;30594:4;30614:20;30632:1;30614:20;:::i;:::-;30609:25;;30648:20;30666:1;30648:20;:::i;:::-;30643:25;;30692:1;30689;30685:9;30677:17;;30716:1;30710:4;30707:11;30704:37;;;30721:18;;:::i;:::-;30704:37;30554:194;;;;:::o;30754:159::-;30894:11;30890:1;30882:6;30878:14;30871:35;30754:159;:::o;30919:365::-;31061:3;31082:66;31146:1;31141:3;31082:66;:::i;:::-;31075:73;;31157:93;31246:3;31157:93;:::i;:::-;31275:2;31270:3;31266:12;31259:19;;30919:365;;;:::o;31290:419::-;31456:4;31494:2;31483:9;31479:18;31471:26;;31543:9;31537:4;31533:20;31529:1;31518:9;31514:17;31507:47;31571:131;31697:4;31571:131;:::i;:::-;31563:139;;31290:419;;;:::o;31715:410::-;31755:7;31778:20;31796:1;31778:20;:::i;:::-;31773:25;;31812:20;31830:1;31812:20;:::i;:::-;31807:25;;31867:1;31864;31860:9;31889:30;31907:11;31889:30;:::i;:::-;31878:41;;32068:1;32059:7;32055:15;32052:1;32049:22;32029:1;32022:9;32002:83;31979:139;;32098:18;;:::i;:::-;31979:139;31763:362;31715:410;;;;:::o;32131:221::-;32271:34;32267:1;32259:6;32255:14;32248:58;32340:4;32335:2;32327:6;32323:15;32316:29;32131:221;:::o;32358:366::-;32500:3;32521:67;32585:2;32580:3;32521:67;:::i;:::-;32514:74;;32597:93;32686:3;32597:93;:::i;:::-;32715:2;32710:3;32706:12;32699:19;;32358:366;;;:::o;32730:419::-;32896:4;32934:2;32923:9;32919:18;32911:26;;32983:9;32977:4;32973:20;32969:1;32958:9;32954:17;32947:47;33011:131;33137:4;33011:131;:::i;:::-;33003:139;;32730:419;;;:::o;33155:238::-;33295:34;33291:1;33283:6;33279:14;33272:58;33364:21;33359:2;33351:6;33347:15;33340:46;33155:238;:::o;33399:366::-;33541:3;33562:67;33626:2;33621:3;33562:67;:::i;:::-;33555:74;;33638:93;33727:3;33638:93;:::i;:::-;33756:2;33751:3;33747:12;33740:19;;33399:366;;;:::o;33771:419::-;33937:4;33975:2;33964:9;33960:18;33952:26;;34024:9;34018:4;34014:20;34010:1;33999:9;33995:17;33988:47;34052:131;34178:4;34052:131;:::i;:::-;34044:139;;33771:419;;;:::o;34196:181::-;34336:33;34332:1;34324:6;34320:14;34313:57;34196:181;:::o;34383:366::-;34525:3;34546:67;34610:2;34605:3;34546:67;:::i;:::-;34539:74;;34622:93;34711:3;34622:93;:::i;:::-;34740:2;34735:3;34731:12;34724:19;;34383:366;;;:::o;34755:419::-;34921:4;34959:2;34948:9;34944:18;34936:26;;35008:9;35002:4;34998:20;34994:1;34983:9;34979:17;34972:47;35036:131;35162:4;35036:131;:::i;:::-;35028:139;;34755:419;;;:::o;35180:148::-;35282:11;35319:3;35304:18;;35180:148;;;;:::o;35358:874::-;35461:3;35498:5;35492:12;35527:36;35553:9;35527:36;:::i;:::-;35579:89;35661:6;35656:3;35579:89;:::i;:::-;35572:96;;35699:1;35688:9;35684:17;35715:1;35710:166;;;;35890:1;35885:341;;;;35677:549;;35710:166;35794:4;35790:9;35779;35775:25;35770:3;35763:38;35856:6;35849:14;35842:22;35834:6;35830:35;35825:3;35821:45;35814:52;;35710:166;;35885:341;35952:38;35984:5;35952:38;:::i;:::-;36012:1;36026:154;36040:6;36037:1;36034:13;36026:154;;;36114:7;36108:14;36104:1;36099:3;36095:11;36088:35;36164:1;36155:7;36151:15;36140:26;;36062:4;36059:1;36055:12;36050:17;;36026:154;;;36209:6;36204:3;36200:16;36193:23;;35892:334;;35677:549;;35465:767;;35358:874;;;;:::o;36238:390::-;36344:3;36372:39;36405:5;36372:39;:::i;:::-;36427:89;36509:6;36504:3;36427:89;:::i;:::-;36420:96;;36525:65;36583:6;36578:3;36571:4;36564:5;36560:16;36525:65;:::i;:::-;36615:6;36610:3;36606:16;36599:23;;36348:280;36238:390;;;;:::o;36634:155::-;36774:7;36770:1;36762:6;36758:14;36751:31;36634:155;:::o;36795:400::-;36955:3;36976:84;37058:1;37053:3;36976:84;:::i;:::-;36969:91;;37069:93;37158:3;37069:93;:::i;:::-;37187:1;37182:3;37178:11;37171:18;;36795:400;;;:::o;37201:695::-;37479:3;37501:92;37589:3;37580:6;37501:92;:::i;:::-;37494:99;;37610:95;37701:3;37692:6;37610:95;:::i;:::-;37603:102;;37722:148;37866:3;37722:148;:::i;:::-;37715:155;;37887:3;37880:10;;37201:695;;;;;:::o;37902:205::-;38071:29;38066:3;38059:42;37902:205;:::o;38113:542::-;38336:3;38351:138;38485:3;38351:138;:::i;:::-;38514:2;38509:3;38505:12;38498:19;;38534:95;38625:3;38616:6;38534:95;:::i;:::-;38527:102;;38646:3;38639:10;;38113:542;;;;:::o;38661:225::-;38801:34;38797:1;38789:6;38785:14;38778:58;38870:8;38865:2;38857:6;38853:15;38846:33;38661:225;:::o;38892:366::-;39034:3;39055:67;39119:2;39114:3;39055:67;:::i;:::-;39048:74;;39131:93;39220:3;39131:93;:::i;:::-;39249:2;39244:3;39240:12;39233:19;;38892:366;;;:::o;39264:419::-;39430:4;39468:2;39457:9;39453:18;39445:26;;39517:9;39511:4;39507:20;39503:1;39492:9;39488:17;39481:47;39545:131;39671:4;39545:131;:::i;:::-;39537:139;;39264:419;;;:::o;39689:237::-;39829:34;39825:1;39817:6;39813:14;39806:58;39898:20;39893:2;39885:6;39881:15;39874:45;39689:237;:::o;39932:366::-;40074:3;40095:67;40159:2;40154:3;40095:67;:::i;:::-;40088:74;;40171:93;40260:3;40171:93;:::i;:::-;40289:2;40284:3;40280:12;40273:19;;39932:366;;;:::o;40304:419::-;40470:4;40508:2;40497:9;40493:18;40485:26;;40557:9;40551:4;40547:20;40543:1;40532:9;40528:17;40521:47;40585:131;40711:4;40585:131;:::i;:::-;40577:139;;40304:419;;;:::o;40729:225::-;40869:34;40865:1;40857:6;40853:14;40846:58;40938:8;40933:2;40925:6;40921:15;40914:33;40729:225;:::o;40960:366::-;41102:3;41123:67;41187:2;41182:3;41123:67;:::i;:::-;41116:74;;41199:93;41288:3;41199:93;:::i;:::-;41317:2;41312:3;41308:12;41301:19;;40960:366;;;:::o;41332:419::-;41498:4;41536:2;41525:9;41521:18;41513:26;;41585:9;41579:4;41575:20;41571:1;41560:9;41556:17;41549:47;41613:131;41739:4;41613:131;:::i;:::-;41605:139;;41332:419;;;:::o;41757:224::-;41897:34;41893:1;41885:6;41881:14;41874:58;41966:7;41961:2;41953:6;41949:15;41942:32;41757:224;:::o;41987:366::-;42129:3;42150:67;42214:2;42209:3;42150:67;:::i;:::-;42143:74;;42226:93;42315:3;42226:93;:::i;:::-;42344:2;42339:3;42335:12;42328:19;;41987:366;;;:::o;42359:419::-;42525:4;42563:2;42552:9;42548:18;42540:26;;42612:9;42606:4;42602:20;42598:1;42587:9;42583:17;42576:47;42640:131;42766:4;42640:131;:::i;:::-;42632:139;;42359:419;;;:::o;42784:179::-;42924:31;42920:1;42912:6;42908:14;42901:55;42784:179;:::o;42969:366::-;43111:3;43132:67;43196:2;43191:3;43132:67;:::i;:::-;43125:74;;43208:93;43297:3;43208:93;:::i;:::-;43326:2;43321:3;43317:12;43310:19;;42969:366;;;:::o;43341:419::-;43507:4;43545:2;43534:9;43530:18;43522:26;;43594:9;43588:4;43584:20;43580:1;43569:9;43565:17;43558:47;43622:131;43748:4;43622:131;:::i;:::-;43614:139;;43341:419;;;:::o;43766:147::-;43867:11;43904:3;43889:18;;43766:147;;;;:::o;43919:114::-;;:::o;44039:398::-;44198:3;44219:83;44300:1;44295:3;44219:83;:::i;:::-;44212:90;;44311:93;44400:3;44311:93;:::i;:::-;44429:1;44424:3;44420:11;44413:18;;44039:398;;;:::o;44443:379::-;44627:3;44649:147;44792:3;44649:147;:::i;:::-;44642:154;;44813:3;44806:10;;44443:379;;;:::o;44828:245::-;44968:34;44964:1;44956:6;44952:14;44945:58;45037:28;45032:2;45024:6;45020:15;45013:53;44828:245;:::o;45079:366::-;45221:3;45242:67;45306:2;45301:3;45242:67;:::i;:::-;45235:74;;45318:93;45407:3;45318:93;:::i;:::-;45436:2;45431:3;45427:12;45420:19;;45079:366;;;:::o;45451:419::-;45617:4;45655:2;45644:9;45640:18;45632:26;;45704:9;45698:4;45694:20;45690:1;45679:9;45675:17;45668:47;45732:131;45858:4;45732:131;:::i;:::-;45724:139;;45451:419;;;:::o;45876:229::-;46016:34;46012:1;46004:6;46000:14;45993:58;46085:12;46080:2;46072:6;46068:15;46061:37;45876:229;:::o;46111:366::-;46253:3;46274:67;46338:2;46333:3;46274:67;:::i;:::-;46267:74;;46350:93;46439:3;46350:93;:::i;:::-;46468:2;46463:3;46459:12;46452:19;;46111:366;;;:::o;46483:419::-;46649:4;46687:2;46676:9;46672:18;46664:26;;46736:9;46730:4;46726:20;46722:1;46711:9;46707:17;46700:47;46764:131;46890:4;46764:131;:::i;:::-;46756:139;;46483:419;;;:::o;46908:234::-;47048:34;47044:1;47036:6;47032:14;47025:58;47117:17;47112:2;47104:6;47100:15;47093:42;46908:234;:::o;47148:366::-;47290:3;47311:67;47375:2;47370:3;47311:67;:::i;:::-;47304:74;;47387:93;47476:3;47387:93;:::i;:::-;47505:2;47500:3;47496:12;47489:19;;47148:366;;;:::o;47520:419::-;47686:4;47724:2;47713:9;47709:18;47701:26;;47773:9;47767:4;47763:20;47759:1;47748:9;47744:17;47737:47;47801:131;47927:4;47801:131;:::i;:::-;47793:139;;47520:419;;;:::o;47945:98::-;47996:6;48030:5;48024:12;48014:22;;47945:98;;;:::o;48049:168::-;48132:11;48166:6;48161:3;48154:19;48206:4;48201:3;48197:14;48182:29;;48049:168;;;;:::o;48223:373::-;48309:3;48337:38;48369:5;48337:38;:::i;:::-;48391:70;48454:6;48449:3;48391:70;:::i;:::-;48384:77;;48470:65;48528:6;48523:3;48516:4;48509:5;48505:16;48470:65;:::i;:::-;48560:29;48582:6;48560:29;:::i;:::-;48555:3;48551:39;48544:46;;48313:283;48223:373;;;;:::o;48602:640::-;48797:4;48835:3;48824:9;48820:19;48812:27;;48849:71;48917:1;48906:9;48902:17;48893:6;48849:71;:::i;:::-;48930:72;48998:2;48987:9;48983:18;48974:6;48930:72;:::i;:::-;49012;49080:2;49069:9;49065:18;49056:6;49012:72;:::i;:::-;49131:9;49125:4;49121:20;49116:2;49105:9;49101:18;49094:48;49159:76;49230:4;49221:6;49159:76;:::i;:::-;49151:84;;48602:640;;;;;;;:::o;49248:141::-;49304:5;49335:6;49329:13;49320:22;;49351:32;49377:5;49351:32;:::i;:::-;49248:141;;;;:::o;49395:349::-;49464:6;49513:2;49501:9;49492:7;49488:23;49484:32;49481:119;;;49519:79;;:::i;:::-;49481:119;49639:1;49664:63;49719:7;49710:6;49699:9;49695:22;49664:63;:::i;:::-;49654:73;;49610:127;49395:349;;;;:::o;49750:233::-;49789:3;49812:24;49830:5;49812:24;:::i;:::-;49803:33;;49858:66;49851:5;49848:77;49845:103;;49928:18;;:::i;:::-;49845:103;49975:1;49968:5;49964:13;49957:20;;49750:233;;;:::o;49989:180::-;50037:77;50034:1;50027:88;50134:4;50131:1;50124:15;50158:4;50155:1;50148:15;50175:185;50215:1;50232:20;50250:1;50232:20;:::i;:::-;50227:25;;50266:20;50284:1;50266:20;:::i;:::-;50261:25;;50305:1;50295:35;;50310:18;;:::i;:::-;50295:35;50352:1;50349;50345:9;50340:14;;50175:185;;;;:::o;50366:176::-;50398:1;50415:20;50433:1;50415:20;:::i;:::-;50410:25;;50449:20;50467:1;50449:20;:::i;:::-;50444:25;;50488:1;50478:35;;50493:18;;:::i;:::-;50478:35;50534:1;50531;50527:9;50522:14;;50366:176;;;;:::o;50548:220::-;50688:34;50684:1;50676:6;50672:14;50665:58;50757:3;50752:2;50744:6;50740:15;50733:28;50548:220;:::o;50774:366::-;50916:3;50937:67;51001:2;50996:3;50937:67;:::i;:::-;50930:74;;51013:93;51102:3;51013:93;:::i;:::-;51131:2;51126:3;51122:12;51115:19;;50774:366;;;:::o;51146:419::-;51312:4;51350:2;51339:9;51335:18;51327:26;;51399:9;51393:4;51389:20;51385:1;51374:9;51370:17;51363:47;51427:131;51553:4;51427:131;:::i;:::-;51419:139;;51146:419;;;:::o;51571:227::-;51711:34;51707:1;51699:6;51695:14;51688:58;51780:10;51775:2;51767:6;51763:15;51756:35;51571:227;:::o;51804:366::-;51946:3;51967:67;52031:2;52026:3;51967:67;:::i;:::-;51960:74;;52043:93;52132:3;52043:93;:::i;:::-;52161:2;52156:3;52152:12;52145:19;;51804:366;;;:::o;52176:419::-;52342:4;52380:2;52369:9;52365:18;52357:26;;52429:9;52423:4;52419:20;52415:1;52404:9;52400:17;52393:47;52457:131;52583:4;52457:131;:::i;:::-;52449:139;;52176:419;;;:::o
Swarm Source
ipfs://63c1f793254c59256d42c94daf81f7d43f304ce0716159618c7cbf6cde1fe014
[ 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.