ERC-721
Overview
Max Total Supply
333 URUG
Holders
315
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 URUGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
URug
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-27 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/Rug.sol pragma solidity ^0.8.15; contract URug is ERC721A, Ownable, ReentrancyGuard { // constants uint256 constant MAX_ELEMENTS = 333; uint256 constant MAX_ELEMENTS_TX = 3; uint256 constant MAX_FREE_PER_TX = 1; uint256 constant PUBLIC_PRICE = 1 ether; string public baseTokenURI = "ipfs://QmXaHPXnziQsbvpmtFCF3pxwUzPfDanqpDTvNh7zjsanaK/"; bool public paused = true; constructor(uint256 maxBatchSize_) ERC721A("The Unpullable Rug", "URUG", maxBatchSize_) {} function mint(uint256 _mintAmount) external payable nonReentrant { uint256 supply = totalSupply(); require(_mintAmount > 0,"No zero mints"); require(_mintAmount <= MAX_ELEMENTS_TX,"Exceeds max per tx"); require(!paused, "Sale has not started!"); require(supply + _mintAmount <= MAX_ELEMENTS,"Exceeds max supply"); require(msg.value >= (_mintAmount - MAX_FREE_PER_TX)* PUBLIC_PRICE,"Invalid funds provided"); _safeMint(msg.sender,_mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function withdraw() external payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } function pause(bool _state) external onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { baseTokenURI = baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a060405260008055600060075560405180606001604052806036815260200162004cda60369139600a9081620000379190620004df565b506001600b60006101000a81548160ff0219169083151502179055503480156200006057600080fd5b5060405162004d1038038062004d108339818101604052810190620000869190620005fc565b6040518060400160405280601281526020017f54686520556e70756c6c61626c652052756700000000000000000000000000008152506040518060400160405280600481526020017f5552554700000000000000000000000000000000000000000000000000000000815250826000811162000139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013090620006b5565b60405180910390fd5b82600190816200014a9190620004df565b5081600290816200015c9190620004df565b508060808181525050505050620001886200017c6200019760201b60201c565b6200019f60201b60201c565b600160098190555050620006d7565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e757607f821691505b602082108103620002fd57620002fc6200029f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000328565b62000373868362000328565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003c0620003ba620003b4846200038b565b62000395565b6200038b565b9050919050565b6000819050919050565b620003dc836200039f565b620003f4620003eb82620003c7565b84845462000335565b825550505050565b600090565b6200040b620003fc565b62000418818484620003d1565b505050565b5b8181101562000440576200043460008262000401565b6001810190506200041e565b5050565b601f8211156200048f57620004598162000303565b620004648462000318565b8101602085101562000474578190505b6200048c620004838562000318565b8301826200041d565b50505b505050565b600082821c905092915050565b6000620004b46000198460080262000494565b1980831691505092915050565b6000620004cf8383620004a1565b9150826002028217905092915050565b620004ea8262000265565b67ffffffffffffffff81111562000506576200050562000270565b5b620005128254620002ce565b6200051f82828562000444565b600060209050601f83116001811462000557576000841562000542578287015190505b6200054e8582620004c1565b865550620005be565b601f198416620005678662000303565b60005b8281101562000591578489015182556001820191506020850194506020810190506200056a565b86831015620005b15784890151620005ad601f891682620004a1565b8355505b6001600288020188555050505b505050505050565b600080fd5b620005d6816200038b565b8114620005e257600080fd5b50565b600081519050620005f681620005cb565b92915050565b600060208284031215620006155762000614620005c6565b5b60006200062584828501620005e5565b91505092915050565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200069d6027836200062e565b9150620006aa826200063f565b604082019050919050565b60006020820190508181036000830152620006d0816200068e565b9050919050565b6080516145d96200070160003960008181611f0101528181611f2a01526125d901526145d96000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146105aa578063e985e9c5146105d5578063efbd73f414610612578063f2fde38b1461063b5761019c565b8063b88d4fde14610519578063c87b56dd14610542578063d547cfb71461057f5761019c565b80638da5cb5b116100c65780638da5cb5b1461047e57806395d89b41146104a9578063a0712d68146104d4578063a22cb465146104f05761019c565b80636352211e146103ed57806370a082311461042a578063715018a6146104675761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103335780634f6ccce71461035c57806355f804b3146103995780635c975abb146103c25761019c565b806323b872dd146102c35780632f745c59146102ec5780633ccfd60b146103295761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ab0565b610664565b6040516101d59190612af8565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612b3f565b6107ae565b005b34801561021357600080fd5b5061021c610847565b6040516102299190612c05565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612c5d565b6108d9565b6040516102669190612ccb565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612d12565b61095e565b005b3480156102a457600080fd5b506102ad610a76565b6040516102ba9190612d61565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612d7c565b610a7f565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d12565b610a8f565b6040516103209190612d61565b60405180910390f35b610331610c8b565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612d7c565b610d47565b005b34801561036857600080fd5b50610383600480360381019061037e9190612c5d565b610d67565b6040516103909190612d61565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612e34565b610dba565b005b3480156103ce57600080fd5b506103d7610e4c565b6040516103e49190612af8565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190612c5d565b610e5f565b6040516104219190612ccb565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612e81565b610e75565b60405161045e9190612d61565b60405180910390f35b34801561047357600080fd5b5061047c610f5d565b005b34801561048a57600080fd5b50610493610fe5565b6040516104a09190612ccb565b60405180910390f35b3480156104b557600080fd5b506104be61100f565b6040516104cb9190612c05565b60405180910390f35b6104ee60048036038101906104e99190612c5d565b6110a1565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612eae565b611299565b005b34801561052557600080fd5b50610540600480360381019061053b919061301e565b611419565b005b34801561054e57600080fd5b5061056960048036038101906105649190612c5d565b611475565b6040516105769190612c05565b60405180910390f35b34801561058b57600080fd5b5061059461151c565b6040516105a19190612c05565b60405180910390f35b3480156105b657600080fd5b506105bf6115aa565b6040516105cc9190612d61565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906130a1565b6115b0565b6040516106099190612af8565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906130e1565b611644565b005b34801561064757600080fd5b50610662600480360381019061065d9190612e81565b6116ce565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a757506107a6826117c5565b5b9050919050565b6107b661182f565b73ffffffffffffffffffffffffffffffffffffffff166107d4610fe5565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108219061316d565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060018054610856906131bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906131bc565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611837565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a9061325f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610e5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906132f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f861182f565b73ffffffffffffffffffffffffffffffffffffffff161480610a275750610a2681610a2161182f565b6115b0565b5b610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613383565b60405180910390fd5b610a71838383611844565b505050565b60008054905090565b610a8a8383836118f6565b505050565b6000610a9a83610e75565b8210610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290613415565b60405180910390fd5b6000610ae5610a76565b905060008060005b83811015610c49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bdf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3557868403610c26578195505050505050610c85565b8380610c3190613464565b9450505b508080610c4190613464565b915050610aed565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c9061351e565b60405180910390fd5b92915050565b610c9361182f565b73ffffffffffffffffffffffffffffffffffffffff16610cb1610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe9061316d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d4557600080fd5b565b610d6283838360405180602001604052806000815250611419565b505050565b6000610d71610a76565b8210610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da9906135b0565b60405180910390fd5b819050919050565b610dc261182f565b73ffffffffffffffffffffffffffffffffffffffff16610de0610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061316d565b60405180910390fd5b8181600a9182610e47929190613787565b505050565b600b60009054906101000a900460ff1681565b6000610e6a82611ead565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc906138c9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f6561182f565b73ffffffffffffffffffffffffffffffffffffffff16610f83610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd09061316d565b60405180910390fd5b610fe360006120b0565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461101e906131bc565b80601f016020809104026020016040519081016040528092919081815260200182805461104a906131bc565b80156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b5050505050905090565b6002600954036110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613935565b60405180910390fd5b600260098190555060006110f8610a76565b90506000821161113d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611134906139a1565b60405180910390fd5b6003821115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613a0d565b60405180910390fd5b600b60009054906101000a900460ff16156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890613a79565b60405180910390fd5b61014d82826111e09190613a99565b1115611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890613b3b565b60405180910390fd5b670de0b6b3a76400006001836112379190613b5b565b6112419190613b8f565b341015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613c35565b60405180910390fd5b61128d3383612176565b50600160098190555050565b6112a161182f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613ca1565b60405180910390fd5b806006600061131b61182f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c861182f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140d9190612af8565b60405180910390a35050565b6114248484846118f6565b61143084848484612194565b61146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613d33565b60405180910390fd5b50505050565b606061148082611837565b6114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613dc5565b60405180910390fd5b60006114c961231b565b905060008151116114e95760405180602001604052806000815250611514565b806114f3846123ad565b604051602001611504929190613e21565b6040516020818303038152906040525b915050919050565b600a8054611529906131bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611555906131bc565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b505050505081565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164c61182f565b73ffffffffffffffffffffffffffffffffffffffff1661166a610fe5565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061316d565b60405180910390fd5b6116ca8183612176565b5050565b6116d661182f565b73ffffffffffffffffffffffffffffffffffffffff166116f4610fe5565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117419061316d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613eb7565b60405180910390fd5b6117c2816120b0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061190182611ead565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661192861182f565b73ffffffffffffffffffffffffffffffffffffffff161480611984575061194d61182f565b73ffffffffffffffffffffffffffffffffffffffff1661196c846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b806119a0575061199f826000015161199a61182f565b6115b0565b5b9050806119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990613f49565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613fdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba9061406d565b60405180910390fd5b611ad0858585600161250d565b611ae06000848460000151611844565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b4e91906140a9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bf291906140dd565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611cf89190613a99565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e3d57611d6d81611837565b15611e3c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea58686866001612513565b505050505050565b611eb5612a0a565b611ebe82611837565b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490614195565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f615760017f000000000000000000000000000000000000000000000000000000000000000084611f549190613b5b565b611f5e9190613a99565b90505b60008390505b81811061206f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461205b578093505050506120ab565b508080612067906141b5565b915050611f67565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290614250565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612190828260405180602001604052806000815250612519565b5050565b60006121b58473ffffffffffffffffffffffffffffffffffffffff166129f7565b1561230e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121de61182f565b8786866040518563ffffffff1660e01b815260040161220094939291906142c5565b6020604051808303816000875af192505050801561223c57506040513d601f19601f820116820180604052508101906122399190614326565b60015b6122be573d806000811461226c576040519150601f19603f3d011682016040523d82523d6000602084013e612271565b606091505b5060008151036122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90613d33565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612313565b600190505b949350505050565b6060600a805461232a906131bc565b80601f0160208091040260200160405190810160405280929190818152602001828054612356906131bc565b80156123a35780601f10612378576101008083540402835291602001916123a3565b820191906000526020600020905b81548152906001019060200180831161238657829003601f168201915b5050505050905090565b6060600082036123f4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612508565b600082905060005b6000821461242657808061240f90613464565b915050600a8261241f9190614382565b91506123fc565b60008167ffffffffffffffff81111561244257612441612ef3565b5b6040519080825280601f01601f1916602001820160405280156124745781602001600182028036833780820191505090505b5090505b600085146125015760018261248d9190613b5b565b9150600a8561249c91906143b3565b60306124a89190613a99565b60f81b8183815181106124be576124bd6143e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124fa9190614382565b9450612478565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614485565b60405180910390fd5b61259781611837565b156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce906144f1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190614583565b60405180910390fd5b612647600085838661250d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161274491906140dd565b6fffffffffffffffffffffffffffffffff16815260200185836020015161276b91906140dd565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129da57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461297a6000888488612194565b6129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090613d33565b60405180910390fd5b81806129c490613464565b92505080806129d290613464565b915050612909565b50806000819055506129ef6000878588612513565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8d81612a58565b8114612a9857600080fd5b50565b600081359050612aaa81612a84565b92915050565b600060208284031215612ac657612ac5612a4e565b5b6000612ad484828501612a9b565b91505092915050565b60008115159050919050565b612af281612add565b82525050565b6000602082019050612b0d6000830184612ae9565b92915050565b612b1c81612add565b8114612b2757600080fd5b50565b600081359050612b3981612b13565b92915050565b600060208284031215612b5557612b54612a4e565b5b6000612b6384828501612b2a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba6578082015181840152602081019050612b8b565b83811115612bb5576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bd782612b6c565b612be18185612b77565b9350612bf1818560208601612b88565b612bfa81612bbb565b840191505092915050565b60006020820190508181036000830152612c1f8184612bcc565b905092915050565b6000819050919050565b612c3a81612c27565b8114612c4557600080fd5b50565b600081359050612c5781612c31565b92915050565b600060208284031215612c7357612c72612a4e565b5b6000612c8184828501612c48565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cb582612c8a565b9050919050565b612cc581612caa565b82525050565b6000602082019050612ce06000830184612cbc565b92915050565b612cef81612caa565b8114612cfa57600080fd5b50565b600081359050612d0c81612ce6565b92915050565b60008060408385031215612d2957612d28612a4e565b5b6000612d3785828601612cfd565b9250506020612d4885828601612c48565b9150509250929050565b612d5b81612c27565b82525050565b6000602082019050612d766000830184612d52565b92915050565b600080600060608486031215612d9557612d94612a4e565b5b6000612da386828701612cfd565b9350506020612db486828701612cfd565b9250506040612dc586828701612c48565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612df457612df3612dcf565b5b8235905067ffffffffffffffff811115612e1157612e10612dd4565b5b602083019150836001820283011115612e2d57612e2c612dd9565b5b9250929050565b60008060208385031215612e4b57612e4a612a4e565b5b600083013567ffffffffffffffff811115612e6957612e68612a53565b5b612e7585828601612dde565b92509250509250929050565b600060208284031215612e9757612e96612a4e565b5b6000612ea584828501612cfd565b91505092915050565b60008060408385031215612ec557612ec4612a4e565b5b6000612ed385828601612cfd565b9250506020612ee485828601612b2a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f2b82612bbb565b810181811067ffffffffffffffff82111715612f4a57612f49612ef3565b5b80604052505050565b6000612f5d612a44565b9050612f698282612f22565b919050565b600067ffffffffffffffff821115612f8957612f88612ef3565b5b612f9282612bbb565b9050602081019050919050565b82818337600083830152505050565b6000612fc1612fbc84612f6e565b612f53565b905082815260208101848484011115612fdd57612fdc612eee565b5b612fe8848285612f9f565b509392505050565b600082601f83011261300557613004612dcf565b5b8135613015848260208601612fae565b91505092915050565b6000806000806080858703121561303857613037612a4e565b5b600061304687828801612cfd565b945050602061305787828801612cfd565b935050604061306887828801612c48565b925050606085013567ffffffffffffffff81111561308957613088612a53565b5b61309587828801612ff0565b91505092959194509250565b600080604083850312156130b8576130b7612a4e565b5b60006130c685828601612cfd565b92505060206130d785828601612cfd565b9150509250929050565b600080604083850312156130f8576130f7612a4e565b5b600061310685828601612c48565b925050602061311785828601612cfd565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613157602083612b77565b915061316282613121565b602082019050919050565b600060208201905081810360008301526131868161314a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131d457607f821691505b6020821081036131e7576131e661318d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613249602d83612b77565b9150613254826131ed565b604082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006132db602283612b77565b91506132e68261327f565b604082019050919050565b6000602082019050818103600083015261330a816132ce565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061336d603983612b77565b915061337882613311565b604082019050919050565b6000602082019050818103600083015261339c81613360565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ff602283612b77565b915061340a826133a3565b604082019050919050565b6000602082019050818103600083015261342e816133f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346f82612c27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134a1576134a0613435565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613508602e83612b77565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061359a602383612b77565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261363d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613600565b6136478683613600565b95508019841693508086168417925050509392505050565b6000819050919050565b600061368461367f61367a84612c27565b61365f565b612c27565b9050919050565b6000819050919050565b61369e83613669565b6136b26136aa8261368b565b84845461360d565b825550505050565b600090565b6136c76136ba565b6136d2818484613695565b505050565b5b818110156136f6576136eb6000826136bf565b6001810190506136d8565b5050565b601f82111561373b5761370c816135db565b613715846135f0565b81016020851015613724578190505b613738613730856135f0565b8301826136d7565b50505b505050565b600082821c905092915050565b600061375e60001984600802613740565b1980831691505092915050565b6000613777838361374d565b9150826002028217905092915050565b61379183836135d0565b67ffffffffffffffff8111156137aa576137a9612ef3565b5b6137b482546131bc565b6137bf8282856136fa565b6000601f8311600181146137ee57600084156137dc578287013590505b6137e6858261376b565b86555061384e565b601f1984166137fc866135db565b60005b82811015613824578489013582556001820191506020850194506020810190506137ff565b86831015613841578489013561383d601f89168261374d565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006138b3602b83612b77565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061391f601f83612b77565b915061392a826138e9565b602082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b7f4e6f207a65726f206d696e747300000000000000000000000000000000000000600082015250565b600061398b600d83612b77565b915061399682613955565b602082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b60006139f7601283612b77565b9150613a02826139c1565b602082019050919050565b60006020820190508181036000830152613a26816139ea565b9050919050565b7f53616c6520686173206e6f742073746172746564210000000000000000000000600082015250565b6000613a63601583612b77565b9150613a6e82613a2d565b602082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b6000613aa482612c27565b9150613aaf83612c27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ae457613ae3613435565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613b25601283612b77565b9150613b3082613aef565b602082019050919050565b60006020820190508181036000830152613b5481613b18565b9050919050565b6000613b6682612c27565b9150613b7183612c27565b925082821015613b8457613b83613435565b5b828203905092915050565b6000613b9a82612c27565b9150613ba583612c27565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bde57613bdd613435565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613c1f601683612b77565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613c8b601a83612b77565b9150613c9682613c55565b602082019050919050565b60006020820190508181036000830152613cba81613c7e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d1d603383612b77565b9150613d2882613cc1565b604082019050919050565b60006020820190508181036000830152613d4c81613d10565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613daf602f83612b77565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b600081905092915050565b6000613dfb82612b6c565b613e058185613de5565b9350613e15818560208601612b88565b80840191505092915050565b6000613e2d8285613df0565b9150613e398284613df0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ea1602683612b77565b9150613eac82613e45565b604082019050919050565b60006020820190508181036000830152613ed081613e94565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f33603283612b77565b9150613f3e82613ed7565b604082019050919050565b60006020820190508181036000830152613f6281613f26565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613fc5602683612b77565b9150613fd082613f69565b604082019050919050565b60006020820190508181036000830152613ff481613fb8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614057602583612b77565b915061406282613ffb565b604082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006140b48261408d565b91506140bf8361408d565b9250828210156140d2576140d1613435565b5b828203905092915050565b60006140e88261408d565b91506140f38361408d565b9250826fffffffffffffffffffffffffffffffff0382111561411857614117613435565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061417f602a83612b77565b915061418a82614123565b604082019050919050565b600060208201905081810360008301526141ae81614172565b9050919050565b60006141c082612c27565b9150600082036141d3576141d2613435565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061423a602f83612b77565b9150614245826141de565b604082019050919050565b600060208201905081810360008301526142698161422d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061429782614270565b6142a1818561427b565b93506142b1818560208601612b88565b6142ba81612bbb565b840191505092915050565b60006080820190506142da6000830187612cbc565b6142e76020830186612cbc565b6142f46040830185612d52565b8181036060830152614306818461428c565b905095945050505050565b60008151905061432081612a84565b92915050565b60006020828403121561433c5761433b612a4e565b5b600061434a84828501614311565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061438d82612c27565b915061439883612c27565b9250826143a8576143a7614353565b5b828204905092915050565b60006143be82612c27565b91506143c983612c27565b9250826143d9576143d8614353565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061446f602183612b77565b915061447a82614413565b604082019050919050565b6000602082019050818103600083015261449e81614462565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006144db601d83612b77565b91506144e6826144a5565b602082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061456d602283612b77565b915061457882614511565b604082019050919050565b6000602082019050818103600083015261459c81614560565b905091905056fea2646970667358221220642986a0ec47a2ae600b6c785b2ddc197ed1f245f729eaf42dc65ef11c461e9664736f6c634300080f0033697066733a2f2f516d58614850586e7a6951736276706d7446434633707877557a506644616e71704454764e68377a6a73616e614b2f0000000000000000000000000000000000000000000000000000000000000003
Deployed Bytecode
0x60806040526004361061019c5760003560e01c80636352211e116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146105aa578063e985e9c5146105d5578063efbd73f414610612578063f2fde38b1461063b5761019c565b8063b88d4fde14610519578063c87b56dd14610542578063d547cfb71461057f5761019c565b80638da5cb5b116100c65780638da5cb5b1461047e57806395d89b41146104a9578063a0712d68146104d4578063a22cb465146104f05761019c565b80636352211e146103ed57806370a082311461042a578063715018a6146104675761019c565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103335780634f6ccce71461035c57806355f804b3146103995780635c975abb146103c25761019c565b806323b872dd146102c35780632f745c59146102ec5780633ccfd60b146103295761019c565b806301ffc9a7146101a157806302329a29146101de57806306fdde0314610207578063081812fc14610232578063095ea7b31461026f57806318160ddd14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ab0565b610664565b6040516101d59190612af8565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612b3f565b6107ae565b005b34801561021357600080fd5b5061021c610847565b6040516102299190612c05565b60405180910390f35b34801561023e57600080fd5b5061025960048036038101906102549190612c5d565b6108d9565b6040516102669190612ccb565b60405180910390f35b34801561027b57600080fd5b5061029660048036038101906102919190612d12565b61095e565b005b3480156102a457600080fd5b506102ad610a76565b6040516102ba9190612d61565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612d7c565b610a7f565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612d12565b610a8f565b6040516103209190612d61565b60405180910390f35b610331610c8b565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612d7c565b610d47565b005b34801561036857600080fd5b50610383600480360381019061037e9190612c5d565b610d67565b6040516103909190612d61565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190612e34565b610dba565b005b3480156103ce57600080fd5b506103d7610e4c565b6040516103e49190612af8565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190612c5d565b610e5f565b6040516104219190612ccb565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190612e81565b610e75565b60405161045e9190612d61565b60405180910390f35b34801561047357600080fd5b5061047c610f5d565b005b34801561048a57600080fd5b50610493610fe5565b6040516104a09190612ccb565b60405180910390f35b3480156104b557600080fd5b506104be61100f565b6040516104cb9190612c05565b60405180910390f35b6104ee60048036038101906104e99190612c5d565b6110a1565b005b3480156104fc57600080fd5b5061051760048036038101906105129190612eae565b611299565b005b34801561052557600080fd5b50610540600480360381019061053b919061301e565b611419565b005b34801561054e57600080fd5b5061056960048036038101906105649190612c5d565b611475565b6040516105769190612c05565b60405180910390f35b34801561058b57600080fd5b5061059461151c565b6040516105a19190612c05565b60405180910390f35b3480156105b657600080fd5b506105bf6115aa565b6040516105cc9190612d61565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906130a1565b6115b0565b6040516106099190612af8565b60405180910390f35b34801561061e57600080fd5b50610639600480360381019061063491906130e1565b611644565b005b34801561064757600080fd5b50610662600480360381019061065d9190612e81565b6116ce565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a757506107a6826117c5565b5b9050919050565b6107b661182f565b73ffffffffffffffffffffffffffffffffffffffff166107d4610fe5565b73ffffffffffffffffffffffffffffffffffffffff161461082a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108219061316d565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060018054610856906131bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610882906131bc565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611837565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a9061325f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096982610e5f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d0906132f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f861182f565b73ffffffffffffffffffffffffffffffffffffffff161480610a275750610a2681610a2161182f565b6115b0565b5b610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d90613383565b60405180910390fd5b610a71838383611844565b505050565b60008054905090565b610a8a8383836118f6565b505050565b6000610a9a83610e75565b8210610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290613415565b60405180910390fd5b6000610ae5610a76565b905060008060005b83811015610c49576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bdf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3557868403610c26578195505050505050610c85565b8380610c3190613464565b9450505b508080610c4190613464565b915050610aed565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c9061351e565b60405180910390fd5b92915050565b610c9361182f565b73ffffffffffffffffffffffffffffffffffffffff16610cb1610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfe9061316d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d4557600080fd5b565b610d6283838360405180602001604052806000815250611419565b505050565b6000610d71610a76565b8210610db2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da9906135b0565b60405180910390fd5b819050919050565b610dc261182f565b73ffffffffffffffffffffffffffffffffffffffff16610de0610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d9061316d565b60405180910390fd5b8181600a9182610e47929190613787565b505050565b600b60009054906101000a900460ff1681565b6000610e6a82611ead565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc906138c9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f6561182f565b73ffffffffffffffffffffffffffffffffffffffff16610f83610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd09061316d565b60405180910390fd5b610fe360006120b0565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461101e906131bc565b80601f016020809104026020016040519081016040528092919081815260200182805461104a906131bc565b80156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b5050505050905090565b6002600954036110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613935565b60405180910390fd5b600260098190555060006110f8610a76565b90506000821161113d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611134906139a1565b60405180910390fd5b6003821115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613a0d565b60405180910390fd5b600b60009054906101000a900460ff16156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890613a79565b60405180910390fd5b61014d82826111e09190613a99565b1115611221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121890613b3b565b60405180910390fd5b670de0b6b3a76400006001836112379190613b5b565b6112419190613b8f565b341015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613c35565b60405180910390fd5b61128d3383612176565b50600160098190555050565b6112a161182f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590613ca1565b60405180910390fd5b806006600061131b61182f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113c861182f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161140d9190612af8565b60405180910390a35050565b6114248484846118f6565b61143084848484612194565b61146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690613d33565b60405180910390fd5b50505050565b606061148082611837565b6114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690613dc5565b60405180910390fd5b60006114c961231b565b905060008151116114e95760405180602001604052806000815250611514565b806114f3846123ad565b604051602001611504929190613e21565b6040516020818303038152906040525b915050919050565b600a8054611529906131bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611555906131bc565b80156115a25780601f10611577576101008083540402835291602001916115a2565b820191906000526020600020905b81548152906001019060200180831161158557829003601f168201915b505050505081565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61164c61182f565b73ffffffffffffffffffffffffffffffffffffffff1661166a610fe5565b73ffffffffffffffffffffffffffffffffffffffff16146116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b79061316d565b60405180910390fd5b6116ca8183612176565b5050565b6116d661182f565b73ffffffffffffffffffffffffffffffffffffffff166116f4610fe5565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117419061316d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613eb7565b60405180910390fd5b6117c2816120b0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061190182611ead565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661192861182f565b73ffffffffffffffffffffffffffffffffffffffff161480611984575061194d61182f565b73ffffffffffffffffffffffffffffffffffffffff1661196c846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b806119a0575061199f826000015161199a61182f565b6115b0565b5b9050806119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990613f49565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613fdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba9061406d565b60405180910390fd5b611ad0858585600161250d565b611ae06000848460000151611844565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b4e91906140a9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611bf291906140dd565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611cf89190613a99565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611e3d57611d6d81611837565b15611e3c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ea58686866001612513565b505050505050565b611eb5612a0a565b611ebe82611837565b611efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef490614195565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000038310611f615760017f000000000000000000000000000000000000000000000000000000000000000384611f549190613b5b565b611f5e9190613a99565b90505b60008390505b81811061206f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461205b578093505050506120ab565b508080612067906141b5565b915050611f67565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290614250565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612190828260405180602001604052806000815250612519565b5050565b60006121b58473ffffffffffffffffffffffffffffffffffffffff166129f7565b1561230e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121de61182f565b8786866040518563ffffffff1660e01b815260040161220094939291906142c5565b6020604051808303816000875af192505050801561223c57506040513d601f19601f820116820180604052508101906122399190614326565b60015b6122be573d806000811461226c576040519150601f19603f3d011682016040523d82523d6000602084013e612271565b606091505b5060008151036122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90613d33565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612313565b600190505b949350505050565b6060600a805461232a906131bc565b80601f0160208091040260200160405190810160405280929190818152602001828054612356906131bc565b80156123a35780601f10612378576101008083540402835291602001916123a3565b820191906000526020600020905b81548152906001019060200180831161238657829003601f168201915b5050505050905090565b6060600082036123f4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612508565b600082905060005b6000821461242657808061240f90613464565b915050600a8261241f9190614382565b91506123fc565b60008167ffffffffffffffff81111561244257612441612ef3565b5b6040519080825280601f01601f1916602001820160405280156124745781602001600182028036833780820191505090505b5090505b600085146125015760018261248d9190613b5b565b9150600a8561249c91906143b3565b60306124a89190613a99565b60f81b8183815181106124be576124bd6143e4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124fa9190614382565b9450612478565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614485565b60405180910390fd5b61259781611837565b156125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce906144f1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000383111561263a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263190614583565b60405180910390fd5b612647600085838661250d565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161274491906140dd565b6fffffffffffffffffffffffffffffffff16815260200185836020015161276b91906140dd565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129da57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461297a6000888488612194565b6129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b090613d33565b60405180910390fd5b81806129c490613464565b92505080806129d290613464565b915050612909565b50806000819055506129ef6000878588612513565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a8d81612a58565b8114612a9857600080fd5b50565b600081359050612aaa81612a84565b92915050565b600060208284031215612ac657612ac5612a4e565b5b6000612ad484828501612a9b565b91505092915050565b60008115159050919050565b612af281612add565b82525050565b6000602082019050612b0d6000830184612ae9565b92915050565b612b1c81612add565b8114612b2757600080fd5b50565b600081359050612b3981612b13565b92915050565b600060208284031215612b5557612b54612a4e565b5b6000612b6384828501612b2a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba6578082015181840152602081019050612b8b565b83811115612bb5576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bd782612b6c565b612be18185612b77565b9350612bf1818560208601612b88565b612bfa81612bbb565b840191505092915050565b60006020820190508181036000830152612c1f8184612bcc565b905092915050565b6000819050919050565b612c3a81612c27565b8114612c4557600080fd5b50565b600081359050612c5781612c31565b92915050565b600060208284031215612c7357612c72612a4e565b5b6000612c8184828501612c48565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cb582612c8a565b9050919050565b612cc581612caa565b82525050565b6000602082019050612ce06000830184612cbc565b92915050565b612cef81612caa565b8114612cfa57600080fd5b50565b600081359050612d0c81612ce6565b92915050565b60008060408385031215612d2957612d28612a4e565b5b6000612d3785828601612cfd565b9250506020612d4885828601612c48565b9150509250929050565b612d5b81612c27565b82525050565b6000602082019050612d766000830184612d52565b92915050565b600080600060608486031215612d9557612d94612a4e565b5b6000612da386828701612cfd565b9350506020612db486828701612cfd565b9250506040612dc586828701612c48565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612df457612df3612dcf565b5b8235905067ffffffffffffffff811115612e1157612e10612dd4565b5b602083019150836001820283011115612e2d57612e2c612dd9565b5b9250929050565b60008060208385031215612e4b57612e4a612a4e565b5b600083013567ffffffffffffffff811115612e6957612e68612a53565b5b612e7585828601612dde565b92509250509250929050565b600060208284031215612e9757612e96612a4e565b5b6000612ea584828501612cfd565b91505092915050565b60008060408385031215612ec557612ec4612a4e565b5b6000612ed385828601612cfd565b9250506020612ee485828601612b2a565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612f2b82612bbb565b810181811067ffffffffffffffff82111715612f4a57612f49612ef3565b5b80604052505050565b6000612f5d612a44565b9050612f698282612f22565b919050565b600067ffffffffffffffff821115612f8957612f88612ef3565b5b612f9282612bbb565b9050602081019050919050565b82818337600083830152505050565b6000612fc1612fbc84612f6e565b612f53565b905082815260208101848484011115612fdd57612fdc612eee565b5b612fe8848285612f9f565b509392505050565b600082601f83011261300557613004612dcf565b5b8135613015848260208601612fae565b91505092915050565b6000806000806080858703121561303857613037612a4e565b5b600061304687828801612cfd565b945050602061305787828801612cfd565b935050604061306887828801612c48565b925050606085013567ffffffffffffffff81111561308957613088612a53565b5b61309587828801612ff0565b91505092959194509250565b600080604083850312156130b8576130b7612a4e565b5b60006130c685828601612cfd565b92505060206130d785828601612cfd565b9150509250929050565b600080604083850312156130f8576130f7612a4e565b5b600061310685828601612c48565b925050602061311785828601612cfd565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613157602083612b77565b915061316282613121565b602082019050919050565b600060208201905081810360008301526131868161314a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131d457607f821691505b6020821081036131e7576131e661318d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613249602d83612b77565b9150613254826131ed565b604082019050919050565b600060208201905081810360008301526132788161323c565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006132db602283612b77565b91506132e68261327f565b604082019050919050565b6000602082019050818103600083015261330a816132ce565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061336d603983612b77565b915061337882613311565b604082019050919050565b6000602082019050818103600083015261339c81613360565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006133ff602283612b77565b915061340a826133a3565b604082019050919050565b6000602082019050818103600083015261342e816133f2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061346f82612c27565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134a1576134a0613435565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613508602e83612b77565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061359a602383612b77565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261363d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613600565b6136478683613600565b95508019841693508086168417925050509392505050565b6000819050919050565b600061368461367f61367a84612c27565b61365f565b612c27565b9050919050565b6000819050919050565b61369e83613669565b6136b26136aa8261368b565b84845461360d565b825550505050565b600090565b6136c76136ba565b6136d2818484613695565b505050565b5b818110156136f6576136eb6000826136bf565b6001810190506136d8565b5050565b601f82111561373b5761370c816135db565b613715846135f0565b81016020851015613724578190505b613738613730856135f0565b8301826136d7565b50505b505050565b600082821c905092915050565b600061375e60001984600802613740565b1980831691505092915050565b6000613777838361374d565b9150826002028217905092915050565b61379183836135d0565b67ffffffffffffffff8111156137aa576137a9612ef3565b5b6137b482546131bc565b6137bf8282856136fa565b6000601f8311600181146137ee57600084156137dc578287013590505b6137e6858261376b565b86555061384e565b601f1984166137fc866135db565b60005b82811015613824578489013582556001820191506020850194506020810190506137ff565b86831015613841578489013561383d601f89168261374d565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006138b3602b83612b77565b91506138be82613857565b604082019050919050565b600060208201905081810360008301526138e2816138a6565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061391f601f83612b77565b915061392a826138e9565b602082019050919050565b6000602082019050818103600083015261394e81613912565b9050919050565b7f4e6f207a65726f206d696e747300000000000000000000000000000000000000600082015250565b600061398b600d83612b77565b915061399682613955565b602082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b60006139f7601283612b77565b9150613a02826139c1565b602082019050919050565b60006020820190508181036000830152613a26816139ea565b9050919050565b7f53616c6520686173206e6f742073746172746564210000000000000000000000600082015250565b6000613a63601583612b77565b9150613a6e82613a2d565b602082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b6000613aa482612c27565b9150613aaf83612c27565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ae457613ae3613435565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613b25601283612b77565b9150613b3082613aef565b602082019050919050565b60006020820190508181036000830152613b5481613b18565b9050919050565b6000613b6682612c27565b9150613b7183612c27565b925082821015613b8457613b83613435565b5b828203905092915050565b6000613b9a82612c27565b9150613ba583612c27565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bde57613bdd613435565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613c1f601683612b77565b9150613c2a82613be9565b602082019050919050565b60006020820190508181036000830152613c4e81613c12565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613c8b601a83612b77565b9150613c9682613c55565b602082019050919050565b60006020820190508181036000830152613cba81613c7e565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d1d603383612b77565b9150613d2882613cc1565b604082019050919050565b60006020820190508181036000830152613d4c81613d10565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613daf602f83612b77565b9150613dba82613d53565b604082019050919050565b60006020820190508181036000830152613dde81613da2565b9050919050565b600081905092915050565b6000613dfb82612b6c565b613e058185613de5565b9350613e15818560208601612b88565b80840191505092915050565b6000613e2d8285613df0565b9150613e398284613df0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ea1602683612b77565b9150613eac82613e45565b604082019050919050565b60006020820190508181036000830152613ed081613e94565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f33603283612b77565b9150613f3e82613ed7565b604082019050919050565b60006020820190508181036000830152613f6281613f26565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613fc5602683612b77565b9150613fd082613f69565b604082019050919050565b60006020820190508181036000830152613ff481613fb8565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614057602583612b77565b915061406282613ffb565b604082019050919050565b600060208201905081810360008301526140868161404a565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006140b48261408d565b91506140bf8361408d565b9250828210156140d2576140d1613435565b5b828203905092915050565b60006140e88261408d565b91506140f38361408d565b9250826fffffffffffffffffffffffffffffffff0382111561411857614117613435565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061417f602a83612b77565b915061418a82614123565b604082019050919050565b600060208201905081810360008301526141ae81614172565b9050919050565b60006141c082612c27565b9150600082036141d3576141d2613435565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061423a602f83612b77565b9150614245826141de565b604082019050919050565b600060208201905081810360008301526142698161422d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061429782614270565b6142a1818561427b565b93506142b1818560208601612b88565b6142ba81612bbb565b840191505092915050565b60006080820190506142da6000830187612cbc565b6142e76020830186612cbc565b6142f46040830185612d52565b8181036060830152614306818461428c565b905095945050505050565b60008151905061432081612a84565b92915050565b60006020828403121561433c5761433b612a4e565b5b600061434a84828501614311565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061438d82612c27565b915061439883612c27565b9250826143a8576143a7614353565b5b828204905092915050565b60006143be82612c27565b91506143c983612c27565b9250826143d9576143d8614353565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061446f602183612b77565b915061447a82614413565b604082019050919050565b6000602082019050818103600083015261449e81614462565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006144db601d83612b77565b91506144e6826144a5565b602082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061456d602283612b77565b915061457882614511565b604082019050919050565b6000602082019050818103600083015261459c81614560565b905091905056fea2646970667358221220642986a0ec47a2ae600b6c785b2ddc197ed1f245f729eaf42dc65ef11c461e9664736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000003
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 3
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000003
Deployed Bytecode Sourcemap
41025:1593:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28745:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42300:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30471:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31996:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31559:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27309:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32846:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27937:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42170:122;;;:::i;:::-;;33051:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27472:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42510:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41371:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30294:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29171:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7317:94;;;;;;;;;;;;;:::i;:::-;;6666:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30626:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41503:514;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32264:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33271:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30787:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41279:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37602:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32601:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42025:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7566:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28745:370;28872:4;28917:25;28902:40;;;:11;:40;;;;:99;;;;28968:33;28953:48;;;:11;:48;;;;28902:99;:160;;;;29027:35;29012:50;;;:11;:50;;;;28902:160;:207;;;;29073:36;29097:11;29073:23;:36::i;:::-;28902:207;28888:221;;28745:370;;;:::o;42300:81::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42367:6:::1;42358;;:15;;;;;;;;;;;;;;;;;;42300:81:::0;:::o;30471:94::-;30525:13;30554:5;30547:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30471:94;:::o;31996:204::-;32064:7;32088:16;32096:7;32088;:16::i;:::-;32080:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32170:15;:24;32186:7;32170:24;;;;;;;;;;;;;;;;;;;;;32163:31;;31996:204;;;:::o;31559:379::-;31628:13;31644:24;31660:7;31644:15;:24::i;:::-;31628:40;;31689:5;31683:11;;:2;:11;;;31675:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31774:5;31758:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31783:37;31800:5;31807:12;:10;:12::i;:::-;31783:16;:37::i;:::-;31758:62;31742:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31904:28;31913:2;31917:7;31926:5;31904:8;:28::i;:::-;31621:317;31559:379;;:::o;27309:94::-;27362:7;27385:12;;27378:19;;27309:94;:::o;32846:142::-;32954:28;32964:4;32970:2;32974:7;32954:9;:28::i;:::-;32846:142;;;:::o;27937:744::-;28046:7;28081:16;28091:5;28081:9;:16::i;:::-;28073:5;:24;28065:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28143:22;28168:13;:11;:13::i;:::-;28143:38;;28188:19;28218:25;28268:9;28263:350;28287:14;28283:1;:18;28263:350;;;28317:31;28351:11;:14;28363:1;28351:14;;;;;;;;;;;28317:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28404:1;28378:28;;:9;:14;;;:28;;;28374:89;;28439:9;:14;;;28419:34;;28374:89;28496:5;28475:26;;:17;:26;;;28471:135;;28533:5;28518:11;:20;28514:59;;28560:1;28553:8;;;;;;;;;28514:59;28583:13;;;;;:::i;:::-;;;;28471:135;28308:305;28303:3;;;;;:::i;:::-;;;;28263:350;;;;28619:56;;;;;;;;;;:::i;:::-;;;;;;;;27937:744;;;;;:::o;42170:122::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42244:10:::1;42236:24;;:47;42261:21;42236:47;;;;;;;;;;;;;;;;;;;;;;;42228:56;;;::::0;::::1;;42170:122::o:0;33051:157::-;33163:39;33180:4;33186:2;33190:7;33163:39;;;;;;;;;;;;:16;:39::i;:::-;33051:157;;;:::o;27472:177::-;27539:7;27571:13;:11;:13::i;:::-;27563:5;:21;27555:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27638:5;27631:12;;27472:177;;;:::o;42510:105::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42600:7:::1;;42585:12;:22;;;;;;;:::i;:::-;;42510:105:::0;;:::o;41371:25::-;;;;;;;;;;;;;:::o;30294:118::-;30358:7;30381:20;30393:7;30381:11;:20::i;:::-;:25;;;30374:32;;30294:118;;;:::o;29171:211::-;29235:7;29276:1;29259:19;;:5;:19;;;29251:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;29348:12;:19;29361:5;29348:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29340:36;;29333:43;;29171:211;;;:::o;7317:94::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7382:21:::1;7400:1;7382:9;:21::i;:::-;7317:94::o:0;6666:87::-;6712:7;6739:6;;;;;;;;;;;6732:13;;6666:87;:::o;30626:98::-;30682:13;30711:7;30704:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30626:98;:::o;41503:514::-;1812:1;2410:7;;:19;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;41579:14:::1;41596:13;:11;:13::i;:::-;41579:30;;41642:1;41628:11;:15;41620:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;41180:1;41679:11;:30;;41671:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;41751:6;;;;;;;;;;;41750:7;41742:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;41135:3;41813:11;41804:6;:20;;;;:::i;:::-;:36;;41796:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41263:7;41223:1;41895:11;:29;;;;:::i;:::-;41894:45;;;;:::i;:::-;41881:9;:58;;41873:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;41976:33;41986:10;41997:11;41976:9;:33::i;:::-;41568:449;1768:1:::0;2722:7;:22;;;;41503:514;:::o;32264:274::-;32367:12;:10;:12::i;:::-;32355:24;;:8;:24;;;32347:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;32464:8;32419:18;:32;32438:12;:10;:12::i;:::-;32419:32;;;;;;;;;;;;;;;:42;32452:8;32419:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32513:8;32484:48;;32499:12;:10;:12::i;:::-;32484:48;;;32523:8;32484:48;;;;;;:::i;:::-;;;;;;;;32264:274;;:::o;33271:311::-;33408:28;33418:4;33424:2;33428:7;33408:9;:28::i;:::-;33459:48;33482:4;33488:2;33492:7;33501:5;33459:22;:48::i;:::-;33443:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;33271:311;;;;:::o;30787:394::-;30885:13;30926:16;30934:7;30926;:16::i;:::-;30910:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:21;31040:10;:8;:10::i;:::-;31016:34;;31095:1;31077:7;31071:21;:25;:104;;;;;;;;;;;;;;;;;31132:7;31141:18;:7;:16;:18::i;:::-;31115:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31071:104;31057:118;;;30787:394;;;:::o;41279:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37602:43::-;;;;:::o;32601:186::-;32723:4;32746:18;:25;32765:5;32746:25;;;;;;;;;;;;;;;:35;32772:8;32746:35;;;;;;;;;;;;;;;;;;;;;;;;;32739:42;;32601:186;;;;:::o;42025:133::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42117:33:::1;42127:9;42138:11;42117:9;:33::i;:::-;42025:133:::0;;:::o;7566:192::-;6897:12;:10;:12::i;:::-;6886:23;;:7;:5;:7::i;:::-;:23;;;6878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7675:1:::1;7655:22;;:8;:22;;::::0;7647:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7731:19;7741:8;7731:9;:19::i;:::-;7566:192:::0;:::o;18652:157::-;18737:4;18776:25;18761:40;;;:11;:40;;;;18754:47;;18652:157;;;:::o;5454:98::-;5507:7;5534:10;5527:17;;5454:98;:::o;33821:105::-;33878:4;33908:12;;33898:7;:22;33891:29;;33821:105;;;:::o;37424:172::-;37548:2;37521:15;:24;37537:7;37521:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37582:7;37578:2;37562:28;;37571:5;37562:28;;;;;;;;;;;;37424:172;;;:::o;35789:1529::-;35886:35;35924:20;35936:7;35924:11;:20::i;:::-;35886:58;;35953:22;35995:13;:18;;;35979:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;36048:12;:10;:12::i;:::-;36024:36;;:20;36036:7;36024:11;:20::i;:::-;:36;;;35979:81;:142;;;;36071:50;36088:13;:18;;;36108:12;:10;:12::i;:::-;36071:16;:50::i;:::-;35979:142;35953:169;;36147:17;36131:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;36279:4;36257:26;;:13;:18;;;:26;;;36241:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;36368:1;36354:16;;:2;:16;;;36346:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36421:43;36443:4;36449:2;36453:7;36462:1;36421:21;:43::i;:::-;36521:49;36538:1;36542:7;36551:13;:18;;;36521:8;:49::i;:::-;36609:1;36579:12;:18;36592:4;36579:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36645:1;36617:12;:16;36630:2;36617:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36676:43;;;;;;;;36691:2;36676:43;;;;;;36702:15;36676:43;;;;;36653:11;:20;36665:7;36653:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36947:19;36979:1;36969:7;:11;;;;:::i;:::-;36947:33;;37032:1;36991:43;;:11;:24;37003:11;36991:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36987:236;;37049:20;37057:11;37049:7;:20::i;:::-;37045:171;;;37109:97;;;;;;;;37136:13;:18;;;37109:97;;;;;;37167:13;:28;;;37109:97;;;;;37082:11;:24;37094:11;37082:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37045:171;36987:236;37255:7;37251:2;37236:27;;37245:4;37236:27;;;;;;;;;;;;37270:42;37291:4;37297:2;37301:7;37310:1;37270:20;:42::i;:::-;35879:1439;;;35789:1529;;;:::o;29634:606::-;29710:21;;:::i;:::-;29751:16;29759:7;29751;:16::i;:::-;29743:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29823:26;29871:12;29860:7;:23;29856:93;;29940:1;29925:12;29915:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;29894:47;;29856:93;29962:12;29977:7;29962:22;;29957:212;29994:18;29986:4;:26;29957:212;;30031:31;30065:11;:17;30077:4;30065:17;;;;;;;;;;;30031:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30121:1;30095:28;;:9;:14;;;:28;;;30091:71;;30143:9;30136:16;;;;;;;30091:71;30022:147;30014:6;;;;;:::i;:::-;;;;29957:212;;;;30177:57;;;;;;;;;;:::i;:::-;;;;;;;;29634:606;;;;:::o;7766:173::-;7822:16;7841:6;;;;;;;;;;;7822:25;;7867:8;7858:6;;:17;;;;;;;;;;;;;;;;;;7922:8;7891:40;;7912:8;7891:40;;;;;;;;;;;;7811:128;7766:173;:::o;33932:98::-;33997:27;34007:2;34011:8;33997:27;;;;;;;;;;;;:9;:27::i;:::-;33932:98;;:::o;39135:690::-;39272:4;39289:15;:2;:13;;;:15::i;:::-;39285:535;;;39344:2;39328:36;;;39365:12;:10;:12::i;:::-;39379:4;39385:7;39394:5;39328:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39315:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39576:1;39559:6;:13;:18;39555:215;;39592:61;;;;;;;;;;:::i;:::-;;;;;;;;39555:215;39738:6;39732:13;39723:6;39719:2;39715:15;39708:38;39315:464;39460:45;;;39450:55;;;:6;:55;;;;39443:62;;;;;39285:535;39808:4;39801:11;;39135:690;;;;;;;:::o;42389:113::-;42449:13;42482:12;42475:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42389:113;:::o;3070:723::-;3126:13;3356:1;3347:5;:10;3343:53;;3374:10;;;;;;;;;;;;;;;;;;;;;3343:53;3406:12;3421:5;3406:20;;3437:14;3462:78;3477:1;3469:4;:9;3462:78;;3495:8;;;;;:::i;:::-;;;;3526:2;3518:10;;;;;:::i;:::-;;;3462:78;;;3550:19;3582:6;3572:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3550:39;;3600:154;3616:1;3607:5;:10;3600:154;;3644:1;3634:11;;;;;:::i;:::-;;;3711:2;3703:5;:10;;;;:::i;:::-;3690:2;:24;;;;:::i;:::-;3677:39;;3660:6;3667;3660:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3740:2;3731:11;;;;;:::i;:::-;;;3600:154;;;3778:6;3764:21;;;;;3070:723;;;;:::o;40287:141::-;;;;;:::o;40814:140::-;;;;;:::o;34285:1272::-;34390:20;34413:12;;34390:35;;34454:1;34440:16;;:2;:16;;;34432:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34631:21;34639:12;34631:7;:21::i;:::-;34630:22;34622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34713:12;34701:8;:24;;34693:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34773:61;34803:1;34807:2;34811:12;34825:8;34773:21;:61::i;:::-;34843:30;34876:12;:16;34889:2;34876:16;;;;;;;;;;;;;;;34843:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34918:119;;;;;;;;34968:8;34938:11;:19;;;:39;;;;:::i;:::-;34918:119;;;;;;35021:8;34986:11;:24;;;:44;;;;:::i;:::-;34918:119;;;;;34899:12;:16;34912:2;34899:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35072:43;;;;;;;;35087:2;35072:43;;;;;;35098:15;35072:43;;;;;35044:11;:25;35056:12;35044:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35124:20;35147:12;35124:35;;35173:9;35168:281;35192:8;35188:1;:12;35168:281;;;35246:12;35242:2;35221:38;;35238:1;35221:38;;;;;;;;;;;;35286:59;35317:1;35321:2;35325:12;35339:5;35286:22;:59::i;:::-;35268:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;35427:14;;;;;:::i;:::-;;;;35202:3;;;;;:::i;:::-;;;;35168:281;;;;35472:12;35457;:27;;;;35491:60;35520:1;35524:2;35528:12;35542:8;35491:20;:60::i;:::-;34383:1174;;;34285:1272;;;:::o;8712:387::-;8772:4;8980:12;9047:7;9035:20;9027:28;;9090:1;9083:4;:8;9076:15;;;8712:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:117;6860:1;6857;6850:12;6888:553;6946:8;6956:6;7006:3;6999:4;6991:6;6987:17;6983:27;6973:122;;7014:79;;:::i;:::-;6973:122;7127:6;7114:20;7104:30;;7157:18;7149:6;7146:30;7143:117;;;7179:79;;:::i;:::-;7143:117;7293:4;7285:6;7281:17;7269:29;;7347:3;7339:4;7331:6;7327:17;7317:8;7313:32;7310:41;7307:128;;;7354:79;;:::i;:::-;7307:128;6888:553;;;;;:::o;7447:529::-;7518:6;7526;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7729:1;7718:9;7714:17;7701:31;7759:18;7751:6;7748:30;7745:117;;;7781:79;;:::i;:::-;7745:117;7894:65;7951:7;7942:6;7931:9;7927:22;7894:65;:::i;:::-;7876:83;;;;7672:297;7447:529;;;;;:::o;7982:329::-;8041:6;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;7982:329;;;;:::o;8317:468::-;8382:6;8390;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8692:2;8718:50;8760:7;8751:6;8740:9;8736:22;8718:50;:::i;:::-;8708:60;;8663:115;8317:468;;;;;:::o;8791:117::-;8900:1;8897;8890:12;8914:180;8962:77;8959:1;8952:88;9059:4;9056:1;9049:15;9083:4;9080:1;9073:15;9100:281;9183:27;9205:4;9183:27;:::i;:::-;9175:6;9171:40;9313:6;9301:10;9298:22;9277:18;9265:10;9262:34;9259:62;9256:88;;;9324:18;;:::i;:::-;9256:88;9364:10;9360:2;9353:22;9143:238;9100:281;;:::o;9387:129::-;9421:6;9448:20;;:::i;:::-;9438:30;;9477:33;9505:4;9497:6;9477:33;:::i;:::-;9387:129;;;:::o;9522:307::-;9583:4;9673:18;9665:6;9662:30;9659:56;;;9695:18;;:::i;:::-;9659:56;9733:29;9755:6;9733:29;:::i;:::-;9725:37;;9817:4;9811;9807:15;9799:23;;9522:307;;;:::o;9835:154::-;9919:6;9914:3;9909;9896:30;9981:1;9972:6;9967:3;9963:16;9956:27;9835:154;;;:::o;9995:410::-;10072:5;10097:65;10113:48;10154:6;10113:48;:::i;:::-;10097:65;:::i;:::-;10088:74;;10185:6;10178:5;10171:21;10223:4;10216:5;10212:16;10261:3;10252:6;10247:3;10243:16;10240:25;10237:112;;;10268:79;;:::i;:::-;10237:112;10358:41;10392:6;10387:3;10382;10358:41;:::i;:::-;10078:327;9995:410;;;;;:::o;10424:338::-;10479:5;10528:3;10521:4;10513:6;10509:17;10505:27;10495:122;;10536:79;;:::i;:::-;10495:122;10653:6;10640:20;10678:78;10752:3;10744:6;10737:4;10729:6;10725:17;10678:78;:::i;:::-;10669:87;;10485:277;10424:338;;;;:::o;10768:943::-;10863:6;10871;10879;10887;10936:3;10924:9;10915:7;10911:23;10907:33;10904:120;;;10943:79;;:::i;:::-;10904:120;11063:1;11088:53;11133:7;11124:6;11113:9;11109:22;11088:53;:::i;:::-;11078:63;;11034:117;11190:2;11216:53;11261:7;11252:6;11241:9;11237:22;11216:53;:::i;:::-;11206:63;;11161:118;11318:2;11344:53;11389:7;11380:6;11369:9;11365:22;11344:53;:::i;:::-;11334:63;;11289:118;11474:2;11463:9;11459:18;11446:32;11505:18;11497:6;11494:30;11491:117;;;11527:79;;:::i;:::-;11491:117;11632:62;11686:7;11677:6;11666:9;11662:22;11632:62;:::i;:::-;11622:72;;11417:287;10768:943;;;;;;;:::o;11717:474::-;11785:6;11793;11842:2;11830:9;11821:7;11817:23;11813:32;11810:119;;;11848:79;;:::i;:::-;11810:119;11968:1;11993:53;12038:7;12029:6;12018:9;12014:22;11993:53;:::i;:::-;11983:63;;11939:117;12095:2;12121:53;12166:7;12157:6;12146:9;12142:22;12121:53;:::i;:::-;12111:63;;12066:118;11717:474;;;;;:::o;12197:::-;12265:6;12273;12322:2;12310:9;12301:7;12297:23;12293:32;12290:119;;;12328:79;;:::i;:::-;12290:119;12448:1;12473:53;12518:7;12509:6;12498:9;12494:22;12473:53;:::i;:::-;12463:63;;12419:117;12575:2;12601:53;12646:7;12637:6;12626:9;12622:22;12601:53;:::i;:::-;12591:63;;12546:118;12197:474;;;;;:::o;12677:182::-;12817:34;12813:1;12805:6;12801:14;12794:58;12677:182;:::o;12865:366::-;13007:3;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;12865:366;;;:::o;13237:419::-;13403:4;13441:2;13430:9;13426:18;13418:26;;13490:9;13484:4;13480:20;13476:1;13465:9;13461:17;13454:47;13518:131;13644:4;13518:131;:::i;:::-;13510:139;;13237:419;;;:::o;13662:180::-;13710:77;13707:1;13700:88;13807:4;13804:1;13797:15;13831:4;13828:1;13821:15;13848:320;13892:6;13929:1;13923:4;13919:12;13909:22;;13976:1;13970:4;13966:12;13997:18;13987:81;;14053:4;14045:6;14041:17;14031:27;;13987:81;14115:2;14107:6;14104:14;14084:18;14081:38;14078:84;;14134:18;;:::i;:::-;14078:84;13899:269;13848:320;;;:::o;14174:232::-;14314:34;14310:1;14302:6;14298:14;14291:58;14383:15;14378:2;14370:6;14366:15;14359:40;14174:232;:::o;14412:366::-;14554:3;14575:67;14639:2;14634:3;14575:67;:::i;:::-;14568:74;;14651:93;14740:3;14651:93;:::i;:::-;14769:2;14764:3;14760:12;14753:19;;14412:366;;;:::o;14784:419::-;14950:4;14988:2;14977:9;14973:18;14965:26;;15037:9;15031:4;15027:20;15023:1;15012:9;15008:17;15001:47;15065:131;15191:4;15065:131;:::i;:::-;15057:139;;14784:419;;;:::o;15209:221::-;15349:34;15345:1;15337:6;15333:14;15326:58;15418:4;15413:2;15405:6;15401:15;15394:29;15209:221;:::o;15436:366::-;15578:3;15599:67;15663:2;15658:3;15599:67;:::i;:::-;15592:74;;15675:93;15764:3;15675:93;:::i;:::-;15793:2;15788:3;15784:12;15777:19;;15436:366;;;:::o;15808:419::-;15974:4;16012:2;16001:9;15997:18;15989:26;;16061:9;16055:4;16051:20;16047:1;16036:9;16032:17;16025:47;16089:131;16215:4;16089:131;:::i;:::-;16081:139;;15808:419;;;:::o;16233:244::-;16373:34;16369:1;16361:6;16357:14;16350:58;16442:27;16437:2;16429:6;16425:15;16418:52;16233:244;:::o;16483:366::-;16625:3;16646:67;16710:2;16705:3;16646:67;:::i;:::-;16639:74;;16722:93;16811:3;16722:93;:::i;:::-;16840:2;16835:3;16831:12;16824:19;;16483:366;;;:::o;16855:419::-;17021:4;17059:2;17048:9;17044:18;17036:26;;17108:9;17102:4;17098:20;17094:1;17083:9;17079:17;17072:47;17136:131;17262:4;17136:131;:::i;:::-;17128:139;;16855:419;;;:::o;17280:221::-;17420:34;17416:1;17408:6;17404:14;17397:58;17489:4;17484:2;17476:6;17472:15;17465:29;17280:221;:::o;17507:366::-;17649:3;17670:67;17734:2;17729:3;17670:67;:::i;:::-;17663:74;;17746:93;17835:3;17746:93;:::i;:::-;17864:2;17859:3;17855:12;17848:19;;17507:366;;;:::o;17879:419::-;18045:4;18083:2;18072:9;18068:18;18060:26;;18132:9;18126:4;18122:20;18118:1;18107:9;18103:17;18096:47;18160:131;18286:4;18160:131;:::i;:::-;18152:139;;17879:419;;;:::o;18304:180::-;18352:77;18349:1;18342:88;18449:4;18446:1;18439:15;18473:4;18470:1;18463:15;18490:233;18529:3;18552:24;18570:5;18552:24;:::i;:::-;18543:33;;18598:66;18591:5;18588:77;18585:103;;18668:18;;:::i;:::-;18585:103;18715:1;18708:5;18704:13;18697:20;;18490:233;;;:::o;18729:::-;18869:34;18865:1;18857:6;18853:14;18846:58;18938:16;18933:2;18925:6;18921:15;18914:41;18729:233;:::o;18968:366::-;19110:3;19131:67;19195:2;19190:3;19131:67;:::i;:::-;19124:74;;19207:93;19296:3;19207:93;:::i;:::-;19325:2;19320:3;19316:12;19309:19;;18968:366;;;:::o;19340:419::-;19506:4;19544:2;19533:9;19529:18;19521:26;;19593:9;19587:4;19583:20;19579:1;19568:9;19564:17;19557:47;19621:131;19747:4;19621:131;:::i;:::-;19613:139;;19340:419;;;:::o;19765:222::-;19905:34;19901:1;19893:6;19889:14;19882:58;19974:5;19969:2;19961:6;19957:15;19950:30;19765:222;:::o;19993:366::-;20135:3;20156:67;20220:2;20215:3;20156:67;:::i;:::-;20149:74;;20232:93;20321:3;20232:93;:::i;:::-;20350:2;20345:3;20341:12;20334:19;;19993:366;;;:::o;20365:419::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20618:9;20612:4;20608:20;20604:1;20593:9;20589:17;20582:47;20646:131;20772:4;20646:131;:::i;:::-;20638:139;;20365:419;;;:::o;20790:97::-;20849:6;20877:3;20867:13;;20790:97;;;;:::o;20893:141::-;20942:4;20965:3;20957:11;;20988:3;20985:1;20978:14;21022:4;21019:1;21009:18;21001:26;;20893:141;;;:::o;21040:93::-;21077:6;21124:2;21119;21112:5;21108:14;21104:23;21094:33;;21040:93;;;:::o;21139:107::-;21183:8;21233:5;21227:4;21223:16;21202:37;;21139:107;;;;:::o;21252:393::-;21321:6;21371:1;21359:10;21355:18;21394:97;21424:66;21413:9;21394:97;:::i;:::-;21512:39;21542:8;21531:9;21512:39;:::i;:::-;21500:51;;21584:4;21580:9;21573:5;21569:21;21560:30;;21633:4;21623:8;21619:19;21612:5;21609:30;21599:40;;21328:317;;21252:393;;;;;:::o;21651:60::-;21679:3;21700:5;21693:12;;21651:60;;;:::o;21717:142::-;21767:9;21800:53;21818:34;21827:24;21845:5;21827:24;:::i;:::-;21818:34;:::i;:::-;21800:53;:::i;:::-;21787:66;;21717:142;;;:::o;21865:75::-;21908:3;21929:5;21922:12;;21865:75;;;:::o;21946:269::-;22056:39;22087:7;22056:39;:::i;:::-;22117:91;22166:41;22190:16;22166:41;:::i;:::-;22158:6;22151:4;22145:11;22117:91;:::i;:::-;22111:4;22104:105;22022:193;21946:269;;;:::o;22221:73::-;22266:3;22221:73;:::o;22300:189::-;22377:32;;:::i;:::-;22418:65;22476:6;22468;22462:4;22418:65;:::i;:::-;22353:136;22300:189;;:::o;22495:186::-;22555:120;22572:3;22565:5;22562:14;22555:120;;;22626:39;22663:1;22656:5;22626:39;:::i;:::-;22599:1;22592:5;22588:13;22579:22;;22555:120;;;22495:186;;:::o;22687:543::-;22788:2;22783:3;22780:11;22777:446;;;22822:38;22854:5;22822:38;:::i;:::-;22906:29;22924:10;22906:29;:::i;:::-;22896:8;22892:44;23089:2;23077:10;23074:18;23071:49;;;23110:8;23095:23;;23071:49;23133:80;23189:22;23207:3;23189:22;:::i;:::-;23179:8;23175:37;23162:11;23133:80;:::i;:::-;22792:431;;22777:446;22687:543;;;:::o;23236:117::-;23290:8;23340:5;23334:4;23330:16;23309:37;;23236:117;;;;:::o;23359:169::-;23403:6;23436:51;23484:1;23480:6;23472:5;23469:1;23465:13;23436:51;:::i;:::-;23432:56;23517:4;23511;23507:15;23497:25;;23410:118;23359:169;;;;:::o;23533:295::-;23609:4;23755:29;23780:3;23774:4;23755:29;:::i;:::-;23747:37;;23817:3;23814:1;23810:11;23804:4;23801:21;23793:29;;23533:295;;;;:::o;23833:1403::-;23957:44;23997:3;23992;23957:44;:::i;:::-;24066:18;24058:6;24055:30;24052:56;;;24088:18;;:::i;:::-;24052:56;24132:38;24164:4;24158:11;24132:38;:::i;:::-;24217:67;24277:6;24269;24263:4;24217:67;:::i;:::-;24311:1;24340:2;24332:6;24329:14;24357:1;24352:632;;;;25028:1;25045:6;25042:84;;;25101:9;25096:3;25092:19;25079:33;25070:42;;25042:84;25152:67;25212:6;25205:5;25152:67;:::i;:::-;25146:4;25139:81;25001:229;24322:908;;24352:632;24404:4;24400:9;24392:6;24388:22;24438:37;24470:4;24438:37;:::i;:::-;24497:1;24511:215;24525:7;24522:1;24519:14;24511:215;;;24611:9;24606:3;24602:19;24589:33;24581:6;24574:49;24662:1;24654:6;24650:14;24640:24;;24709:2;24698:9;24694:18;24681:31;;24548:4;24545:1;24541:12;24536:17;;24511:215;;;24754:6;24745:7;24742:19;24739:186;;;24819:9;24814:3;24810:19;24797:33;24862:48;24904:4;24896:6;24892:17;24881:9;24862:48;:::i;:::-;24854:6;24847:64;24762:163;24739:186;24971:1;24967;24959:6;24955:14;24951:22;24945:4;24938:36;24359:625;;;24322:908;;23932:1304;;;23833:1403;;;:::o;25242:230::-;25382:34;25378:1;25370:6;25366:14;25359:58;25451:13;25446:2;25438:6;25434:15;25427:38;25242:230;:::o;25478:366::-;25620:3;25641:67;25705:2;25700:3;25641:67;:::i;:::-;25634:74;;25717:93;25806:3;25717:93;:::i;:::-;25835:2;25830:3;25826:12;25819:19;;25478:366;;;:::o;25850:419::-;26016:4;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;25850:419;;;:::o;26275:181::-;26415:33;26411:1;26403:6;26399:14;26392:57;26275:181;:::o;26462:366::-;26604:3;26625:67;26689:2;26684:3;26625:67;:::i;:::-;26618:74;;26701:93;26790:3;26701:93;:::i;:::-;26819:2;26814:3;26810:12;26803:19;;26462:366;;;:::o;26834:419::-;27000:4;27038:2;27027:9;27023:18;27015:26;;27087:9;27081:4;27077:20;27073:1;27062:9;27058:17;27051:47;27115:131;27241:4;27115:131;:::i;:::-;27107:139;;26834:419;;;:::o;27259:163::-;27399:15;27395:1;27387:6;27383:14;27376:39;27259:163;:::o;27428:366::-;27570:3;27591:67;27655:2;27650:3;27591:67;:::i;:::-;27584:74;;27667:93;27756:3;27667:93;:::i;:::-;27785:2;27780:3;27776:12;27769:19;;27428:366;;;:::o;27800:419::-;27966:4;28004:2;27993:9;27989:18;27981:26;;28053:9;28047:4;28043:20;28039:1;28028:9;28024:17;28017:47;28081:131;28207:4;28081:131;:::i;:::-;28073:139;;27800:419;;;:::o;28225:168::-;28365:20;28361:1;28353:6;28349:14;28342:44;28225:168;:::o;28399:366::-;28541:3;28562:67;28626:2;28621:3;28562:67;:::i;:::-;28555:74;;28638:93;28727:3;28638:93;:::i;:::-;28756:2;28751:3;28747:12;28740:19;;28399:366;;;:::o;28771:419::-;28937:4;28975:2;28964:9;28960:18;28952:26;;29024:9;29018:4;29014:20;29010:1;28999:9;28995:17;28988:47;29052:131;29178:4;29052:131;:::i;:::-;29044:139;;28771:419;;;:::o;29196:171::-;29336:23;29332:1;29324:6;29320:14;29313:47;29196:171;:::o;29373:366::-;29515:3;29536:67;29600:2;29595:3;29536:67;:::i;:::-;29529:74;;29612:93;29701:3;29612:93;:::i;:::-;29730:2;29725:3;29721:12;29714:19;;29373:366;;;:::o;29745:419::-;29911:4;29949:2;29938:9;29934:18;29926:26;;29998:9;29992:4;29988:20;29984:1;29973:9;29969:17;29962:47;30026:131;30152:4;30026:131;:::i;:::-;30018:139;;29745:419;;;:::o;30170:305::-;30210:3;30229:20;30247:1;30229:20;:::i;:::-;30224:25;;30263:20;30281:1;30263:20;:::i;:::-;30258:25;;30417:1;30349:66;30345:74;30342:1;30339:81;30336:107;;;30423:18;;:::i;:::-;30336:107;30467:1;30464;30460:9;30453:16;;30170:305;;;;:::o;30481:168::-;30621:20;30617:1;30609:6;30605:14;30598:44;30481:168;:::o;30655:366::-;30797:3;30818:67;30882:2;30877:3;30818:67;:::i;:::-;30811:74;;30894:93;30983:3;30894:93;:::i;:::-;31012:2;31007:3;31003:12;30996:19;;30655:366;;;:::o;31027:419::-;31193:4;31231:2;31220:9;31216:18;31208:26;;31280:9;31274:4;31270:20;31266:1;31255:9;31251:17;31244:47;31308:131;31434:4;31308:131;:::i;:::-;31300:139;;31027:419;;;:::o;31452:191::-;31492:4;31512:20;31530:1;31512:20;:::i;:::-;31507:25;;31546:20;31564:1;31546:20;:::i;:::-;31541:25;;31585:1;31582;31579:8;31576:34;;;31590:18;;:::i;:::-;31576:34;31635:1;31632;31628:9;31620:17;;31452:191;;;;:::o;31649:348::-;31689:7;31712:20;31730:1;31712:20;:::i;:::-;31707:25;;31746:20;31764:1;31746:20;:::i;:::-;31741:25;;31934:1;31866:66;31862:74;31859:1;31856:81;31851:1;31844:9;31837:17;31833:105;31830:131;;;31941:18;;:::i;:::-;31830:131;31989:1;31986;31982:9;31971:20;;31649:348;;;;:::o;32003:172::-;32143:24;32139:1;32131:6;32127:14;32120:48;32003:172;:::o;32181:366::-;32323:3;32344:67;32408:2;32403:3;32344:67;:::i;:::-;32337:74;;32420:93;32509:3;32420:93;:::i;:::-;32538:2;32533:3;32529:12;32522:19;;32181:366;;;:::o;32553:419::-;32719:4;32757:2;32746:9;32742:18;32734:26;;32806:9;32800:4;32796:20;32792:1;32781:9;32777:17;32770:47;32834:131;32960:4;32834:131;:::i;:::-;32826:139;;32553:419;;;:::o;32978:176::-;33118:28;33114:1;33106:6;33102:14;33095:52;32978:176;:::o;33160:366::-;33302:3;33323:67;33387:2;33382:3;33323:67;:::i;:::-;33316:74;;33399:93;33488:3;33399:93;:::i;:::-;33517:2;33512:3;33508:12;33501:19;;33160:366;;;:::o;33532:419::-;33698:4;33736:2;33725:9;33721:18;33713:26;;33785:9;33779:4;33775:20;33771:1;33760:9;33756:17;33749:47;33813:131;33939:4;33813:131;:::i;:::-;33805:139;;33532:419;;;:::o;33957:238::-;34097:34;34093:1;34085:6;34081:14;34074:58;34166:21;34161:2;34153:6;34149:15;34142:46;33957:238;:::o;34201:366::-;34343:3;34364:67;34428:2;34423:3;34364:67;:::i;:::-;34357:74;;34440:93;34529:3;34440:93;:::i;:::-;34558:2;34553:3;34549:12;34542:19;;34201:366;;;:::o;34573:419::-;34739:4;34777:2;34766:9;34762:18;34754:26;;34826:9;34820:4;34816:20;34812:1;34801:9;34797:17;34790:47;34854:131;34980:4;34854:131;:::i;:::-;34846:139;;34573:419;;;:::o;34998:234::-;35138:34;35134:1;35126:6;35122:14;35115:58;35207:17;35202:2;35194:6;35190:15;35183:42;34998:234;:::o;35238:366::-;35380:3;35401:67;35465:2;35460:3;35401:67;:::i;:::-;35394:74;;35477:93;35566:3;35477:93;:::i;:::-;35595:2;35590:3;35586:12;35579:19;;35238:366;;;:::o;35610:419::-;35776:4;35814:2;35803:9;35799:18;35791:26;;35863:9;35857:4;35853:20;35849:1;35838:9;35834:17;35827:47;35891:131;36017:4;35891:131;:::i;:::-;35883:139;;35610:419;;;:::o;36035:148::-;36137:11;36174:3;36159:18;;36035:148;;;;:::o;36189:377::-;36295:3;36323:39;36356:5;36323:39;:::i;:::-;36378:89;36460:6;36455:3;36378:89;:::i;:::-;36371:96;;36476:52;36521:6;36516:3;36509:4;36502:5;36498:16;36476:52;:::i;:::-;36553:6;36548:3;36544:16;36537:23;;36299:267;36189:377;;;;:::o;36572:435::-;36752:3;36774:95;36865:3;36856:6;36774:95;:::i;:::-;36767:102;;36886:95;36977:3;36968:6;36886:95;:::i;:::-;36879:102;;36998:3;36991:10;;36572:435;;;;;:::o;37013:225::-;37153:34;37149:1;37141:6;37137:14;37130:58;37222:8;37217:2;37209:6;37205:15;37198:33;37013:225;:::o;37244:366::-;37386:3;37407:67;37471:2;37466:3;37407:67;:::i;:::-;37400:74;;37483:93;37572:3;37483:93;:::i;:::-;37601:2;37596:3;37592:12;37585:19;;37244:366;;;:::o;37616:419::-;37782:4;37820:2;37809:9;37805:18;37797:26;;37869:9;37863:4;37859:20;37855:1;37844:9;37840:17;37833:47;37897:131;38023:4;37897:131;:::i;:::-;37889:139;;37616:419;;;:::o;38041:237::-;38181:34;38177:1;38169:6;38165:14;38158:58;38250:20;38245:2;38237:6;38233:15;38226:45;38041:237;:::o;38284:366::-;38426:3;38447:67;38511:2;38506:3;38447:67;:::i;:::-;38440:74;;38523:93;38612:3;38523:93;:::i;:::-;38641:2;38636:3;38632:12;38625:19;;38284:366;;;:::o;38656:419::-;38822:4;38860:2;38849:9;38845:18;38837:26;;38909:9;38903:4;38899:20;38895:1;38884:9;38880:17;38873:47;38937:131;39063:4;38937:131;:::i;:::-;38929:139;;38656:419;;;:::o;39081:225::-;39221:34;39217:1;39209:6;39205:14;39198:58;39290:8;39285:2;39277:6;39273:15;39266:33;39081:225;:::o;39312:366::-;39454:3;39475:67;39539:2;39534:3;39475:67;:::i;:::-;39468:74;;39551:93;39640:3;39551:93;:::i;:::-;39669:2;39664:3;39660:12;39653:19;;39312:366;;;:::o;39684:419::-;39850:4;39888:2;39877:9;39873:18;39865:26;;39937:9;39931:4;39927:20;39923:1;39912:9;39908:17;39901:47;39965:131;40091:4;39965:131;:::i;:::-;39957:139;;39684:419;;;:::o;40109:224::-;40249:34;40245:1;40237:6;40233:14;40226:58;40318:7;40313:2;40305:6;40301:15;40294:32;40109:224;:::o;40339:366::-;40481:3;40502:67;40566:2;40561:3;40502:67;:::i;:::-;40495:74;;40578:93;40667:3;40578:93;:::i;:::-;40696:2;40691:3;40687:12;40680:19;;40339:366;;;:::o;40711:419::-;40877:4;40915:2;40904:9;40900:18;40892:26;;40964:9;40958:4;40954:20;40950:1;40939:9;40935:17;40928:47;40992:131;41118:4;40992:131;:::i;:::-;40984:139;;40711:419;;;:::o;41136:118::-;41173:7;41213:34;41206:5;41202:46;41191:57;;41136:118;;;:::o;41260:191::-;41300:4;41320:20;41338:1;41320:20;:::i;:::-;41315:25;;41354:20;41372:1;41354:20;:::i;:::-;41349:25;;41393:1;41390;41387:8;41384:34;;;41398:18;;:::i;:::-;41384:34;41443:1;41440;41436:9;41428:17;;41260:191;;;;:::o;41457:273::-;41497:3;41516:20;41534:1;41516:20;:::i;:::-;41511:25;;41550:20;41568:1;41550:20;:::i;:::-;41545:25;;41672:1;41636:34;41632:42;41629:1;41626:49;41623:75;;;41678:18;;:::i;:::-;41623:75;41722:1;41719;41715:9;41708:16;;41457:273;;;;:::o;41736:229::-;41876:34;41872:1;41864:6;41860:14;41853:58;41945:12;41940:2;41932:6;41928:15;41921:37;41736:229;:::o;41971:366::-;42113:3;42134:67;42198:2;42193:3;42134:67;:::i;:::-;42127:74;;42210:93;42299:3;42210:93;:::i;:::-;42328:2;42323:3;42319:12;42312:19;;41971:366;;;:::o;42343:419::-;42509:4;42547:2;42536:9;42532:18;42524:26;;42596:9;42590:4;42586:20;42582:1;42571:9;42567:17;42560:47;42624:131;42750:4;42624:131;:::i;:::-;42616:139;;42343:419;;;:::o;42768:171::-;42807:3;42830:24;42848:5;42830:24;:::i;:::-;42821:33;;42876:4;42869:5;42866:15;42863:41;;42884:18;;:::i;:::-;42863:41;42931:1;42924:5;42920:13;42913:20;;42768:171;;;:::o;42945:234::-;43085:34;43081:1;43073:6;43069:14;43062:58;43154:17;43149:2;43141:6;43137:15;43130:42;42945:234;:::o;43185:366::-;43327:3;43348:67;43412:2;43407:3;43348:67;:::i;:::-;43341:74;;43424:93;43513:3;43424:93;:::i;:::-;43542:2;43537:3;43533:12;43526:19;;43185:366;;;:::o;43557:419::-;43723:4;43761:2;43750:9;43746:18;43738:26;;43810:9;43804:4;43800:20;43796:1;43785:9;43781:17;43774:47;43838:131;43964:4;43838:131;:::i;:::-;43830:139;;43557:419;;;:::o;43982:98::-;44033:6;44067:5;44061:12;44051:22;;43982:98;;;:::o;44086:168::-;44169:11;44203:6;44198:3;44191:19;44243:4;44238:3;44234:14;44219:29;;44086:168;;;;:::o;44260:360::-;44346:3;44374:38;44406:5;44374:38;:::i;:::-;44428:70;44491:6;44486:3;44428:70;:::i;:::-;44421:77;;44507:52;44552:6;44547:3;44540:4;44533:5;44529:16;44507:52;:::i;:::-;44584:29;44606:6;44584:29;:::i;:::-;44579:3;44575:39;44568:46;;44350:270;44260:360;;;;:::o;44626:640::-;44821:4;44859:3;44848:9;44844:19;44836:27;;44873:71;44941:1;44930:9;44926:17;44917:6;44873:71;:::i;:::-;44954:72;45022:2;45011:9;45007:18;44998:6;44954:72;:::i;:::-;45036;45104:2;45093:9;45089:18;45080:6;45036:72;:::i;:::-;45155:9;45149:4;45145:20;45140:2;45129:9;45125:18;45118:48;45183:76;45254:4;45245:6;45183:76;:::i;:::-;45175:84;;44626:640;;;;;;;:::o;45272:141::-;45328:5;45359:6;45353:13;45344:22;;45375:32;45401:5;45375:32;:::i;:::-;45272:141;;;;:::o;45419:349::-;45488:6;45537:2;45525:9;45516:7;45512:23;45508:32;45505:119;;;45543:79;;:::i;:::-;45505:119;45663:1;45688:63;45743:7;45734:6;45723:9;45719:22;45688:63;:::i;:::-;45678:73;;45634:127;45419:349;;;;:::o;45774:180::-;45822:77;45819:1;45812:88;45919:4;45916:1;45909:15;45943:4;45940:1;45933:15;45960:185;46000:1;46017:20;46035:1;46017:20;:::i;:::-;46012:25;;46051:20;46069:1;46051:20;:::i;:::-;46046:25;;46090:1;46080:35;;46095:18;;:::i;:::-;46080:35;46137:1;46134;46130:9;46125:14;;45960:185;;;;:::o;46151:176::-;46183:1;46200:20;46218:1;46200:20;:::i;:::-;46195:25;;46234:20;46252:1;46234:20;:::i;:::-;46229:25;;46273:1;46263:35;;46278:18;;:::i;:::-;46263:35;46319:1;46316;46312:9;46307:14;;46151:176;;;;:::o;46333:180::-;46381:77;46378:1;46371:88;46478:4;46475:1;46468:15;46502:4;46499:1;46492:15;46519:220;46659:34;46655:1;46647:6;46643:14;46636:58;46728:3;46723:2;46715:6;46711:15;46704:28;46519:220;:::o;46745:366::-;46887:3;46908:67;46972:2;46967:3;46908:67;:::i;:::-;46901:74;;46984:93;47073:3;46984:93;:::i;:::-;47102:2;47097:3;47093:12;47086:19;;46745:366;;;:::o;47117:419::-;47283:4;47321:2;47310:9;47306:18;47298:26;;47370:9;47364:4;47360:20;47356:1;47345:9;47341:17;47334:47;47398:131;47524:4;47398:131;:::i;:::-;47390:139;;47117:419;;;:::o;47542:179::-;47682:31;47678:1;47670:6;47666:14;47659:55;47542:179;:::o;47727:366::-;47869:3;47890:67;47954:2;47949:3;47890:67;:::i;:::-;47883:74;;47966:93;48055:3;47966:93;:::i;:::-;48084:2;48079:3;48075:12;48068:19;;47727:366;;;:::o;48099:419::-;48265:4;48303:2;48292:9;48288:18;48280:26;;48352:9;48346:4;48342:20;48338:1;48327:9;48323:17;48316:47;48380:131;48506:4;48380:131;:::i;:::-;48372:139;;48099:419;;;:::o;48524:221::-;48664:34;48660:1;48652:6;48648:14;48641:58;48733:4;48728:2;48720:6;48716:15;48709:29;48524:221;:::o;48751:366::-;48893:3;48914:67;48978:2;48973:3;48914:67;:::i;:::-;48907:74;;48990:93;49079:3;48990:93;:::i;:::-;49108:2;49103:3;49099:12;49092:19;;48751:366;;;:::o;49123:419::-;49289:4;49327:2;49316:9;49312:18;49304:26;;49376:9;49370:4;49366:20;49362:1;49351:9;49347:17;49340:47;49404:131;49530:4;49404:131;:::i;:::-;49396:139;;49123:419;;;:::o
Swarm Source
ipfs://642986a0ec47a2ae600b6c785b2ddc197ed1f245f729eaf42dc65ef11c461e96
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.