ERC-721
Overview
Max Total Supply
477 TOPG
Holders
113
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TOPGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TATEtopgMIRRORPASS
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-25 */ //This key is your access to a mirror discord server with all the info you could //ever want on getting rich and getting pussy. // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @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. */ //Be rich, don't be a peasant. abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // 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 onlyOnwer() { 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 onlyOnwer { _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 onlyOnwer { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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); } // File @openzeppelin/contracts/token/ERC721/[email protected] // 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; } // File @openzeppelin/contracts/token/ERC721/[email protected] // 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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // 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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // 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); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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; } } // File erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). */ abstract contract Owneable is Ownable { address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1; modifier onlyOwner() { require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner"); _; } } /* * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } 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; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _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 || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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 TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * 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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract TATEtopgMIRRORPASS is ERC721A, Owneable { string public baseURI = ""; string public contractURI = "ipfs://QmdiRe39zzRbZkB7mVcm9qirjy4LN7ut8VWUhBqEL6SR8f"; string public constant baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public constant MAX_PER_TX_FREE = 2; uint256 public free_max_supply = 111; uint256 public constant MAX_PER_TX = 20; uint256 public max_supply = 1111; uint256 public price = 0.005 ether; bool public paused = true; constructor() ERC721A("Tate Top G Mirror", "TOPG") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(max_supply >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); if(free_max_supply >= totalSupply()){ require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx"); }else{ require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function out() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function collect(uint256 quantity) external onlyOwner { _safeMint(_msgSender(), quantity); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function configPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function configmax_supply(uint256 newSupply) public onlyOwner { max_supply = newSupply; } function configfree_max_supply(uint256 newFreesupply) public onlyOwner { free_max_supply = newFreesupply; } function peasants(uint256[] memory tokenids) external onlyOwner { uint256 len = tokenids.length; for (uint256 i; i < len; i++) { uint256 tokenid = tokenids[i]; _burn(tokenid); } } //for future utility function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configmax_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"out","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"peasants","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","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":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]
Contract Creation Code
6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600a908051906020019062000080929190620002a1565b5060405180606001604052806035815260200162004bb060359139600b9080519060200190620000b2929190620002a1565b50606f600c55610457600d556611c37937e08000600e556001600f60006101000a81548160ff021916908315150217905550348015620000f157600080fd5b506040518060400160405280601181526020017f5461746520546f702047204d6972726f720000000000000000000000000000008152506040518060400160405280600481526020017f544f504700000000000000000000000000000000000000000000000000000000815250816002908051906020019062000176929190620002a1565b5080600390805190602001906200018f929190620002a1565b50620001a0620001ce60201b60201c565b6000819055505050620001c8620001bc620001d360201b60201c565b620001db60201b60201c565b620003b6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002af9062000351565b90600052602060002090601f016020900481019282620002d357600085556200031f565b82601f10620002ee57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031e57825182559160200191906001019062000301565b5b5090506200032e919062000332565b5090565b5b808211156200034d57600081600090555060010162000333565b5090565b600060028204905060018216806200036a57607f821691505b6020821081141562000381576200038062000387565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147ea80620003c66000396000f3fe60806040526004361061021a5760003560e01c80638a333b5011610123578063c6682862116100ab578063db4a0f611161006f578063db4a0f611461078a578063e8a3d485146107b3578063e985e9c5146107de578063f2fde38b1461081b578063f43a22dc146108445761021a565b8063c6682862146106a5578063c87b56dd146106d0578063cd7c03261461070d578063ce3f865f14610738578063d476de1b146107615761021a565b8063a035b1fe116100f2578063a035b1fe146105f5578063a0712d6814610620578063a22cb4651461063c578063b2a1449b14610665578063b88d4fde1461067c5761021a565b80638a333b501461054b5780638da5cb5b14610576578063938e3d7b146105a157806395d89b41146105ca5761021a565b806342842e0e116101a65780636352211e116101755780636352211e146104665780636c0360eb146104a357806370a08231146104ce578063715018a61461050b578063725d46fd146105225761021a565b806342842e0e146103be578063463fff79146103e757806355f804b3146104125780635c975abb1461043b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd1461031657806318e223dd1461034157806323b872dd1461036a57806326e987d7146103935761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613a1b565b61086f565b6040516102539190613eb8565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906139ee565b610951565b005b34801561029157600080fd5b5061029a610a49565b6040516102a79190613ed3565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613aeb565b610adb565b6040516102e49190613e51565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613965565b610b57565b005b34801561032257600080fd5b5061032b610c62565b6040516103389190614055565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613aeb565b610c79565b005b34801561037657600080fd5b50610391600480360381019061038c919061384f565b610d5e565b005b34801561039f57600080fd5b506103a8610d6e565b6040516103b59190614055565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e0919061384f565b610d74565b005b3480156103f357600080fd5b506103fc610d94565b6040516104099190614055565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613aa2565b610d99565b005b34801561044757600080fd5b50610450610e8e565b60405161045d9190613eb8565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613aeb565b610ea1565b60405161049a9190613e51565b60405180910390f35b3480156104af57600080fd5b506104b8610eb7565b6040516104c59190613ed3565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906137e2565b610f45565b6040516105029190614055565b60405180910390f35b34801561051757600080fd5b50610520611015565b005b34801561052e57600080fd5b50610549600480360381019061054491906139a5565b61109d565b005b34801561055757600080fd5b506105606111ca565b60405161056d9190614055565b60405180910390f35b34801561058257600080fd5b5061058b6111d0565b6040516105989190613e51565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613aa2565b6111fa565b005b3480156105d657600080fd5b506105df6112ef565b6040516105ec9190613ed3565b60405180910390f35b34801561060157600080fd5b5061060a611381565b6040516106179190614055565b60405180910390f35b61063a60048036038101906106359190613aeb565b611387565b005b34801561064857600080fd5b50610663600480360381019061065e9190613925565b61162a565b005b34801561067157600080fd5b5061067a6117a2565b005b34801561068857600080fd5b506106a3600480360381019061069e91906138a2565b611939565b005b3480156106b157600080fd5b506106ba6119b5565b6040516106c79190613ed3565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f29190613aeb565b6119ee565b6040516107049190613ed3565b60405180910390f35b34801561071957600080fd5b50610722611acd565b60405161072f9190613e51565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613aeb565b611ae5565b005b34801561076d57600080fd5b5061078860048036038101906107839190613aeb565b611bd4565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613aeb565b611cb9565b005b3480156107bf57600080fd5b506107c8611d9e565b6040516107d59190613ed3565b60405180910390f35b3480156107ea57600080fd5b506108056004803603810190610800919061380f565b611e2c565b6040516108129190613eb8565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d91906137e2565b611f20565b005b34801561085057600080fd5b50610859612018565b6040516108669190614055565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a57506109498261201d565b5b9050919050565b610959612087565b73ffffffffffffffffffffffffffffffffffffffff166109776111d0565b73ffffffffffffffffffffffffffffffffffffffff1614806109ed575061099c612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390613fd5565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a5890614363565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490614363565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae68261208f565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6282610ea1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bca576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be9612087565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c1b5750610c1981610c14612087565b611e2c565b155b15610c52576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c5d8383836120dd565b505050565b6000610c6c61218f565b6001546000540303905090565b610c81612087565b73ffffffffffffffffffffffffffffffffffffffff16610c9f6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480610d155750610cc4612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613fd5565b60405180910390fd5b80600d8190555050565b610d69838383612194565b505050565b600c5481565b610d8f83838360405180602001604052806000815250611939565b505050565b600281565b610da1612087565b73ffffffffffffffffffffffffffffffffffffffff16610dbf6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480610e355750610de4612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613fd5565b60405180910390fd5b80600a9080519060200190610e8a929190613500565b5050565b600f60009054906101000a900460ff1681565b6000610eac82612685565b600001519050919050565b600a8054610ec490614363565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef090614363565b8015610f3d5780601f10610f1257610100808354040283529160200191610f3d565b820191906000526020600020905b815481529060010190602001808311610f2057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61101d612087565b73ffffffffffffffffffffffffffffffffffffffff1661103b6111d0565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613fd5565b60405180910390fd5b61109b6000612914565b565b6110a5612087565b73ffffffffffffffffffffffffffffffffffffffff166110c36111d0565b73ffffffffffffffffffffffffffffffffffffffff16148061113957506110e8612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90613fd5565b60405180910390fd5b60008151905060005b818110156111c557600083828151811061119e5761119d6144cd565b5b602002602001015190506111b1816129da565b5080806111bd906143c6565b915050611181565b505050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611202612087565b73ffffffffffffffffffffffffffffffffffffffff166112206111d0565b73ffffffffffffffffffffffffffffffffffffffff1614806112965750611245612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90613fd5565b60405180910390fd5b80600b90805190602001906112eb929190613500565b5050565b6060600380546112fe90614363565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90614363565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b600e5481565b6000611391612087565b9050600f60009054906101000a900460ff16156113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da90613ef5565b60405180910390fd5b816113ec610c62565b6113f69190614186565b600d54101561143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613f95565b60405180910390fd5b6000821161147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613f35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614035565b60405180910390fd5b816014101561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613f55565b60405180910390fd5b611537610c62565b600c5410611588578160021015611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613f75565b60405180910390fd5b61161c565b81601410156115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613f55565b60405180910390fd5b34600e54836115db919061420d565b1461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290613ff5565b60405180910390fd5b5b6116268183612d7e565b5050565b611632612087565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611697576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116a4612087565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611751612087565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117969190613eb8565b60405180910390a35050565b6117aa612087565b73ffffffffffffffffffffffffffffffffffffffff166117c86111d0565b73ffffffffffffffffffffffffffffffffffffffff16148061183e57506117ed612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613fd5565b60405180910390fd5b6000479050600061188c612087565b73ffffffffffffffffffffffffffffffffffffffff16826040516118af90613e3c565b60006040518083038185875af1925050503d80600081146118ec576040519150601f19603f3d011682016040523d82523d6000602084013e6118f1565b606091505b5050905080611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614015565b60405180910390fd5b5050565b611944848484612194565b6119638373ffffffffffffffffffffffffffffffffffffffff16612d9c565b8015611978575061197684848484612dbf565b155b156119af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606119f98261208f565b611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613fb5565b60405180910390fd5b6000600a8054611a4790614363565b905011611a635760405180602001604052806000815250611ac6565b600a611a6e83612f1f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ab693929190613e0b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611aed612087565b73ffffffffffffffffffffffffffffffffffffffff16611b0b6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480611b815750611b30612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613fd5565b60405180910390fd5b611bd1611bcb612087565b82612d7e565b50565b611bdc612087565b73ffffffffffffffffffffffffffffffffffffffff16611bfa6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480611c705750611c1f612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613fd5565b60405180910390fd5b80600c8190555050565b611cc1612087565b73ffffffffffffffffffffffffffffffffffffffff16611cdf6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480611d555750611d04612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613fd5565b60405180910390fd5b80600e8190555050565b600b8054611dab90614363565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd790614363565b8015611e245780601f10611df957610100808354040283529160200191611e24565b820191906000526020600020905b815481529060010190602001808311611e0757829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611e969190613e51565b60206040518083038186803b158015611eae57600080fd5b505afa158015611ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee69190613a75565b73ffffffffffffffffffffffffffffffffffffffff161415611f0c576001915050611f1a565b611f168484613080565b9150505b92915050565b611f28612087565b73ffffffffffffffffffffffffffffffffffffffff16611f466111d0565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613fd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390613f15565b60405180910390fd5b61201581612914565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161209a61218f565b111580156120a9575060005482105b80156120d6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061219f82612685565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121c6612087565b73ffffffffffffffffffffffffffffffffffffffff1614806121f957506121f882600001516121f3612087565b611e2c565b5b8061223e5750612207612087565b73ffffffffffffffffffffffffffffffffffffffff1661222684610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612277576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612347576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123548585856001613114565b61236460008484600001516120dd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612615576000548110156126145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267e858585600161311a565b5050505050565b61268d613586565b60008290508061269b61218f565b111580156126aa575060005481105b156128dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127bf57809250505061290f565b5b6001156128da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d557809250505061290f565b6127c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006129e582612685565b90506129f981600001516000846001613114565b612a0960008383600001516120dd565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612cf557600054811015612cf45781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d688160000151600084600161311a565b6001600081548092919060010191905055505050565b612d98828260405180602001604052806000815250613120565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612de5612087565b8786866040518563ffffffff1660e01b8152600401612e079493929190613e6c565b602060405180830381600087803b158015612e2157600080fd5b505af1925050508015612e5257506040513d601f19601f82011682018060405250810190612e4f9190613a48565b60015b612ecc573d8060008114612e82576040519150601f19603f3d011682016040523d82523d6000602084013e612e87565b606091505b50600081511415612ec4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f67576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061307b565b600082905060005b60008214612f99578080612f82906143c6565b915050600a82612f9291906141dc565b9150612f6f565b60008167ffffffffffffffff811115612fb557612fb46144fc565b5b6040519080825280601f01601f191660200182016040528015612fe75781602001600182028036833780820191505090505b5090505b60008514613074576001826130009190614267565b9150600a8561300f919061440f565b603061301b9190614186565b60f81b818381518110613031576130306144cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561306d91906141dc565b9450612feb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61312d8383836001613132565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561319f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131da576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e76000868387613114565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133b157506133b08773ffffffffffffffffffffffffffffffffffffffff16612d9c565b5b15613477575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134266000888480600101955088612dbf565b61345c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133b757826000541461347257600080fd5b6134e3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613478575b8160008190555050506134f9600086838761311a565b5050505050565b82805461350c90614363565b90600052602060002090601f01602090048101928261352e5760008555613575565b82601f1061354757805160ff1916838001178555613575565b82800160010185558215613575579182015b82811115613574578251825591602001919060010190613559565b5b50905061358291906135c9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135e25760008160009055506001016135ca565b5090565b60006135f96135f484614095565b614070565b9050808382526020820190508285602086028201111561361c5761361b614530565b5b60005b8581101561364c578161363288826137cd565b84526020840193506020830192505060018101905061361f565b5050509392505050565b6000613669613664846140c1565b614070565b90508281526020810184848401111561368557613684614535565b5b613690848285614321565b509392505050565b60006136ab6136a6846140f2565b614070565b9050828152602081018484840111156136c7576136c6614535565b5b6136d2848285614321565b509392505050565b6000813590506136e981614741565b92915050565b600082601f8301126137045761370361452b565b5b81356137148482602086016135e6565b91505092915050565b60008135905061372c81614758565b92915050565b6000813590506137418161476f565b92915050565b6000815190506137568161476f565b92915050565b600082601f8301126137715761377061452b565b5b8135613781848260208601613656565b91505092915050565b60008151905061379981614786565b92915050565b600082601f8301126137b4576137b361452b565b5b81356137c4848260208601613698565b91505092915050565b6000813590506137dc8161479d565b92915050565b6000602082840312156137f8576137f761453f565b5b6000613806848285016136da565b91505092915050565b600080604083850312156138265761382561453f565b5b6000613834858286016136da565b9250506020613845858286016136da565b9150509250929050565b6000806000606084860312156138685761386761453f565b5b6000613876868287016136da565b9350506020613887868287016136da565b9250506040613898868287016137cd565b9150509250925092565b600080600080608085870312156138bc576138bb61453f565b5b60006138ca878288016136da565b94505060206138db878288016136da565b93505060406138ec878288016137cd565b925050606085013567ffffffffffffffff81111561390d5761390c61453a565b5b6139198782880161375c565b91505092959194509250565b6000806040838503121561393c5761393b61453f565b5b600061394a858286016136da565b925050602061395b8582860161371d565b9150509250929050565b6000806040838503121561397c5761397b61453f565b5b600061398a858286016136da565b925050602061399b858286016137cd565b9150509250929050565b6000602082840312156139bb576139ba61453f565b5b600082013567ffffffffffffffff8111156139d9576139d861453a565b5b6139e5848285016136ef565b91505092915050565b600060208284031215613a0457613a0361453f565b5b6000613a128482850161371d565b91505092915050565b600060208284031215613a3157613a3061453f565b5b6000613a3f84828501613732565b91505092915050565b600060208284031215613a5e57613a5d61453f565b5b6000613a6c84828501613747565b91505092915050565b600060208284031215613a8b57613a8a61453f565b5b6000613a998482850161378a565b91505092915050565b600060208284031215613ab857613ab761453f565b5b600082013567ffffffffffffffff811115613ad657613ad561453a565b5b613ae28482850161379f565b91505092915050565b600060208284031215613b0157613b0061453f565b5b6000613b0f848285016137cd565b91505092915050565b613b218161429b565b82525050565b613b30816142ad565b82525050565b6000613b4182614138565b613b4b818561414e565b9350613b5b818560208601614330565b613b6481614544565b840191505092915050565b6000613b7a82614143565b613b84818561416a565b9350613b94818560208601614330565b613b9d81614544565b840191505092915050565b6000613bb382614143565b613bbd818561417b565b9350613bcd818560208601614330565b80840191505092915050565b60008154613be681614363565b613bf0818661417b565b94506001821660008114613c0b5760018114613c1c57613c4f565b60ff19831686528186019350613c4f565b613c2585614123565b60005b83811015613c4757815481890152600182019150602081019050613c28565b838801955050505b50505092915050565b6000613c6560068361416a565b9150613c7082614555565b602082019050919050565b6000613c8860268361416a565b9150613c938261457e565b604082019050919050565b6000613cab600a8361416a565b9150613cb6826145cd565b602082019050919050565b6000613cce60168361416a565b9150613cd9826145f6565b602082019050919050565b6000613cf160168361416a565b9150613cfc8261461f565b602082019050919050565b6000613d1460128361416a565b9150613d1f82614648565b602082019050919050565b6000613d3760158361416a565b9150613d4282614671565b602082019050919050565b6000613d5a60208361416a565b9150613d658261469a565b602082019050919050565b6000613d7d60168361416a565b9150613d88826146c3565b602082019050919050565b6000613da060008361415f565b9150613dab826146ec565b600082019050919050565b6000613dc3600e8361416a565b9150613dce826146ef565b602082019050919050565b6000613de6600c8361416a565b9150613df182614718565b602082019050919050565b613e0581614317565b82525050565b6000613e178286613bd9565b9150613e238285613ba8565b9150613e2f8284613ba8565b9150819050949350505050565b6000613e4782613d93565b9150819050919050565b6000602082019050613e666000830184613b18565b92915050565b6000608082019050613e816000830187613b18565b613e8e6020830186613b18565b613e9b6040830185613dfc565b8181036060830152613ead8184613b36565b905095945050505050565b6000602082019050613ecd6000830184613b27565b92915050565b60006020820190508181036000830152613eed8184613b6f565b905092915050565b60006020820190508181036000830152613f0e81613c58565b9050919050565b60006020820190508181036000830152613f2e81613c7b565b9050919050565b60006020820190508181036000830152613f4e81613c9e565b9050919050565b60006020820190508181036000830152613f6e81613cc1565b9050919050565b60006020820190508181036000830152613f8e81613ce4565b9050919050565b60006020820190508181036000830152613fae81613d07565b9050919050565b60006020820190508181036000830152613fce81613d2a565b9050919050565b60006020820190508181036000830152613fee81613d4d565b9050919050565b6000602082019050818103600083015261400e81613d70565b9050919050565b6000602082019050818103600083015261402e81613db6565b9050919050565b6000602082019050818103600083015261404e81613dd9565b9050919050565b600060208201905061406a6000830184613dfc565b92915050565b600061407a61408b565b90506140868282614395565b919050565b6000604051905090565b600067ffffffffffffffff8211156140b0576140af6144fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140dc576140db6144fc565b5b6140e582614544565b9050602081019050919050565b600067ffffffffffffffff82111561410d5761410c6144fc565b5b61411682614544565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419182614317565b915061419c83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141d1576141d0614440565b5b828201905092915050565b60006141e782614317565b91506141f283614317565b9250826142025761420161446f565b5b828204905092915050565b600061421882614317565b915061422383614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425c5761425b614440565b5b828202905092915050565b600061427282614317565b915061427d83614317565b9250828210156142905761428f614440565b5b828203905092915050565b60006142a6826142f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142f08261429b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434e578082015181840152602081019050614333565b8381111561435d576000848401525b50505050565b6000600282049050600182168061437b57607f821691505b6020821081141561438f5761438e61449e565b5b50919050565b61439e82614544565b810181811067ffffffffffffffff821117156143bd576143bc6144fc565b5b80604052505050565b60006143d182614317565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440457614403614440565b5b600182019050919050565b600061441a82614317565b915061442583614317565b9250826144355761443461446f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61474a8161429b565b811461475557600080fd5b50565b614761816142ad565b811461476c57600080fd5b50565b614778816142b9565b811461478357600080fd5b50565b61478f816142e5565b811461479a57600080fd5b50565b6147a681614317565b81146147b157600080fd5b5056fea264697066735822122072116598f7fac96fd5b29b60e4e46492d54d63d463cad4f7e3b954dc9701767864736f6c63430008070033697066733a2f2f516d6469526533397a7a52625a6b42376d56636d397169726a79344c4e37757438565755684271454c3653523866
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80638a333b5011610123578063c6682862116100ab578063db4a0f611161006f578063db4a0f611461078a578063e8a3d485146107b3578063e985e9c5146107de578063f2fde38b1461081b578063f43a22dc146108445761021a565b8063c6682862146106a5578063c87b56dd146106d0578063cd7c03261461070d578063ce3f865f14610738578063d476de1b146107615761021a565b8063a035b1fe116100f2578063a035b1fe146105f5578063a0712d6814610620578063a22cb4651461063c578063b2a1449b14610665578063b88d4fde1461067c5761021a565b80638a333b501461054b5780638da5cb5b14610576578063938e3d7b146105a157806395d89b41146105ca5761021a565b806342842e0e116101a65780636352211e116101755780636352211e146104665780636c0360eb146104a357806370a08231146104ce578063715018a61461050b578063725d46fd146105225761021a565b806342842e0e146103be578063463fff79146103e757806355f804b3146104125780635c975abb1461043b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd1461031657806318e223dd1461034157806323b872dd1461036a57806326e987d7146103935761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613a1b565b61086f565b6040516102539190613eb8565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906139ee565b610951565b005b34801561029157600080fd5b5061029a610a49565b6040516102a79190613ed3565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613aeb565b610adb565b6040516102e49190613e51565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613965565b610b57565b005b34801561032257600080fd5b5061032b610c62565b6040516103389190614055565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613aeb565b610c79565b005b34801561037657600080fd5b50610391600480360381019061038c919061384f565b610d5e565b005b34801561039f57600080fd5b506103a8610d6e565b6040516103b59190614055565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e0919061384f565b610d74565b005b3480156103f357600080fd5b506103fc610d94565b6040516104099190614055565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613aa2565b610d99565b005b34801561044757600080fd5b50610450610e8e565b60405161045d9190613eb8565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613aeb565b610ea1565b60405161049a9190613e51565b60405180910390f35b3480156104af57600080fd5b506104b8610eb7565b6040516104c59190613ed3565b60405180910390f35b3480156104da57600080fd5b506104f560048036038101906104f091906137e2565b610f45565b6040516105029190614055565b60405180910390f35b34801561051757600080fd5b50610520611015565b005b34801561052e57600080fd5b50610549600480360381019061054491906139a5565b61109d565b005b34801561055757600080fd5b506105606111ca565b60405161056d9190614055565b60405180910390f35b34801561058257600080fd5b5061058b6111d0565b6040516105989190613e51565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613aa2565b6111fa565b005b3480156105d657600080fd5b506105df6112ef565b6040516105ec9190613ed3565b60405180910390f35b34801561060157600080fd5b5061060a611381565b6040516106179190614055565b60405180910390f35b61063a60048036038101906106359190613aeb565b611387565b005b34801561064857600080fd5b50610663600480360381019061065e9190613925565b61162a565b005b34801561067157600080fd5b5061067a6117a2565b005b34801561068857600080fd5b506106a3600480360381019061069e91906138a2565b611939565b005b3480156106b157600080fd5b506106ba6119b5565b6040516106c79190613ed3565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f29190613aeb565b6119ee565b6040516107049190613ed3565b60405180910390f35b34801561071957600080fd5b50610722611acd565b60405161072f9190613e51565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613aeb565b611ae5565b005b34801561076d57600080fd5b5061078860048036038101906107839190613aeb565b611bd4565b005b34801561079657600080fd5b506107b160048036038101906107ac9190613aeb565b611cb9565b005b3480156107bf57600080fd5b506107c8611d9e565b6040516107d59190613ed3565b60405180910390f35b3480156107ea57600080fd5b506108056004803603810190610800919061380f565b611e2c565b6040516108129190613eb8565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d91906137e2565b611f20565b005b34801561085057600080fd5b50610859612018565b6040516108669190614055565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a57506109498261201d565b5b9050919050565b610959612087565b73ffffffffffffffffffffffffffffffffffffffff166109776111d0565b73ffffffffffffffffffffffffffffffffffffffff1614806109ed575061099c612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390613fd5565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a5890614363565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490614363565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae68261208f565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6282610ea1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bca576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be9612087565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c1b5750610c1981610c14612087565b611e2c565b155b15610c52576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c5d8383836120dd565b505050565b6000610c6c61218f565b6001546000540303905090565b610c81612087565b73ffffffffffffffffffffffffffffffffffffffff16610c9f6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480610d155750610cc4612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90613fd5565b60405180910390fd5b80600d8190555050565b610d69838383612194565b505050565b600c5481565b610d8f83838360405180602001604052806000815250611939565b505050565b600281565b610da1612087565b73ffffffffffffffffffffffffffffffffffffffff16610dbf6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480610e355750610de4612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613fd5565b60405180910390fd5b80600a9080519060200190610e8a929190613500565b5050565b600f60009054906101000a900460ff1681565b6000610eac82612685565b600001519050919050565b600a8054610ec490614363565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef090614363565b8015610f3d5780601f10610f1257610100808354040283529160200191610f3d565b820191906000526020600020905b815481529060010190602001808311610f2057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fad576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61101d612087565b73ffffffffffffffffffffffffffffffffffffffff1661103b6111d0565b73ffffffffffffffffffffffffffffffffffffffff1614611091576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108890613fd5565b60405180910390fd5b61109b6000612914565b565b6110a5612087565b73ffffffffffffffffffffffffffffffffffffffff166110c36111d0565b73ffffffffffffffffffffffffffffffffffffffff16148061113957506110e8612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90613fd5565b60405180910390fd5b60008151905060005b818110156111c557600083828151811061119e5761119d6144cd565b5b602002602001015190506111b1816129da565b5080806111bd906143c6565b915050611181565b505050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611202612087565b73ffffffffffffffffffffffffffffffffffffffff166112206111d0565b73ffffffffffffffffffffffffffffffffffffffff1614806112965750611245612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90613fd5565b60405180910390fd5b80600b90805190602001906112eb929190613500565b5050565b6060600380546112fe90614363565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90614363565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b600e5481565b6000611391612087565b9050600f60009054906101000a900460ff16156113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da90613ef5565b60405180910390fd5b816113ec610c62565b6113f69190614186565b600d54101561143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190613f95565b60405180910390fd5b6000821161147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613f35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614035565b60405180910390fd5b816014101561152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690613f55565b60405180910390fd5b611537610c62565b600c5410611588578160021015611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90613f75565b60405180910390fd5b61161c565b81601410156115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390613f55565b60405180910390fd5b34600e54836115db919061420d565b1461161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290613ff5565b60405180910390fd5b5b6116268183612d7e565b5050565b611632612087565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611697576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116a4612087565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611751612087565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117969190613eb8565b60405180910390a35050565b6117aa612087565b73ffffffffffffffffffffffffffffffffffffffff166117c86111d0565b73ffffffffffffffffffffffffffffffffffffffff16148061183e57506117ed612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613fd5565b60405180910390fd5b6000479050600061188c612087565b73ffffffffffffffffffffffffffffffffffffffff16826040516118af90613e3c565b60006040518083038185875af1925050503d80600081146118ec576040519150601f19603f3d011682016040523d82523d6000602084013e6118f1565b606091505b5050905080611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c90614015565b60405180910390fd5b5050565b611944848484612194565b6119638373ffffffffffffffffffffffffffffffffffffffff16612d9c565b8015611978575061197684848484612dbf565b155b156119af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606119f98261208f565b611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613fb5565b60405180910390fd5b6000600a8054611a4790614363565b905011611a635760405180602001604052806000815250611ac6565b600a611a6e83612f1f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ab693929190613e0b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611aed612087565b73ffffffffffffffffffffffffffffffffffffffff16611b0b6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480611b815750611b30612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613fd5565b60405180910390fd5b611bd1611bcb612087565b82612d7e565b50565b611bdc612087565b73ffffffffffffffffffffffffffffffffffffffff16611bfa6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480611c705750611c1f612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613fd5565b60405180910390fd5b80600c8190555050565b611cc1612087565b73ffffffffffffffffffffffffffffffffffffffff16611cdf6111d0565b73ffffffffffffffffffffffffffffffffffffffff161480611d555750611d04612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613fd5565b60405180910390fd5b80600e8190555050565b600b8054611dab90614363565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd790614363565b8015611e245780601f10611df957610100808354040283529160200191611e24565b820191906000526020600020905b815481529060010190602001808311611e0757829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611e969190613e51565b60206040518083038186803b158015611eae57600080fd5b505afa158015611ec2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee69190613a75565b73ffffffffffffffffffffffffffffffffffffffff161415611f0c576001915050611f1a565b611f168484613080565b9150505b92915050565b611f28612087565b73ffffffffffffffffffffffffffffffffffffffff16611f466111d0565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613fd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390613f15565b60405180910390fd5b61201581612914565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161209a61218f565b111580156120a9575060005482105b80156120d6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061219f82612685565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121c6612087565b73ffffffffffffffffffffffffffffffffffffffff1614806121f957506121f882600001516121f3612087565b611e2c565b5b8061223e5750612207612087565b73ffffffffffffffffffffffffffffffffffffffff1661222684610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612277576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612347576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123548585856001613114565b61236460008484600001516120dd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612615576000548110156126145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267e858585600161311a565b5050505050565b61268d613586565b60008290508061269b61218f565b111580156126aa575060005481105b156128dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127bf57809250505061290f565b5b6001156128da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d557809250505061290f565b6127c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006129e582612685565b90506129f981600001516000846001613114565b612a0960008383600001516120dd565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612cf557600054811015612cf45781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d688160000151600084600161311a565b6001600081548092919060010191905055505050565b612d98828260405180602001604052806000815250613120565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612de5612087565b8786866040518563ffffffff1660e01b8152600401612e079493929190613e6c565b602060405180830381600087803b158015612e2157600080fd5b505af1925050508015612e5257506040513d601f19601f82011682018060405250810190612e4f9190613a48565b60015b612ecc573d8060008114612e82576040519150601f19603f3d011682016040523d82523d6000602084013e612e87565b606091505b50600081511415612ec4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f67576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061307b565b600082905060005b60008214612f99578080612f82906143c6565b915050600a82612f9291906141dc565b9150612f6f565b60008167ffffffffffffffff811115612fb557612fb46144fc565b5b6040519080825280601f01601f191660200182016040528015612fe75781602001600182028036833780820191505090505b5090505b60008514613074576001826130009190614267565b9150600a8561300f919061440f565b603061301b9190614186565b60f81b818381518110613031576130306144cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561306d91906141dc565b9450612feb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61312d8383836001613132565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561319f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131da576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e76000868387613114565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133b157506133b08773ffffffffffffffffffffffffffffffffffffffff16612d9c565b5b15613477575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134266000888480600101955088612dbf565b61345c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133b757826000541461347257600080fd5b6134e3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613478575b8160008190555050506134f9600086838761311a565b5050505050565b82805461350c90614363565b90600052602060002090601f01602090048101928261352e5760008555613575565b82601f1061354757805160ff1916838001178555613575565b82800160010185558215613575579182015b82811115613574578251825591602001919060010190613559565b5b50905061358291906135c9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135e25760008160009055506001016135ca565b5090565b60006135f96135f484614095565b614070565b9050808382526020820190508285602086028201111561361c5761361b614530565b5b60005b8581101561364c578161363288826137cd565b84526020840193506020830192505060018101905061361f565b5050509392505050565b6000613669613664846140c1565b614070565b90508281526020810184848401111561368557613684614535565b5b613690848285614321565b509392505050565b60006136ab6136a6846140f2565b614070565b9050828152602081018484840111156136c7576136c6614535565b5b6136d2848285614321565b509392505050565b6000813590506136e981614741565b92915050565b600082601f8301126137045761370361452b565b5b81356137148482602086016135e6565b91505092915050565b60008135905061372c81614758565b92915050565b6000813590506137418161476f565b92915050565b6000815190506137568161476f565b92915050565b600082601f8301126137715761377061452b565b5b8135613781848260208601613656565b91505092915050565b60008151905061379981614786565b92915050565b600082601f8301126137b4576137b361452b565b5b81356137c4848260208601613698565b91505092915050565b6000813590506137dc8161479d565b92915050565b6000602082840312156137f8576137f761453f565b5b6000613806848285016136da565b91505092915050565b600080604083850312156138265761382561453f565b5b6000613834858286016136da565b9250506020613845858286016136da565b9150509250929050565b6000806000606084860312156138685761386761453f565b5b6000613876868287016136da565b9350506020613887868287016136da565b9250506040613898868287016137cd565b9150509250925092565b600080600080608085870312156138bc576138bb61453f565b5b60006138ca878288016136da565b94505060206138db878288016136da565b93505060406138ec878288016137cd565b925050606085013567ffffffffffffffff81111561390d5761390c61453a565b5b6139198782880161375c565b91505092959194509250565b6000806040838503121561393c5761393b61453f565b5b600061394a858286016136da565b925050602061395b8582860161371d565b9150509250929050565b6000806040838503121561397c5761397b61453f565b5b600061398a858286016136da565b925050602061399b858286016137cd565b9150509250929050565b6000602082840312156139bb576139ba61453f565b5b600082013567ffffffffffffffff8111156139d9576139d861453a565b5b6139e5848285016136ef565b91505092915050565b600060208284031215613a0457613a0361453f565b5b6000613a128482850161371d565b91505092915050565b600060208284031215613a3157613a3061453f565b5b6000613a3f84828501613732565b91505092915050565b600060208284031215613a5e57613a5d61453f565b5b6000613a6c84828501613747565b91505092915050565b600060208284031215613a8b57613a8a61453f565b5b6000613a998482850161378a565b91505092915050565b600060208284031215613ab857613ab761453f565b5b600082013567ffffffffffffffff811115613ad657613ad561453a565b5b613ae28482850161379f565b91505092915050565b600060208284031215613b0157613b0061453f565b5b6000613b0f848285016137cd565b91505092915050565b613b218161429b565b82525050565b613b30816142ad565b82525050565b6000613b4182614138565b613b4b818561414e565b9350613b5b818560208601614330565b613b6481614544565b840191505092915050565b6000613b7a82614143565b613b84818561416a565b9350613b94818560208601614330565b613b9d81614544565b840191505092915050565b6000613bb382614143565b613bbd818561417b565b9350613bcd818560208601614330565b80840191505092915050565b60008154613be681614363565b613bf0818661417b565b94506001821660008114613c0b5760018114613c1c57613c4f565b60ff19831686528186019350613c4f565b613c2585614123565b60005b83811015613c4757815481890152600182019150602081019050613c28565b838801955050505b50505092915050565b6000613c6560068361416a565b9150613c7082614555565b602082019050919050565b6000613c8860268361416a565b9150613c938261457e565b604082019050919050565b6000613cab600a8361416a565b9150613cb6826145cd565b602082019050919050565b6000613cce60168361416a565b9150613cd9826145f6565b602082019050919050565b6000613cf160168361416a565b9150613cfc8261461f565b602082019050919050565b6000613d1460128361416a565b9150613d1f82614648565b602082019050919050565b6000613d3760158361416a565b9150613d4282614671565b602082019050919050565b6000613d5a60208361416a565b9150613d658261469a565b602082019050919050565b6000613d7d60168361416a565b9150613d88826146c3565b602082019050919050565b6000613da060008361415f565b9150613dab826146ec565b600082019050919050565b6000613dc3600e8361416a565b9150613dce826146ef565b602082019050919050565b6000613de6600c8361416a565b9150613df182614718565b602082019050919050565b613e0581614317565b82525050565b6000613e178286613bd9565b9150613e238285613ba8565b9150613e2f8284613ba8565b9150819050949350505050565b6000613e4782613d93565b9150819050919050565b6000602082019050613e666000830184613b18565b92915050565b6000608082019050613e816000830187613b18565b613e8e6020830186613b18565b613e9b6040830185613dfc565b8181036060830152613ead8184613b36565b905095945050505050565b6000602082019050613ecd6000830184613b27565b92915050565b60006020820190508181036000830152613eed8184613b6f565b905092915050565b60006020820190508181036000830152613f0e81613c58565b9050919050565b60006020820190508181036000830152613f2e81613c7b565b9050919050565b60006020820190508181036000830152613f4e81613c9e565b9050919050565b60006020820190508181036000830152613f6e81613cc1565b9050919050565b60006020820190508181036000830152613f8e81613ce4565b9050919050565b60006020820190508181036000830152613fae81613d07565b9050919050565b60006020820190508181036000830152613fce81613d2a565b9050919050565b60006020820190508181036000830152613fee81613d4d565b9050919050565b6000602082019050818103600083015261400e81613d70565b9050919050565b6000602082019050818103600083015261402e81613db6565b9050919050565b6000602082019050818103600083015261404e81613dd9565b9050919050565b600060208201905061406a6000830184613dfc565b92915050565b600061407a61408b565b90506140868282614395565b919050565b6000604051905090565b600067ffffffffffffffff8211156140b0576140af6144fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140dc576140db6144fc565b5b6140e582614544565b9050602081019050919050565b600067ffffffffffffffff82111561410d5761410c6144fc565b5b61411682614544565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419182614317565b915061419c83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141d1576141d0614440565b5b828201905092915050565b60006141e782614317565b91506141f283614317565b9250826142025761420161446f565b5b828204905092915050565b600061421882614317565b915061422383614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425c5761425b614440565b5b828202905092915050565b600061427282614317565b915061427d83614317565b9250828210156142905761428f614440565b5b828203905092915050565b60006142a6826142f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142f08261429b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434e578082015181840152602081019050614333565b8381111561435d576000848401525b50505050565b6000600282049050600182168061437b57607f821691505b6020821081141561438f5761438e61449e565b5b50919050565b61439e82614544565b810181811067ffffffffffffffff821117156143bd576143bc6144fc565b5b80604052505050565b60006143d182614317565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440457614403614440565b5b600182019050919050565b600061441a82614317565b915061442583614317565b9250826144355761443461446f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61474a8161429b565b811461475557600080fd5b50565b614761816142ad565b811461476c57600080fd5b50565b614778816142b9565b811461478357600080fd5b50565b61478f816142e5565b811461479a57600080fd5b50565b6147a681614317565b81146147b157600080fd5b5056fea264697066735822122072116598f7fac96fd5b29b60e4e46492d54d63d463cad4f7e3b954dc9701767864736f6c63430008070033
Deployed Bytecode Sourcemap
46072:3476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28605:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48248:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31990:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33493:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33056:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27854:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48668:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34350:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46454:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34591:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46404:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48337:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46625:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31799:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46130:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28974:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2802:103;;;;;;;;;;;;;:::i;:::-;;48912:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46543:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2151:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48445:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32159:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46582:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46720:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33769:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47920:204;;;;;;;;;;;;;:::i;:::-;;34847:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46253:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49183:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46306:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48132:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48779:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48569:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46163:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47467:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3060:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46497:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28605:305;28707:4;28759:25;28744:40;;;:11;:40;;;;:105;;;;28816:33;28801:48;;;:11;:48;;;;28744:105;:158;;;;28866:36;28890:11;28866:23;:36::i;:::-;28744:158;28724:178;;28605:305;;;:::o;48248:81::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48315:6:::1;48306;;:15;;;;;;;;;;;;;;;;;;48248:81:::0;:::o;31990:100::-;32044:13;32077:5;32070:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31990:100;:::o;33493:204::-;33561:7;33586:16;33594:7;33586;:16::i;:::-;33581:64;;33611:34;;;;;;;;;;;;;;33581:64;33665:15;:24;33681:7;33665:24;;;;;;;;;;;;;;;;;;;;;33658:31;;33493:204;;;:::o;33056:371::-;33129:13;33145:24;33161:7;33145:15;:24::i;:::-;33129:40;;33190:5;33184:11;;:2;:11;;;33180:48;;;33204:24;;;;;;;;;;;;;;33180:48;33261:5;33245:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33271:37;33288:5;33295:12;:10;:12::i;:::-;33271:16;:37::i;:::-;33270:38;33245:63;33241:138;;;33332:35;;;;;;;;;;;;;;33241:138;33391:28;33400:2;33404:7;33413:5;33391:8;:28::i;:::-;33118:309;33056:371;;:::o;27854:303::-;27898:7;28123:15;:13;:15::i;:::-;28108:12;;28092:13;;:28;:46;28085:53;;27854:303;:::o;48668:103::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48754:9:::1;48741:10;:22;;;;48668:103:::0;:::o;34350:170::-;34484:28;34494:4;34500:2;34504:7;34484:9;:28::i;:::-;34350:170;;;:::o;46454:36::-;;;;:::o;34591:185::-;34729:39;34746:4;34752:2;34756:7;34729:39;;;;;;;;;;;;:16;:39::i;:::-;34591:185;;;:::o;46404:43::-;46446:1;46404:43;:::o;48337:100::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48421:8:::1;48411:7;:18;;;;;;;;;;;;:::i;:::-;;48337:100:::0;:::o;46625:25::-;;;;;;;;;;;;;:::o;31799:124::-;31863:7;31890:20;31902:7;31890:11;:20::i;:::-;:25;;;31883:32;;31799:124;;;:::o;46130:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28974:206::-;29038:7;29079:1;29062:19;;:5;:19;;;29058:60;;;29090:28;;;;;;;;;;;;;;29058:60;29144:12;:19;29157:5;29144:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29136:36;;29129:43;;28974:206;;;:::o;2802:103::-;2382:12;:10;:12::i;:::-;2371:23;;:7;:5;:7::i;:::-;:23;;;2363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;48912:237::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48987:11:::1;49001:8;:15;48987:29;;49032:9;49027:115;49047:3;49043:1;:7;49027:115;;;49072:15;49090:8;49099:1;49090:11;;;;;;;;:::i;:::-;;;;;;;;49072:29;;49116:14;49122:7;49116:5;:14::i;:::-;49057:85;49052:3;;;;;:::i;:::-;;;;49027:115;;;;48976:173;48912:237:::0;:::o;46543:32::-;;;;:::o;2151:87::-;2197:7;2224:6;;;;;;;;;;;2217:13;;2151:87;:::o;48445:116::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48541:12:::1;48527:11;:26;;;;;;;;;;;;:::i;:::-;;48445:116:::0;:::o;32159:104::-;32215:13;32248:7;32241:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32159:104;:::o;46582:34::-;;;;:::o;46720:733::-;46779:15;46797:12;:10;:12::i;:::-;46779:30;;46829:6;;;;;;;;;;;46828:7;46820:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46895:7;46879:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46865:10;;:37;;46857:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46954:1;46944:7;:11;46936:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47002:7;46989:20;;:9;:20;;;46981:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47059:7;46534:2;47045:21;;47037:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47135:13;:11;:13::i;:::-;47116:15;;:32;47113:291;;47191:7;46446:1;47172:26;;47164:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47113:291;;;47279:7;46534:2;47265:21;;47257:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47356:9;47347:5;;47337:7;:15;;;;:::i;:::-;:28;47329:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47113:291;47418:27;47428:7;47437;47418:9;:27::i;:::-;46768:685;46720:733;:::o;33769:279::-;33872:12;:10;:12::i;:::-;33860:24;;:8;:24;;;33856:54;;;33893:17;;;;;;;;;;;;;;33856:54;33968:8;33923:18;:32;33942:12;:10;:12::i;:::-;33923:32;;;;;;;;;;;;;;;:42;33956:8;33923:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34021:8;33992:48;;34007:12;:10;:12::i;:::-;33992:48;;;34031:8;33992:48;;;;;;:::i;:::-;;;;;;;;33769:279;;:::o;47920:204::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47965:15:::1;47983:21;47965:39;;48016:12;48034;:10;:12::i;:::-;:17;;48059:7;48034:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48015:56;;;48090:7;48082:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47954:170;;47920:204::o:0;34847:369::-;35014:28;35024:4;35030:2;35034:7;35014:9;:28::i;:::-;35057:15;:2;:13;;;:15::i;:::-;:76;;;;;35077:56;35108:4;35114:2;35118:7;35127:5;35077:30;:56::i;:::-;35076:57;35057:76;35053:156;;;35157:40;;;;;;;;;;;;;;35053:156;34847:369;;;;:::o;46253:46::-;;;;;;;;;;;;;;;;;;;:::o;49183:362::-;49249:13;49283:17;49291:8;49283:7;:17::i;:::-;49275:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49368:1;49350:7;49344:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49426:7;49450:26;49467:8;49450:16;:26::i;:::-;49493:13;;;;;;;;;;;;;;;;;49393:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49344:193;49337:200;;49183:362;;;:::o;46306:89::-;46353:42;46306:89;:::o;48132:106::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48197:33:::1;48207:12;:10;:12::i;:::-;48221:8;48197:9;:33::i;:::-;48132:106:::0;:::o;48779:121::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48879:13:::1;48861:15;:31;;;;48779:121:::0;:::o;48569:91::-;25084:12;:10;:12::i;:::-;25073:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;25110:12;:10;:12::i;:::-;25100:22;;:6;;;;;;;;;;;:22;;;25073:49;25065:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48644:8:::1;48636:5;:16;;;;48569:91:::0;:::o;46163:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47467:445::-;47592:4;47677:27;46353:42;47677:65;;47798:8;47757:49;;47765:13;:21;;;47787:5;47765:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47757:49;;;47753:93;;;47830:4;47823:11;;;;;47753:93;47865:39;47888:5;47895:8;47865:22;:39::i;:::-;47858:46;;;47467:445;;;;;:::o;3060:201::-;2382:12;:10;:12::i;:::-;2371:23;;:7;:5;:7::i;:::-;:23;;;2363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3169:1:::1;3149:22;;:8;:22;;;;3141:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;46497:39::-;46534:2;46497:39;:::o;23705:157::-;23790:4;23829:25;23814:40;;;:11;:40;;;;23807:47;;23705:157;;;:::o;892:98::-;945:7;972:10;965:17;;892:98;:::o;35471:187::-;35528:4;35571:7;35552:15;:13;:15::i;:::-;:26;;:53;;;;;35592:13;;35582:7;:23;35552:53;:98;;;;;35623:11;:20;35635:7;35623:20;;;;;;;;;;;:27;;;;;;;;;;;;35622:28;35552:98;35545:105;;35471:187;;;:::o;43082:196::-;43224:2;43197:15;:24;43213:7;43197:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43262:7;43258:2;43242:28;;43251:5;43242:28;;;;;;;;;;;;43082:196;;;:::o;27578:92::-;27634:7;27578:92;:::o;38584:2112::-;38699:35;38737:20;38749:7;38737:11;:20::i;:::-;38699:58;;38770:22;38812:13;:18;;;38796:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38847:50;38864:13;:18;;;38884:12;:10;:12::i;:::-;38847:16;:50::i;:::-;38796:101;:154;;;;38938:12;:10;:12::i;:::-;38914:36;;:20;38926:7;38914:11;:20::i;:::-;:36;;;38796:154;38770:181;;38969:17;38964:66;;38995:35;;;;;;;;;;;;;;38964:66;39067:4;39045:26;;:13;:18;;;:26;;;39041:67;;39080:28;;;;;;;;;;;;;;39041:67;39137:1;39123:16;;:2;:16;;;39119:52;;;39148:23;;;;;;;;;;;;;;39119:52;39184:43;39206:4;39212:2;39216:7;39225:1;39184:21;:43::i;:::-;39292:49;39309:1;39313:7;39322:13;:18;;;39292:8;:49::i;:::-;39667:1;39637:12;:18;39650:4;39637:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39711:1;39683:12;:16;39696:2;39683:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39757:2;39729:11;:20;39741:7;39729:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39819:15;39774:11;:20;39786:7;39774:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40087:19;40119:1;40109:7;:11;40087:33;;40180:1;40139:43;;:11;:24;40151:11;40139:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40135:445;;;40364:13;;40350:11;:27;40346:219;;;40434:13;:18;;;40402:11;:24;40414:11;40402:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40517:13;:28;;;40475:11;:24;40487:11;40475:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40346:219;40135:445;39612:979;40627:7;40623:2;40608:27;;40617:4;40608:27;;;;;;;;;;;;40646:42;40667:4;40673:2;40677:7;40686:1;40646:20;:42::i;:::-;38688:2008;;38584:2112;;;:::o;30629:1108::-;30690:21;;:::i;:::-;30724:12;30739:7;30724:22;;30807:4;30788:15;:13;:15::i;:::-;:23;;:47;;;;;30822:13;;30815:4;:20;30788:47;30784:886;;;30856:31;30890:11;:17;30902:4;30890:17;;;;;;;;;;;30856:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30931:9;:16;;;30926:729;;31002:1;30976:28;;:9;:14;;;:28;;;30972:101;;31040:9;31033:16;;;;;;30972:101;31375:261;31382:4;31375:261;;;31415:6;;;;;;;;31460:11;:17;31472:4;31460:17;;;;;;;;;;;31448:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31534:1;31508:28;;:9;:14;;;:28;;;31504:109;;31576:9;31569:16;;;;;;31504:109;31375:261;;;30926:729;30837:833;30784:886;31698:31;;;;;;;;;;;;;;30629:1108;;;;:::o;3421:191::-;3495:16;3514:6;;;;;;;;;;;3495:25;;3540:8;3531:6;;:17;;;;;;;;;;;;;;;;;;3595:8;3564:40;;3585:8;3564:40;;;;;;;;;;;;3484:128;3421:191;:::o;40925:2039::-;40985:35;41023:20;41035:7;41023:11;:20::i;:::-;40985:58;;41056:65;41078:13;:18;;;41106:1;41110:7;41119:1;41056:21;:65::i;:::-;41186:49;41203:1;41207:7;41216:13;:18;;;41186:8;:49::i;:::-;41575:1;41531:12;:32;41544:13;:18;;;41531:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41640:1;41591:12;:32;41604:13;:18;;;41591:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41768:13;:18;;;41740:11;:20;41752:7;41740:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;41846:15;41801:11;:20;41813:7;41801:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41907:4;41877:11;:20;41889:7;41877:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;42159:19;42191:1;42181:7;:11;42159:33;;42252:1;42211:43;;:11;:24;42223:11;42211:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42207:445;;;42436:13;;42422:11;:27;42418:219;;;42506:13;:18;;;42474:11;:24;42486:11;42474:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42589:13;:28;;;42547:11;:24;42559:11;42547:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42418:219;42207:445;41506:1157;42721:7;42717:1;42680:49;;42689:13;:18;;;42680:49;;;;;;;;;;;;42740:64;42761:13;:18;;;42789:1;42793:7;42802:1;42740:20;:64::i;:::-;42931:12;;:14;;;;;;;;;;;;;40974:1990;40925:2039;:::o;35666:104::-;35735:27;35745:2;35749:8;35735:27;;;;;;;;;;;;:9;:27::i;:::-;35666:104;;:::o;13482:326::-;13542:4;13799:1;13777:7;:19;;;:23;13770:30;;13482:326;;;:::o;43770:667::-;43933:4;43970:2;43954:36;;;43991:12;:10;:12::i;:::-;44005:4;44011:7;44020:5;43954:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43950:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44205:1;44188:6;:13;:18;44184:235;;;44234:40;;;;;;;;;;;;;;44184:235;44377:6;44371:13;44362:6;44358:2;44354:15;44347:38;43950:480;44083:45;;;44073:55;;;:6;:55;;;;44066:62;;;43770:667;;;;;;:::o;21102:723::-;21158:13;21388:1;21379:5;:10;21375:53;;;21406:10;;;;;;;;;;;;;;;;;;;;;21375:53;21438:12;21453:5;21438:20;;21469:14;21494:78;21509:1;21501:4;:9;21494:78;;21527:8;;;;;:::i;:::-;;;;21558:2;21550:10;;;;;:::i;:::-;;;21494:78;;;21582:19;21614:6;21604:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21582:39;;21632:154;21648:1;21639:5;:10;21632:154;;21676:1;21666:11;;;;;:::i;:::-;;;21743:2;21735:5;:10;;;;:::i;:::-;21722:2;:24;;;;:::i;:::-;21709:39;;21692:6;21699;21692:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21772:2;21763:11;;;;;:::i;:::-;;;21632:154;;;21810:6;21796:21;;;;;21102:723;;;;:::o;34119:164::-;34216:4;34240:18;:25;34259:5;34240:25;;;;;;;;;;;;;;;:35;34266:8;34240:35;;;;;;;;;;;;;;;;;;;;;;;;;34233:42;;34119:164;;;;:::o;45085:159::-;;;;;:::o;45903:158::-;;;;;:::o;36133:163::-;36256:32;36262:2;36266:8;36276:5;36283:4;36256:5;:32::i;:::-;36133:163;;;:::o;36555:1775::-;36694:20;36717:13;;36694:36;;36759:1;36745:16;;:2;:16;;;36741:48;;;36770:19;;;;;;;;;;;;;;36741:48;36816:1;36804:8;:13;36800:44;;;36826:18;;;;;;;;;;;;;;36800:44;36857:61;36887:1;36891:2;36895:12;36909:8;36857:21;:61::i;:::-;37230:8;37195:12;:16;37208:2;37195:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37294:8;37254:12;:16;37267:2;37254:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37353:2;37320:11;:25;37332:12;37320:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37420:15;37370:11;:25;37382:12;37370:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37453:20;37476:12;37453:35;;37503:11;37532:8;37517:12;:23;37503:37;;37561:4;:23;;;;;37569:15;:2;:13;;;:15::i;:::-;37561:23;37557:641;;;37605:314;37661:12;37657:2;37636:38;;37653:1;37636:38;;;;;;;;;;;;37702:69;37741:1;37745:2;37749:14;;;;;;37765:5;37702:30;:69::i;:::-;37697:174;;37807:40;;;;;;;;;;;;;;37697:174;37914:3;37898:12;:19;;37605:314;;38000:12;37983:13;;:29;37979:43;;38014:8;;;37979:43;37557:641;;;38063:120;38119:14;;;;;;38115:2;38094:40;;38111:1;38094:40;;;;;;;;;;;;38178:3;38162:12;:19;;38063:120;;37557:641;38228:12;38212:13;:28;;;;37170:1082;;38262:60;38291:1;38295:2;38299:12;38313:8;38262:20;:60::i;:::-;36683:1647;36555:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:398::-;15531:3;15552:83;15633:1;15628:3;15552:83;:::i;:::-;15545:90;;15644:93;15733:3;15644:93;:::i;:::-;15762:1;15757:3;15753:11;15746:18;;15372:398;;;:::o;15776:366::-;15918:3;15939:67;16003:2;15998:3;15939:67;:::i;:::-;15932:74;;16015:93;16104:3;16015:93;:::i;:::-;16133:2;16128:3;16124:12;16117:19;;15776:366;;;:::o;16148:::-;16290:3;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16387:93;16476:3;16387:93;:::i;:::-;16505:2;16500:3;16496:12;16489:19;;16148:366;;;:::o;16520:118::-;16607:24;16625:5;16607:24;:::i;:::-;16602:3;16595:37;16520:118;;:::o;16644:589::-;16869:3;16891:92;16979:3;16970:6;16891:92;:::i;:::-;16884:99;;17000:95;17091:3;17082:6;17000:95;:::i;:::-;16993:102;;17112:95;17203:3;17194:6;17112:95;:::i;:::-;17105:102;;17224:3;17217:10;;16644:589;;;;;;:::o;17239:379::-;17423:3;17445:147;17588:3;17445:147;:::i;:::-;17438:154;;17609:3;17602:10;;17239:379;;;:::o;17624:222::-;17717:4;17755:2;17744:9;17740:18;17732:26;;17768:71;17836:1;17825:9;17821:17;17812:6;17768:71;:::i;:::-;17624:222;;;;:::o;17852:640::-;18047:4;18085:3;18074:9;18070:19;18062:27;;18099:71;18167:1;18156:9;18152:17;18143:6;18099:71;:::i;:::-;18180:72;18248:2;18237:9;18233:18;18224:6;18180:72;:::i;:::-;18262;18330:2;18319:9;18315:18;18306:6;18262:72;:::i;:::-;18381:9;18375:4;18371:20;18366:2;18355:9;18351:18;18344:48;18409:76;18480:4;18471:6;18409:76;:::i;:::-;18401:84;;17852:640;;;;;;;:::o;18498:210::-;18585:4;18623:2;18612:9;18608:18;18600:26;;18636:65;18698:1;18687:9;18683:17;18674:6;18636:65;:::i;:::-;18498:210;;;;:::o;18714:313::-;18827:4;18865:2;18854:9;18850:18;18842:26;;18914:9;18908:4;18904:20;18900:1;18889:9;18885:17;18878:47;18942:78;19015:4;19006:6;18942:78;:::i;:::-;18934:86;;18714:313;;;;:::o;19033:419::-;19199:4;19237:2;19226:9;19222:18;19214:26;;19286:9;19280:4;19276:20;19272:1;19261:9;19257:17;19250:47;19314:131;19440:4;19314:131;:::i;:::-;19306:139;;19033:419;;;:::o;19458:::-;19624:4;19662:2;19651:9;19647:18;19639:26;;19711:9;19705:4;19701:20;19697:1;19686:9;19682:17;19675:47;19739:131;19865:4;19739:131;:::i;:::-;19731:139;;19458:419;;;:::o;19883:::-;20049:4;20087:2;20076:9;20072:18;20064:26;;20136:9;20130:4;20126:20;20122:1;20111:9;20107:17;20100:47;20164:131;20290:4;20164:131;:::i;:::-;20156:139;;19883:419;;;:::o;20308:::-;20474:4;20512:2;20501:9;20497:18;20489:26;;20561:9;20555:4;20551:20;20547:1;20536:9;20532:17;20525:47;20589:131;20715:4;20589:131;:::i;:::-;20581:139;;20308:419;;;:::o;20733:::-;20899:4;20937:2;20926:9;20922:18;20914:26;;20986:9;20980:4;20976:20;20972:1;20961:9;20957:17;20950:47;21014:131;21140:4;21014:131;:::i;:::-;21006:139;;20733:419;;;:::o;21158:::-;21324:4;21362:2;21351:9;21347:18;21339:26;;21411:9;21405:4;21401:20;21397:1;21386:9;21382:17;21375:47;21439:131;21565:4;21439:131;:::i;:::-;21431:139;;21158:419;;;:::o;21583:::-;21749:4;21787:2;21776:9;21772:18;21764:26;;21836:9;21830:4;21826:20;21822:1;21811:9;21807:17;21800:47;21864:131;21990:4;21864:131;:::i;:::-;21856:139;;21583:419;;;:::o;22008:::-;22174:4;22212:2;22201:9;22197:18;22189:26;;22261:9;22255:4;22251:20;22247:1;22236:9;22232:17;22225:47;22289:131;22415:4;22289:131;:::i;:::-;22281:139;;22008:419;;;:::o;22433:::-;22599:4;22637:2;22626:9;22622:18;22614:26;;22686:9;22680:4;22676:20;22672:1;22661:9;22657:17;22650:47;22714:131;22840:4;22714:131;:::i;:::-;22706:139;;22433:419;;;:::o;22858:::-;23024:4;23062:2;23051:9;23047:18;23039:26;;23111:9;23105:4;23101:20;23097:1;23086:9;23082:17;23075:47;23139:131;23265:4;23139:131;:::i;:::-;23131:139;;22858:419;;;:::o;23283:::-;23449:4;23487:2;23476:9;23472:18;23464:26;;23536:9;23530:4;23526:20;23522:1;23511:9;23507:17;23500:47;23564:131;23690:4;23564:131;:::i;:::-;23556:139;;23283:419;;;:::o;23708:222::-;23801:4;23839:2;23828:9;23824:18;23816:26;;23852:71;23920:1;23909:9;23905:17;23896:6;23852:71;:::i;:::-;23708:222;;;;:::o;23936:129::-;23970:6;23997:20;;:::i;:::-;23987:30;;24026:33;24054:4;24046:6;24026:33;:::i;:::-;23936:129;;;:::o;24071:75::-;24104:6;24137:2;24131:9;24121:19;;24071:75;:::o;24152:311::-;24229:4;24319:18;24311:6;24308:30;24305:56;;;24341:18;;:::i;:::-;24305:56;24391:4;24383:6;24379:17;24371:25;;24451:4;24445;24441:15;24433:23;;24152:311;;;:::o;24469:307::-;24530:4;24620:18;24612:6;24609:30;24606:56;;;24642:18;;:::i;:::-;24606:56;24680:29;24702:6;24680:29;:::i;:::-;24672:37;;24764:4;24758;24754:15;24746:23;;24469:307;;;:::o;24782:308::-;24844:4;24934:18;24926:6;24923:30;24920:56;;;24956:18;;:::i;:::-;24920:56;24994:29;25016:6;24994:29;:::i;:::-;24986:37;;25078:4;25072;25068:15;25060:23;;24782:308;;;:::o;25096:141::-;25145:4;25168:3;25160:11;;25191:3;25188:1;25181:14;25225:4;25222:1;25212:18;25204:26;;25096:141;;;:::o;25243:98::-;25294:6;25328:5;25322:12;25312:22;;25243:98;;;:::o;25347:99::-;25399:6;25433:5;25427:12;25417:22;;25347:99;;;:::o;25452:168::-;25535:11;25569:6;25564:3;25557:19;25609:4;25604:3;25600:14;25585:29;;25452:168;;;;:::o;25626:147::-;25727:11;25764:3;25749:18;;25626:147;;;;:::o;25779:169::-;25863:11;25897:6;25892:3;25885:19;25937:4;25932:3;25928:14;25913:29;;25779:169;;;;:::o;25954:148::-;26056:11;26093:3;26078:18;;25954:148;;;;:::o;26108:305::-;26148:3;26167:20;26185:1;26167:20;:::i;:::-;26162:25;;26201:20;26219:1;26201:20;:::i;:::-;26196:25;;26355:1;26287:66;26283:74;26280:1;26277:81;26274:107;;;26361:18;;:::i;:::-;26274:107;26405:1;26402;26398:9;26391:16;;26108:305;;;;:::o;26419:185::-;26459:1;26476:20;26494:1;26476:20;:::i;:::-;26471:25;;26510:20;26528:1;26510:20;:::i;:::-;26505:25;;26549:1;26539:35;;26554:18;;:::i;:::-;26539:35;26596:1;26593;26589:9;26584:14;;26419:185;;;;:::o;26610:348::-;26650:7;26673:20;26691:1;26673:20;:::i;:::-;26668:25;;26707:20;26725:1;26707:20;:::i;:::-;26702:25;;26895:1;26827:66;26823:74;26820:1;26817:81;26812:1;26805:9;26798:17;26794:105;26791:131;;;26902:18;;:::i;:::-;26791:131;26950:1;26947;26943:9;26932:20;;26610:348;;;;:::o;26964:191::-;27004:4;27024:20;27042:1;27024:20;:::i;:::-;27019:25;;27058:20;27076:1;27058:20;:::i;:::-;27053:25;;27097:1;27094;27091:8;27088:34;;;27102:18;;:::i;:::-;27088:34;27147:1;27144;27140:9;27132:17;;26964:191;;;;:::o;27161:96::-;27198:7;27227:24;27245:5;27227:24;:::i;:::-;27216:35;;27161:96;;;:::o;27263:90::-;27297:7;27340:5;27333:13;27326:21;27315:32;;27263:90;;;:::o;27359:149::-;27395:7;27435:66;27428:5;27424:78;27413:89;;27359:149;;;:::o;27514:125::-;27580:7;27609:24;27627:5;27609:24;:::i;:::-;27598:35;;27514:125;;;:::o;27645:126::-;27682:7;27722:42;27715:5;27711:54;27700:65;;27645:126;;;:::o;27777:77::-;27814:7;27843:5;27832:16;;27777:77;;;:::o;27860:154::-;27944:6;27939:3;27934;27921:30;28006:1;27997:6;27992:3;27988:16;27981:27;27860:154;;;:::o;28020:307::-;28088:1;28098:113;28112:6;28109:1;28106:13;28098:113;;;28197:1;28192:3;28188:11;28182:18;28178:1;28173:3;28169:11;28162:39;28134:2;28131:1;28127:10;28122:15;;28098:113;;;28229:6;28226:1;28223:13;28220:101;;;28309:1;28300:6;28295:3;28291:16;28284:27;28220:101;28069:258;28020:307;;;:::o;28333:320::-;28377:6;28414:1;28408:4;28404:12;28394:22;;28461:1;28455:4;28451:12;28482:18;28472:81;;28538:4;28530:6;28526:17;28516:27;;28472:81;28600:2;28592:6;28589:14;28569:18;28566:38;28563:84;;;28619:18;;:::i;:::-;28563:84;28384:269;28333:320;;;:::o;28659:281::-;28742:27;28764:4;28742:27;:::i;:::-;28734:6;28730:40;28872:6;28860:10;28857:22;28836:18;28824:10;28821:34;28818:62;28815:88;;;28883:18;;:::i;:::-;28815:88;28923:10;28919:2;28912:22;28702:238;28659:281;;:::o;28946:233::-;28985:3;29008:24;29026:5;29008:24;:::i;:::-;28999:33;;29054:66;29047:5;29044:77;29041:103;;;29124:18;;:::i;:::-;29041:103;29171:1;29164:5;29160:13;29153:20;;28946:233;;;:::o;29185:176::-;29217:1;29234:20;29252:1;29234:20;:::i;:::-;29229:25;;29268:20;29286:1;29268:20;:::i;:::-;29263:25;;29307:1;29297:35;;29312:18;;:::i;:::-;29297:35;29353:1;29350;29346:9;29341:14;;29185:176;;;;:::o;29367:180::-;29415:77;29412:1;29405:88;29512:4;29509:1;29502:15;29536:4;29533:1;29526:15;29553:180;29601:77;29598:1;29591:88;29698:4;29695:1;29688:15;29722:4;29719:1;29712:15;29739:180;29787:77;29784:1;29777:88;29884:4;29881:1;29874:15;29908:4;29905:1;29898:15;29925:180;29973:77;29970:1;29963:88;30070:4;30067:1;30060:15;30094:4;30091:1;30084:15;30111:180;30159:77;30156:1;30149:88;30256:4;30253:1;30246:15;30280:4;30277:1;30270:15;30297:117;30406:1;30403;30396:12;30420:117;30529:1;30526;30519:12;30543:117;30652:1;30649;30642:12;30666:117;30775:1;30772;30765:12;30789:117;30898:1;30895;30888:12;30912:102;30953:6;31004:2;31000:7;30995:2;30988:5;30984:14;30980:28;30970:38;;30912:102;;;:::o;31020:156::-;31160:8;31156:1;31148:6;31144:14;31137:32;31020:156;:::o;31182:225::-;31322:34;31318:1;31310:6;31306:14;31299:58;31391:8;31386:2;31378:6;31374:15;31367:33;31182:225;:::o;31413:160::-;31553:12;31549:1;31541:6;31537:14;31530:36;31413:160;:::o;31579:172::-;31719:24;31715:1;31707:6;31703:14;31696:48;31579:172;:::o;31757:::-;31897:24;31893:1;31885:6;31881:14;31874:48;31757:172;:::o;31935:168::-;32075:20;32071:1;32063:6;32059:14;32052:44;31935:168;:::o;32109:171::-;32249:23;32245:1;32237:6;32233:14;32226:47;32109:171;:::o;32286:182::-;32426:34;32422:1;32414:6;32410:14;32403:58;32286:182;:::o;32474:172::-;32614:24;32610:1;32602:6;32598:14;32591:48;32474:172;:::o;32652:114::-;;:::o;32772:164::-;32912:16;32908:1;32900:6;32896:14;32889:40;32772:164;:::o;32942:162::-;33082:14;33078:1;33070:6;33066:14;33059:38;32942:162;:::o;33110:122::-;33183:24;33201:5;33183:24;:::i;:::-;33176:5;33173:35;33163:63;;33222:1;33219;33212:12;33163:63;33110:122;:::o;33238:116::-;33308:21;33323:5;33308:21;:::i;:::-;33301:5;33298:32;33288:60;;33344:1;33341;33334:12;33288:60;33238:116;:::o;33360:120::-;33432:23;33449:5;33432:23;:::i;:::-;33425:5;33422:34;33412:62;;33470:1;33467;33460:12;33412:62;33360:120;:::o;33486:180::-;33588:53;33635:5;33588:53;:::i;:::-;33581:5;33578:64;33568:92;;33656:1;33653;33646:12;33568:92;33486:180;:::o;33672:122::-;33745:24;33763:5;33745:24;:::i;:::-;33738:5;33735:35;33725:63;;33784:1;33781;33774:12;33725:63;33672:122;:::o
Swarm Source
ipfs://72116598f7fac96fd5b29b60e4e46492d54d63d463cad4f7e3b954dc97017678
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.