ERC-721
Overview
Max Total Supply
1,089 TMF
Holders
226
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 TMFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TastyMfers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-23 */ /* ________ __ __ __ ______ | \ | \ | \ / \ / \ \$$$$$$$$______ _______ _| $$_ __ __ | $$\ / $$| $$$$$$\ ______ ______ _______ | $$ | \ / \| $$ \ | \ | \| $$$\ / $$$| $$_ \$$/ \ / \ / \ | $$ \$$$$$$\| $$$$$$$ \$$$$$$ | $$ | $$| $$$$\ $$$$| $$ \ | $$$$$$\| $$$$$$\| $$$$$$$ | $$ / $$ \$$ \ | $$ __ | $$ | $$| $$\$$ $$ $$| $$$$ | $$ $$| $$ \$$ \$$ \ | $$ | $$$$$$$ _\$$$$$$\ | $$| \| $$__/ $$| $$ \$$$| $$| $$ | $$$$$$$$| $$ _\$$$$$$\ | $$ \$$ $$| $$ \$$ $$ \$$ $$| $$ \$ | $$| $$ \$$ \| $$ | $$ \$$ \$$$$$$$ \$$$$$$$ \$$$$ _\$$$$$$$ \$$ \$$ \$$ \$$$$$$$ \$$ \$$$$$$$ | \__| $$ \$$ $$ \$$$$$$ Source code based off ERC721B implementation by GoldenX team */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (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); } } } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } pragma solidity ^0.8.0; interface IERC721Batch { function isOwnerOf( address account, uint[] calldata tokenIds ) external view returns( bool ); function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external; function walletOfOwner( address account ) external view returns( uint[] memory ); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts v4.4.1 (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); } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /**************************************** * @author: squeebo_nft * * @team: GoldenX * **************************************** * Blimpie-ERC721 provides low-gas * * mints + transfers * ****************************************/ abstract contract TM721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; struct Token{ address owner; } mapping(address => uint) balances; Token[] public tokens; string private _name; string private _symbol; mapping(uint => address) internal _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_){ _name = name_; _symbol = symbol_; } //public view function balanceOf(address owner) public view override returns (uint balance){ return balances[owner]; } function name() external view override returns( string memory name_ ){ return _name; } function ownerOf(uint tokenId) public view override returns( address owner ){ require(_exists(tokenId), "TM721: query for nonexistent token"); return tokens[tokenId].owner; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns( bool isSupported ){ return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function symbol() external view override returns( string memory symbol_ ){ return _symbol; } //approvals function approve(address to, uint tokenId) external override { address owner = ownerOf(tokenId); require(to != owner, "TM721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "TM721: caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint tokenId) public view override returns( address approver ){ require(_exists(tokenId), "TM721: query for nonexistent token"); return _tokenApprovals[tokenId]; } function isApprovedForAll(address owner, address operator) public view override returns( bool isApproved ){ return _operatorApprovals[owner][operator]; } function setApprovalForAll(address operator, bool approved) external override { _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } //transfers function safeTransferFrom(address from, address to, uint tokenId) external override{ safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom(address from, address to, uint tokenId, bytes memory _data) public override { require(_isApprovedOrOwner(_msgSender(), tokenId), "TM721: caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function transferFrom(address from, address to, uint tokenId) external override { require(_isApprovedOrOwner(_msgSender(), tokenId), "TM721: caller is not owner nor approved"); _transfer(from, to, tokenId); } //internal function _approve(address to, uint tokenId) internal{ _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } function _beforeTokenTransfer(address from, address to, uint tokenId) internal virtual { if( from != address(0) ) --balances[from]; if( to != address(0) ) ++balances[to]; } function _checkOnERC721Received(address from, address to, uint tokenId, bytes memory _data)private returns ( bool ){ if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("TM721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _exists(uint tokenId) internal view returns ( bool ){ return tokenId < tokens.length && tokens[tokenId].owner != address(0); } function _isApprovedOrOwner(address spender, uint tokenId) internal view returns( bool ){ require(_exists(tokenId), "TM721: query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeTransfer(address from, address to, uint tokenId, bytes memory _data) internal{ _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "TM721: transfer to non ERC721Receiver implementer"); } function _transfer(address from, address to, uint tokenId) internal { require(ownerOf(tokenId) == from, "TM721: transfer of token that is not own"); _beforeTokenTransfer( from, to, tokenId ); // Clear approvals from the previous owner _approve(address(0), tokenId); tokens[tokenId].owner = to; emit Transfer(from, to, tokenId); } } pragma solidity ^0.8.0; /**************************************** * @author: squeebo_nft * * @team: GoldenX * **************************************** * Blimpie-GB721 provides low-gas * * mints + transfers * ****************************************/ abstract contract TM721Enumerable is TM721, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, TM721) returns( bool isSupported ){ return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint index) external view override returns( uint tokenId ){ uint count; for( uint i; i < tokens.length; ++i ){ if( owner == tokens[i].owner ){ if( count == index ) return i; else ++count; } } revert( "TM721Enumerable: owner index out of bounds" ); } function tokenByIndex(uint index) external view override returns( uint tokenId ){ require(index < tokens.length, "TM721Enumerable: query for nonexistent token"); return index; } } pragma solidity ^0.8.0; /**************************************** * @author: squeebo_nft * * @team: GoldenX * **************************************** * Blimpie-GB721 provides low-gas * * mints + transfers * ****************************************/ abstract contract TM721Batch is TM721Enumerable, IERC721Batch { function isOwnerOf( address account, uint[] calldata tokenIds ) external view override returns( bool ){ for(uint i; i < tokenIds.length; ++i ){ if( account != tokens[ tokenIds[i] ].owner ) return false; } return true; } function transferBatch( address from, address to, uint[] calldata tokenIds, bytes calldata data ) external override{ for(uint i; i < tokenIds.length; ++i ){ safeTransferFrom( from, to, tokenIds[i], data ); } } function walletOfOwner( address account ) public view override returns( uint[] memory wallet_ ){ uint count; uint quantity = balanceOf( account ); uint[] memory wallet = new uint[]( quantity ); for( uint i; i < tokens.length; ++i ){ if( account == tokens[i].owner ){ wallet[ count++ ] = i; if( count == quantity ) break; } } return wallet; } } pragma solidity ^0.8.0; /**************************************** * @author: squeebo_nft * * @team: GoldenX * **************************************** * Blimpie-GB721 provides low-gas * * mints + transfers * ****************************************/ contract TastyMfers is TM721Batch, Ownable { using Strings for uint256; uint public constant PRICE = 0.0069 ether; uint public constant MAX_ORDER = 69; uint public constant MAX_SUPPLY = 6969; uint public constant TEAM_SUPPLY = 100; bool public teamMinted = false; uint public burned; bool public isSaleActive = false; string private _baseURI; string private constant TOKENURISUFFIX = ".json"; constructor() TM721("TastyMfers", "TMF") { } //view: IERC721Metadata function tokenURI( uint tokenId ) external view override returns( string memory ){ require(_exists(tokenId), "TastyMfers: query for nonexistent token"); return string(abi.encodePacked(_baseURI, tokenId.toString(), TOKENURISUFFIX)); } //view: IERC721Enumerable function totalSupply() public view override returns( uint totalSupply_ ){ return tokens.length - burned; } //payable function mint( uint quantity) external payable { require( quantity <= MAX_ORDER, "TastyMfers: order too big" ); require( msg.value >= PRICE * quantity, "TastyMfers: ether sent is not correct" ); require( isSaleActive, "TastyMfers: sale is not active"); uint supply = totalSupply(); require( supply + quantity <= MAX_SUPPLY, "TastyMfers: mint/order exceeds supply" ); unchecked{ for(uint i; i < quantity; ++i){ _mint( msg.sender, tokens.length ); } } } //onlyOwner function teamMint() external onlyOwner{ require(!teamMinted, "TastyMfers: team already minted"); unchecked{ for(uint i; i < TEAM_SUPPLY; ++i){ _mint( msg.sender, tokens.length ); } teamMinted = true; } } function burnFrom( address account, uint[] calldata tokenIds ) external onlyOwner{ unchecked{ for(uint i; i < tokenIds.length; ++i ){ _burn( account, tokenIds[i] ); } } } function mintTo(address[] calldata accounts, uint[] calldata quantity ) external payable onlyOwner{ require(quantity.length == accounts.length, "TastyMfers: must provide equal quantities and accounts" ); uint totalQuantity; unchecked{ for(uint i; i < quantity.length; ++i){ totalQuantity += quantity[i]; } } uint supply = totalSupply(); require( supply + totalQuantity < MAX_SUPPLY, "TastyMfers: mint/order exceeds supply" ); unchecked{ for(uint i; i < accounts.length; ++i){ for(uint j; j < quantity[i]; ++j){ _mint( accounts[i], tokens.length ); } } } } function resurrect( address[] calldata accounts, uint[] calldata tokenIds ) external onlyOwner{ require(tokenIds.length == accounts.length, "TastyMfers: must provide equal tokenIds and accounts" ); unchecked{ for(uint i; i < tokenIds.length; ++i ){ _mint( accounts[i], tokenIds[i] ); } } } function setActive() external onlyOwner{ isSaleActive = !isSaleActive; } function setBaseURI(string calldata _newBaseURI) external onlyOwner{ _baseURI = _newBaseURI; } function withdraw(address _address) public onlyOwner { uint256 balance = address(this).balance; payable(_address).transfer(balance); } //private function _burn( address from, uint tokenId ) private { require( _exists( tokenId ), "TastyMfers: query for nonexistent token" ); require( from == tokens[ tokenId ].owner, "TastyMfers: owner mismatch" ); ++burned; _beforeTokenTransfer( from, address(0), tokenId ); tokens[ tokenId ].owner = address(0); emit Transfer(from, address(0), tokenId); } function _mint( address to, uint tokenId ) private { _beforeTokenTransfer( address(0), to, tokenId ); if( tokenId < tokens.length ){ require( !_exists( tokenId ), "TastyMfers: can't resurrect existing token" ); --burned; tokens[ tokenId ].owner = to; } else{ tokens.push( Token( to ) ); } emit Transfer(address(0), to, tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ORDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"approver","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":"isApproved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"name_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"resurrect","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":[],"name":"setActive","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"isSupported","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":"tokenId","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"wallet_","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600660146101000a81548160ff0219169083151502179055506000600860006101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600a81526020017f54617374794d66657273000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f544d4600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cc929190620001dc565b508060039080519060200190620000e5929190620001dc565b50505062000108620000fc6200010e60201b60201c565b6200011660201b60201c565b620002f1565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200028c565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006002820490506001821680620002a557607f821691505b60208210811415620002bc57620002bb620002c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61461b80620003016000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a0712d68116100ab578063ba7a86b81161006f578063ba7a86b8146107fd578063c87b56dd14610814578063e8b5498d14610851578063e985e9c51461087c578063f2fde38b146108b957610225565b8063a0712d681461073b578063a22cb46514610757578063b534a5c414610780578063b88d4fde146107a9578063b9c3a818146107d257610225565b806380fda1e2116100f257806380fda1e21461066857806389af6107146106915780638d859f3e146106ba5780638da5cb5b146106e557806395d89b411461071057610225565b806370a08231146105d2578063715018a61461060f57806373f4256114610626578063760a8c2a1461065157610225565b8063438b6300116101b157806351cff8d91161017557806351cff8d9146104fc57806355f804b314610525578063564566a81461054e5780636352211e1461057957806369add11d146105b657610225565b8063438b6300146103dd5780634d44660c1461041a5780634f64b2be146104575780634f6ccce71461049457806350c5a00c146104d157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c57806332cb6b0c1461038957806342842e0e146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613278565b6108e2565b60405161025e9190613896565b60405180910390f35b34801561027357600080fd5b5061027c61095c565b60405161028991906138b1565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061331f565b6109ee565b6040516102c6919061380d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906131b7565b610a73565b005b34801561030457600080fd5b5061030d610b8b565b60405161031a9190613b53565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613041565b610ba5565b005b34801561035857600080fd5b50610373600480360381019061036e91906131b7565b610c05565b6040516103809190613b53565b60405180910390f35b34801561039557600080fd5b5061039e610cff565b6040516103ab9190613b53565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613041565b610d05565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612f2d565b610d25565b6040516104119190613874565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613117565b610e5e565b60405161044e9190613896565b60405180910390f35b34801561046357600080fd5b5061047e6004803603810190610479919061331f565b610f22565b60405161048b919061380d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061331f565b610f6c565b6040516104c89190613b53565b60405180910390f35b3480156104dd57600080fd5b506104e6610fbd565b6040516104f39190613b53565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612f2d565b610fc2565b005b34801561053157600080fd5b5061054c600480360381019061054791906132d2565b61108e565b005b34801561055a57600080fd5b50610563611120565b6040516105709190613896565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b919061331f565b611133565b6040516105ad919061380d565b60405180910390f35b6105d060048036038101906105cb91906131f7565b6111c6565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612f2d565b6113a6565b6040516106069190613b53565b60405180910390f35b34801561061b57600080fd5b506106246113ee565b005b34801561063257600080fd5b5061063b611476565b6040516106489190613b53565b60405180910390f35b34801561065d57600080fd5b5061066661147c565b005b34801561067457600080fd5b5061068f600480360381019061068a91906131f7565b611524565b005b34801561069d57600080fd5b506106b860048036038101906106b39190613117565b611652565b005b3480156106c657600080fd5b506106cf611710565b6040516106dc9190613b53565b60405180910390f35b3480156106f157600080fd5b506106fa61171b565b604051610707919061380d565b60405180910390f35b34801561071c57600080fd5b50610725611745565b60405161073291906138b1565b60405180910390f35b6107556004803603810190610750919061331f565b6117d7565b005b34801561076357600080fd5b5061077e60048036038101906107799190613177565b611945565b005b34801561078c57600080fd5b506107a760048036038101906107a29190612f9a565b611a50565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613094565b611ae1565b005b3480156107de57600080fd5b506107e7611b43565b6040516107f49190613b53565b60405180910390f35b34801561080957600080fd5b50610812611b48565b005b34801561082057600080fd5b5061083b6004803603810190610836919061331f565b611c58565b60405161084891906138b1565b60405180910390f35b34801561085d57600080fd5b50610866611d0b565b6040516108739190613896565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190612f5a565b611d1e565b6040516108b09190613896565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612f2d565b611db2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610955575061095482611eaa565b5b9050919050565b60606002805461096b90613e4a565b80601f016020809104026020016040519081016040528092919081815260200182805461099790613e4a565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b60006109f982611f8c565b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906138f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7e82611133565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906139f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e612017565b73ffffffffffffffffffffffffffffffffffffffff161480610b3d5750610b3c81610b37612017565b611d1e565b5b610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390613ad3565b60405180910390fd5b610b86838361201f565b505050565b6000600754600180549050610ba09190613d36565b905090565b610bb6610bb0612017565b826120d8565b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90613993565b60405180910390fd5b610c008383836121b6565b505050565b60008060005b600180549050811015610cbd5760018181548110610c2c57610c2b613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cac5783821415610c9f578092505050610cf9565b81610ca990613ead565b91505b80610cb690613ead565b9050610c0b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090613a33565b60405180910390fd5b92915050565b611b3981565b610d2083838360405180602001604052806000815250611ae1565b505050565b6060600080610d33846113a6565b905060008167ffffffffffffffff811115610d5157610d50613fe3565b5b604051908082528060200260200182016040528015610d7f5781602001602082028036833780820191505090505b50905060005b600180549050811015610e525760018181548110610da657610da5613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610e415780828580610e1490613ead565b965081518110610e2757610e26613fb4565b5b60200260200101818152505082841415610e4057610e52565b5b80610e4b90613ead565b9050610d85565b50809350505050919050565b6000805b83839050811015610f15576001848483818110610e8257610e81613fb4565b5b9050602002013581548110610e9a57610e99613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610f04576000915050610f1b565b80610f0e90613ead565b9050610e62565b50600190505b9392505050565b60018181548110610f3257600080fd5b906000526020600020016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081565b60006001805490508210610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613a13565b60405180910390fd5b819050919050565b604581565b610fca612017565b73ffffffffffffffffffffffffffffffffffffffff16610fe861171b565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613973565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611089573d6000803e3d6000fd5b505050565b611096612017565b73ffffffffffffffffffffffffffffffffffffffff166110b461171b565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613973565b60405180910390fd5b81816009919061111b929190612c59565b505050565b600860009054906101000a900460ff1681565b600061113e82611f8c565b61117d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611174906138f3565b60405180910390fd5b6001828154811061119157611190613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6111ce612017565b73ffffffffffffffffffffffffffffffffffffffff166111ec61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613973565b60405180910390fd5b83839050828290501461128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613a73565b60405180910390fd5b6000805b838390508110156112c2578383828181106112ac576112ab613fb4565b5b905060200201358201915080600101905061128e565b5060006112cd610b8b565b9050611b3982826112de9190613c55565b1061131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613b33565b60405180910390fd5b60005b8686905081101561139d5760005b85858381811061134257611341613fb4565b5b905060200201358110156113915761138688888481811061136657611365613fb4565b5b905060200201602081019061137b9190612f2d565b600180549050612302565b80600101905061132f565b50806001019050611321565b50505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f6612017565b73ffffffffffffffffffffffffffffffffffffffff1661141461171b565b73ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190613973565b60405180910390fd5b61147460006124d5565b565b60075481565b611484612017565b73ffffffffffffffffffffffffffffffffffffffff166114a261171b565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613973565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b61152c612017565b73ffffffffffffffffffffffffffffffffffffffff1661154a61171b565b73ffffffffffffffffffffffffffffffffffffffff16146115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790613973565b60405180910390fd5b8383905082829050146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613af3565b60405180910390fd5b60005b8282905081101561164b5761164085858381811061160c5761160b613fb4565b5b90506020020160208101906116219190612f2d565b84848481811061163457611633613fb4565b5b90506020020135612302565b8060010190506115eb565b5050505050565b61165a612017565b73ffffffffffffffffffffffffffffffffffffffff1661167861171b565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613973565b60405180910390fd5b60005b8282905081101561170a576116ff848484848181106116f3576116f2613fb4565b5b9050602002013561259b565b8060010190506116d1565b50505050565b6618838370f3400081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461175490613e4a565b80601f016020809104026020016040519081016040528092919081815260200182805461178090613e4a565b80156117cd5780601f106117a2576101008083540402835291602001916117cd565b820191906000526020600020905b8154815290600101906020018083116117b057829003601f168201915b5050505050905090565b604581111561181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611812906139d3565b60405180910390fd5b806618838370f3400061182e9190613cdc565b341015611870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186790613913565b60405180910390fd5b600860009054906101000a900460ff166118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690613953565b60405180910390fd5b60006118c9610b8b565b9050611b3982826118da9190613c55565b111561191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613b33565b60405180910390fd5b60005b828110156119405761193533600180549050612302565b80600101905061191e565b505050565b8060056000611952612017565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ff612017565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a449190613896565b60405180910390a35050565b60005b84849050811015611ad857611ac78787878785818110611a7657611a75613fb4565b5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611ae1565b80611ad190613ead565b9050611a53565b50505050505050565b611af2611aec612017565b836120d8565b611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890613993565b60405180910390fd5b611b3d84848484612775565b50505050565b606481565b611b50612017565b73ffffffffffffffffffffffffffffffffffffffff16611b6e61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613973565b60405180910390fd5b600660149054906101000a900460ff1615611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90613933565b60405180910390fd5b60005b6064811015611c3a57611c2f33600180549050612302565b806001019050611c17565b506001600660146101000a81548160ff021916908315150217905550565b6060611c6382611f8c565b611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613a53565b60405180910390fd5b6009611cad836127d1565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611cf5939291906137dc565b6040516020818303038152906040529050919050565b600660149054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dba612017565b73ffffffffffffffffffffffffffffffffffffffff16611dd861171b565b73ffffffffffffffffffffffffffffffffffffffff1614611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613973565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906138d3565b60405180910390fd5b611ea7816124d5565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f855750611f8482612932565b5b9050919050565b6000600180549050821080156120105750600073ffffffffffffffffffffffffffffffffffffffff1660018381548110611fc957611fc8613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209283611133565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120e382611f8c565b612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906138f3565b60405180910390fd5b600061212d83611133565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219c57508373ffffffffffffffffffffffffffffffffffffffff16612184846109ee565b73ffffffffffffffffffffffffffffffffffffffff16145b806121ad57506121ac8185611d1e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d682611133565b73ffffffffffffffffffffffffffffffffffffffff161461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613a93565b60405180910390fd5b61223783838361299c565b61224260008261201f565b816001828154811061225757612256613fb4565b5b9060005260206000200160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61230e6000838361299c565b6001805490508110156123df5761232481611f8c565b15612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b906139b3565b60405180910390fd5b60076000815461237390613e20565b91905081905550816001828154811061238f5761238e613fb4565b5b9060005260206000200160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612475565b600160405180602001604052808473ffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125a481611f8c565b6125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90613a53565b60405180910390fd5b600181815481106125f7576125f6613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990613ab3565b60405180910390fd5b6007600081546126a190613ead565b919050819055506126b48260008361299c565b6000600182815481106126ca576126c9613fb4565b5b9060005260206000200160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6127808484846121b6565b61278c84848484612aaf565b6127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c290613b13565b60405180910390fd5b50505050565b60606000821415612819576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292d565b600082905060005b6000821461284b57808061283490613ead565b915050600a826128449190613cab565b9150612821565b60008167ffffffffffffffff81111561286757612866613fe3565b5b6040519080825280601f01601f1916602001820160405280156128995781602001600182028036833780820191505090505b5090505b60008514612926576001826128b29190613d36565b9150600a856128c19190613ef6565b60306128cd9190613c55565b60f81b8183815181106128e3576128e2613fb4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291f9190613cab565b945061289d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a23576000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154612a1b90613e20565b919050819055505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612aaa576000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154612aa290613ead565b919050819055505b505050565b6000612ad08473ffffffffffffffffffffffffffffffffffffffff16612c46565b15612c39578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612af9612017565b8786866040518563ffffffff1660e01b8152600401612b1b9493929190613828565b602060405180830381600087803b158015612b3557600080fd5b505af1925050508015612b6657506040513d601f19601f82011682018060405250810190612b6391906132a5565b60015b612be9573d8060008114612b96576040519150601f19603f3d011682016040523d82523d6000602084013e612b9b565b606091505b50600081511415612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd890613b13565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c3e565b600190505b949350505050565b600080823b905060008111915050919050565b828054612c6590613e4a565b90600052602060002090601f016020900481019282612c875760008555612cce565b82601f10612ca057803560ff1916838001178555612cce565b82800160010185558215612cce579182015b82811115612ccd578235825591602001919060010190612cb2565b5b509050612cdb9190612cdf565b5090565b5b80821115612cf8576000816000905550600101612ce0565b5090565b6000612d0f612d0a84613b93565b613b6e565b905082815260208101848484011115612d2b57612d2a614021565b5b612d36848285613dde565b509392505050565b600081359050612d4d81614589565b92915050565b60008083601f840112612d6957612d68614017565b5b8235905067ffffffffffffffff811115612d8657612d85614012565b5b602083019150836020820283011115612da257612da161401c565b5b9250929050565b60008083601f840112612dbf57612dbe614017565b5b8235905067ffffffffffffffff811115612ddc57612ddb614012565b5b602083019150836020820283011115612df857612df761401c565b5b9250929050565b600081359050612e0e816145a0565b92915050565b600081359050612e23816145b7565b92915050565b600081519050612e38816145b7565b92915050565b60008083601f840112612e5457612e53614017565b5b8235905067ffffffffffffffff811115612e7157612e70614012565b5b602083019150836001820283011115612e8d57612e8c61401c565b5b9250929050565b600082601f830112612ea957612ea8614017565b5b8135612eb9848260208601612cfc565b91505092915050565b60008083601f840112612ed857612ed7614017565b5b8235905067ffffffffffffffff811115612ef557612ef4614012565b5b602083019150836001820283011115612f1157612f1061401c565b5b9250929050565b600081359050612f27816145ce565b92915050565b600060208284031215612f4357612f4261402b565b5b6000612f5184828501612d3e565b91505092915050565b60008060408385031215612f7157612f7061402b565b5b6000612f7f85828601612d3e565b9250506020612f9085828601612d3e565b9150509250929050565b60008060008060008060808789031215612fb757612fb661402b565b5b6000612fc589828a01612d3e565b9650506020612fd689828a01612d3e565b955050604087013567ffffffffffffffff811115612ff757612ff6614026565b5b61300389828a01612da9565b9450945050606087013567ffffffffffffffff81111561302657613025614026565b5b61303289828a01612e3e565b92509250509295509295509295565b60008060006060848603121561305a5761305961402b565b5b600061306886828701612d3e565b935050602061307986828701612d3e565b925050604061308a86828701612f18565b9150509250925092565b600080600080608085870312156130ae576130ad61402b565b5b60006130bc87828801612d3e565b94505060206130cd87828801612d3e565b93505060406130de87828801612f18565b925050606085013567ffffffffffffffff8111156130ff576130fe614026565b5b61310b87828801612e94565b91505092959194509250565b6000806000604084860312156131305761312f61402b565b5b600061313e86828701612d3e565b935050602084013567ffffffffffffffff81111561315f5761315e614026565b5b61316b86828701612da9565b92509250509250925092565b6000806040838503121561318e5761318d61402b565b5b600061319c85828601612d3e565b92505060206131ad85828601612dff565b9150509250929050565b600080604083850312156131ce576131cd61402b565b5b60006131dc85828601612d3e565b92505060206131ed85828601612f18565b9150509250929050565b600080600080604085870312156132115761321061402b565b5b600085013567ffffffffffffffff81111561322f5761322e614026565b5b61323b87828801612d53565b9450945050602085013567ffffffffffffffff81111561325e5761325d614026565b5b61326a87828801612da9565b925092505092959194509250565b60006020828403121561328e5761328d61402b565b5b600061329c84828501612e14565b91505092915050565b6000602082840312156132bb576132ba61402b565b5b60006132c984828501612e29565b91505092915050565b600080602083850312156132e9576132e861402b565b5b600083013567ffffffffffffffff81111561330757613306614026565b5b61331385828601612ec2565b92509250509250929050565b6000602082840312156133355761333461402b565b5b600061334384828501612f18565b91505092915050565b600061335883836137be565b60208301905092915050565b61336d81613d6a565b82525050565b600061337e82613be9565b6133888185613c17565b935061339383613bc4565b8060005b838110156133c45781516133ab888261334c565b97506133b683613c0a565b925050600181019050613397565b5085935050505092915050565b6133da81613d7c565b82525050565b60006133eb82613bf4565b6133f58185613c28565b9350613405818560208601613ded565b61340e81614030565b840191505092915050565b600061342482613bff565b61342e8185613c39565b935061343e818560208601613ded565b61344781614030565b840191505092915050565b600061345d82613bff565b6134678185613c4a565b9350613477818560208601613ded565b80840191505092915050565b6000815461349081613e4a565b61349a8186613c4a565b945060018216600081146134b557600181146134c6576134f9565b60ff198316865281860193506134f9565b6134cf85613bd4565b60005b838110156134f1578154818901526001820191506020810190506134d2565b838801955050505b50505092915050565b600061350f602683613c39565b915061351a82614041565b604082019050919050565b6000613532602283613c39565b915061353d82614090565b604082019050919050565b6000613555602583613c39565b9150613560826140df565b604082019050919050565b6000613578601f83613c39565b91506135838261412e565b602082019050919050565b600061359b601e83613c39565b91506135a682614157565b602082019050919050565b60006135be602083613c39565b91506135c982614180565b602082019050919050565b60006135e1602783613c39565b91506135ec826141a9565b604082019050919050565b6000613604602a83613c39565b915061360f826141f8565b604082019050919050565b6000613627601983613c39565b915061363282614247565b602082019050919050565b600061364a602083613c39565b915061365582614270565b602082019050919050565b600061366d602c83613c39565b915061367882614299565b604082019050919050565b6000613690602a83613c39565b915061369b826142e8565b604082019050919050565b60006136b3602783613c39565b91506136be82614337565b604082019050919050565b60006136d6603683613c39565b91506136e182614386565b604082019050919050565b60006136f9602883613c39565b9150613704826143d5565b604082019050919050565b600061371c601a83613c39565b915061372782614424565b602082019050919050565b600061373f602f83613c39565b915061374a8261444d565b604082019050919050565b6000613762603483613c39565b915061376d8261449c565b604082019050919050565b6000613785603183613c39565b9150613790826144eb565b604082019050919050565b60006137a8602583613c39565b91506137b38261453a565b604082019050919050565b6137c781613dd4565b82525050565b6137d681613dd4565b82525050565b60006137e88286613483565b91506137f48285613452565b91506138008284613452565b9150819050949350505050565b60006020820190506138226000830184613364565b92915050565b600060808201905061383d6000830187613364565b61384a6020830186613364565b61385760408301856137cd565b818103606083015261386981846133e0565b905095945050505050565b6000602082019050818103600083015261388e8184613373565b905092915050565b60006020820190506138ab60008301846133d1565b92915050565b600060208201905081810360008301526138cb8184613419565b905092915050565b600060208201905081810360008301526138ec81613502565b9050919050565b6000602082019050818103600083015261390c81613525565b9050919050565b6000602082019050818103600083015261392c81613548565b9050919050565b6000602082019050818103600083015261394c8161356b565b9050919050565b6000602082019050818103600083015261396c8161358e565b9050919050565b6000602082019050818103600083015261398c816135b1565b9050919050565b600060208201905081810360008301526139ac816135d4565b9050919050565b600060208201905081810360008301526139cc816135f7565b9050919050565b600060208201905081810360008301526139ec8161361a565b9050919050565b60006020820190508181036000830152613a0c8161363d565b9050919050565b60006020820190508181036000830152613a2c81613660565b9050919050565b60006020820190508181036000830152613a4c81613683565b9050919050565b60006020820190508181036000830152613a6c816136a6565b9050919050565b60006020820190508181036000830152613a8c816136c9565b9050919050565b60006020820190508181036000830152613aac816136ec565b9050919050565b60006020820190508181036000830152613acc8161370f565b9050919050565b60006020820190508181036000830152613aec81613732565b9050919050565b60006020820190508181036000830152613b0c81613755565b9050919050565b60006020820190508181036000830152613b2c81613778565b9050919050565b60006020820190508181036000830152613b4c8161379b565b9050919050565b6000602082019050613b6860008301846137cd565b92915050565b6000613b78613b89565b9050613b848282613e7c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bae57613bad613fe3565b5b613bb782614030565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6082613dd4565b9150613c6b83613dd4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca057613c9f613f27565b5b828201905092915050565b6000613cb682613dd4565b9150613cc183613dd4565b925082613cd157613cd0613f56565b5b828204905092915050565b6000613ce782613dd4565b9150613cf283613dd4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2b57613d2a613f27565b5b828202905092915050565b6000613d4182613dd4565b9150613d4c83613dd4565b925082821015613d5f57613d5e613f27565b5b828203905092915050565b6000613d7582613db4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e0b578082015181840152602081019050613df0565b83811115613e1a576000848401525b50505050565b6000613e2b82613dd4565b91506000821415613e3f57613e3e613f27565b5b600182039050919050565b60006002820490506001821680613e6257607f821691505b60208210811415613e7657613e75613f85565b5b50919050565b613e8582614030565b810181811067ffffffffffffffff82111715613ea457613ea3613fe3565b5b80604052505050565b6000613eb882613dd4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eeb57613eea613f27565b5b600182019050919050565b6000613f0182613dd4565b9150613f0c83613dd4565b925082613f1c57613f1b613f56565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f544d3732313a20717565727920666f72206e6f6e6578697374656e7420746f6b60008201527f656e000000000000000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a2065746865722073656e74206973206e6f7420636f60008201527f7272656374000000000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a207465616d20616c7265616479206d696e74656400600082015250565b7f54617374794d666572733a2073616c65206973206e6f74206163746976650000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544d3732313a2063616c6c6572206973206e6f74206f776e6572206e6f72206160008201527f7070726f76656400000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a2063616e277420726573757272656374206578697360008201527f74696e6720746f6b656e00000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a206f7264657220746f6f2062696700000000000000600082015250565b7f544d3732313a20617070726f76616c20746f2063757272656e74206f776e6572600082015250565b7f544d373231456e756d657261626c653a20717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f544d373231456e756d657261626c653a206f776e657220696e646578206f757460008201527f206f6620626f756e647300000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a20717565727920666f72206e6f6e6578697374656e60008201527f7420746f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a206d7573742070726f7669646520657175616c207160008201527f75616e74697469657320616e64206163636f756e747300000000000000000000602082015250565b7f544d3732313a207472616e73666572206f6620746f6b656e207468617420697360008201527f206e6f74206f776e000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a206f776e6572206d69736d61746368000000000000600082015250565b7f544d3732313a2063616c6c6572206973206e6f74206f776e6572206e6f72206160008201527f7070726f76656420666f7220616c6c0000000000000000000000000000000000602082015250565b7f54617374794d666572733a206d7573742070726f7669646520657175616c207460008201527f6f6b656e49647320616e64206163636f756e7473000000000000000000000000602082015250565b7f544d3732313a207472616e7366657220746f206e6f6e2045524337323152656360008201527f656976657220696d706c656d656e746572000000000000000000000000000000602082015250565b7f54617374794d666572733a206d696e742f6f726465722065786365656473207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b61459281613d6a565b811461459d57600080fd5b50565b6145a981613d7c565b81146145b457600080fd5b50565b6145c081613d88565b81146145cb57600080fd5b50565b6145d781613dd4565b81146145e257600080fd5b5056fea2646970667358221220e46e615d3d506de1f3cedb738947a52f521657410ed6080ad0c43c82a92a4f2164736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063a0712d68116100ab578063ba7a86b81161006f578063ba7a86b8146107fd578063c87b56dd14610814578063e8b5498d14610851578063e985e9c51461087c578063f2fde38b146108b957610225565b8063a0712d681461073b578063a22cb46514610757578063b534a5c414610780578063b88d4fde146107a9578063b9c3a818146107d257610225565b806380fda1e2116100f257806380fda1e21461066857806389af6107146106915780638d859f3e146106ba5780638da5cb5b146106e557806395d89b411461071057610225565b806370a08231146105d2578063715018a61461060f57806373f4256114610626578063760a8c2a1461065157610225565b8063438b6300116101b157806351cff8d91161017557806351cff8d9146104fc57806355f804b314610525578063564566a81461054e5780636352211e1461057957806369add11d146105b657610225565b8063438b6300146103dd5780634d44660c1461041a5780634f64b2be146104575780634f6ccce71461049457806350c5a00c146104d157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c57806332cb6b0c1461038957806342842e0e146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613278565b6108e2565b60405161025e9190613896565b60405180910390f35b34801561027357600080fd5b5061027c61095c565b60405161028991906138b1565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061331f565b6109ee565b6040516102c6919061380d565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906131b7565b610a73565b005b34801561030457600080fd5b5061030d610b8b565b60405161031a9190613b53565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613041565b610ba5565b005b34801561035857600080fd5b50610373600480360381019061036e91906131b7565b610c05565b6040516103809190613b53565b60405180910390f35b34801561039557600080fd5b5061039e610cff565b6040516103ab9190613b53565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d69190613041565b610d05565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612f2d565b610d25565b6040516104119190613874565b60405180910390f35b34801561042657600080fd5b50610441600480360381019061043c9190613117565b610e5e565b60405161044e9190613896565b60405180910390f35b34801561046357600080fd5b5061047e6004803603810190610479919061331f565b610f22565b60405161048b919061380d565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b6919061331f565b610f6c565b6040516104c89190613b53565b60405180910390f35b3480156104dd57600080fd5b506104e6610fbd565b6040516104f39190613b53565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612f2d565b610fc2565b005b34801561053157600080fd5b5061054c600480360381019061054791906132d2565b61108e565b005b34801561055a57600080fd5b50610563611120565b6040516105709190613896565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b919061331f565b611133565b6040516105ad919061380d565b60405180910390f35b6105d060048036038101906105cb91906131f7565b6111c6565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612f2d565b6113a6565b6040516106069190613b53565b60405180910390f35b34801561061b57600080fd5b506106246113ee565b005b34801561063257600080fd5b5061063b611476565b6040516106489190613b53565b60405180910390f35b34801561065d57600080fd5b5061066661147c565b005b34801561067457600080fd5b5061068f600480360381019061068a91906131f7565b611524565b005b34801561069d57600080fd5b506106b860048036038101906106b39190613117565b611652565b005b3480156106c657600080fd5b506106cf611710565b6040516106dc9190613b53565b60405180910390f35b3480156106f157600080fd5b506106fa61171b565b604051610707919061380d565b60405180910390f35b34801561071c57600080fd5b50610725611745565b60405161073291906138b1565b60405180910390f35b6107556004803603810190610750919061331f565b6117d7565b005b34801561076357600080fd5b5061077e60048036038101906107799190613177565b611945565b005b34801561078c57600080fd5b506107a760048036038101906107a29190612f9a565b611a50565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613094565b611ae1565b005b3480156107de57600080fd5b506107e7611b43565b6040516107f49190613b53565b60405180910390f35b34801561080957600080fd5b50610812611b48565b005b34801561082057600080fd5b5061083b6004803603810190610836919061331f565b611c58565b60405161084891906138b1565b60405180910390f35b34801561085d57600080fd5b50610866611d0b565b6040516108739190613896565b60405180910390f35b34801561088857600080fd5b506108a3600480360381019061089e9190612f5a565b611d1e565b6040516108b09190613896565b60405180910390f35b3480156108c557600080fd5b506108e060048036038101906108db9190612f2d565b611db2565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610955575061095482611eaa565b5b9050919050565b60606002805461096b90613e4a565b80601f016020809104026020016040519081016040528092919081815260200182805461099790613e4a565b80156109e45780601f106109b9576101008083540402835291602001916109e4565b820191906000526020600020905b8154815290600101906020018083116109c757829003601f168201915b5050505050905090565b60006109f982611f8c565b610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906138f3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7e82611133565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906139f3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e612017565b73ffffffffffffffffffffffffffffffffffffffff161480610b3d5750610b3c81610b37612017565b611d1e565b5b610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390613ad3565b60405180910390fd5b610b86838361201f565b505050565b6000600754600180549050610ba09190613d36565b905090565b610bb6610bb0612017565b826120d8565b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90613993565b60405180910390fd5b610c008383836121b6565b505050565b60008060005b600180549050811015610cbd5760018181548110610c2c57610c2b613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cac5783821415610c9f578092505050610cf9565b81610ca990613ead565b91505b80610cb690613ead565b9050610c0b565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090613a33565b60405180910390fd5b92915050565b611b3981565b610d2083838360405180602001604052806000815250611ae1565b505050565b6060600080610d33846113a6565b905060008167ffffffffffffffff811115610d5157610d50613fe3565b5b604051908082528060200260200182016040528015610d7f5781602001602082028036833780820191505090505b50905060005b600180549050811015610e525760018181548110610da657610da5613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610e415780828580610e1490613ead565b965081518110610e2757610e26613fb4565b5b60200260200101818152505082841415610e4057610e52565b5b80610e4b90613ead565b9050610d85565b50809350505050919050565b6000805b83839050811015610f15576001848483818110610e8257610e81613fb4565b5b9050602002013581548110610e9a57610e99613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614610f04576000915050610f1b565b80610f0e90613ead565b9050610e62565b50600190505b9392505050565b60018181548110610f3257600080fd5b906000526020600020016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081565b60006001805490508210610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90613a13565b60405180910390fd5b819050919050565b604581565b610fca612017565b73ffffffffffffffffffffffffffffffffffffffff16610fe861171b565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613973565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611089573d6000803e3d6000fd5b505050565b611096612017565b73ffffffffffffffffffffffffffffffffffffffff166110b461171b565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613973565b60405180910390fd5b81816009919061111b929190612c59565b505050565b600860009054906101000a900460ff1681565b600061113e82611f8c565b61117d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611174906138f3565b60405180910390fd5b6001828154811061119157611190613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6111ce612017565b73ffffffffffffffffffffffffffffffffffffffff166111ec61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123990613973565b60405180910390fd5b83839050828290501461128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613a73565b60405180910390fd5b6000805b838390508110156112c2578383828181106112ac576112ab613fb4565b5b905060200201358201915080600101905061128e565b5060006112cd610b8b565b9050611b3982826112de9190613c55565b1061131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613b33565b60405180910390fd5b60005b8686905081101561139d5760005b85858381811061134257611341613fb4565b5b905060200201358110156113915761138688888481811061136657611365613fb4565b5b905060200201602081019061137b9190612f2d565b600180549050612302565b80600101905061132f565b50806001019050611321565b50505050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f6612017565b73ffffffffffffffffffffffffffffffffffffffff1661141461171b565b73ffffffffffffffffffffffffffffffffffffffff161461146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190613973565b60405180910390fd5b61147460006124d5565b565b60075481565b611484612017565b73ffffffffffffffffffffffffffffffffffffffff166114a261171b565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613973565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b61152c612017565b73ffffffffffffffffffffffffffffffffffffffff1661154a61171b565b73ffffffffffffffffffffffffffffffffffffffff16146115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790613973565b60405180910390fd5b8383905082829050146115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613af3565b60405180910390fd5b60005b8282905081101561164b5761164085858381811061160c5761160b613fb4565b5b90506020020160208101906116219190612f2d565b84848481811061163457611633613fb4565b5b90506020020135612302565b8060010190506115eb565b5050505050565b61165a612017565b73ffffffffffffffffffffffffffffffffffffffff1661167861171b565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613973565b60405180910390fd5b60005b8282905081101561170a576116ff848484848181106116f3576116f2613fb4565b5b9050602002013561259b565b8060010190506116d1565b50505050565b6618838370f3400081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461175490613e4a565b80601f016020809104026020016040519081016040528092919081815260200182805461178090613e4a565b80156117cd5780601f106117a2576101008083540402835291602001916117cd565b820191906000526020600020905b8154815290600101906020018083116117b057829003601f168201915b5050505050905090565b604581111561181b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611812906139d3565b60405180910390fd5b806618838370f3400061182e9190613cdc565b341015611870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186790613913565b60405180910390fd5b600860009054906101000a900460ff166118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b690613953565b60405180910390fd5b60006118c9610b8b565b9050611b3982826118da9190613c55565b111561191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613b33565b60405180910390fd5b60005b828110156119405761193533600180549050612302565b80600101905061191e565b505050565b8060056000611952612017565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ff612017565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a449190613896565b60405180910390a35050565b60005b84849050811015611ad857611ac78787878785818110611a7657611a75613fb4565b5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611ae1565b80611ad190613ead565b9050611a53565b50505050505050565b611af2611aec612017565b836120d8565b611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890613993565b60405180910390fd5b611b3d84848484612775565b50505050565b606481565b611b50612017565b73ffffffffffffffffffffffffffffffffffffffff16611b6e61171b565b73ffffffffffffffffffffffffffffffffffffffff1614611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613973565b60405180910390fd5b600660149054906101000a900460ff1615611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90613933565b60405180910390fd5b60005b6064811015611c3a57611c2f33600180549050612302565b806001019050611c17565b506001600660146101000a81548160ff021916908315150217905550565b6060611c6382611f8c565b611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613a53565b60405180910390fd5b6009611cad836127d1565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611cf5939291906137dc565b6040516020818303038152906040529050919050565b600660149054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611dba612017565b73ffffffffffffffffffffffffffffffffffffffff16611dd861171b565b73ffffffffffffffffffffffffffffffffffffffff1614611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613973565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e95906138d3565b60405180910390fd5b611ea7816124d5565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f855750611f8482612932565b5b9050919050565b6000600180549050821080156120105750600073ffffffffffffffffffffffffffffffffffffffff1660018381548110611fc957611fc8613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661209283611133565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120e382611f8c565b612122576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612119906138f3565b60405180910390fd5b600061212d83611133565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061219c57508373ffffffffffffffffffffffffffffffffffffffff16612184846109ee565b73ffffffffffffffffffffffffffffffffffffffff16145b806121ad57506121ac8185611d1e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121d682611133565b73ffffffffffffffffffffffffffffffffffffffff161461222c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222390613a93565b60405180910390fd5b61223783838361299c565b61224260008261201f565b816001828154811061225757612256613fb4565b5b9060005260206000200160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61230e6000838361299c565b6001805490508110156123df5761232481611f8c565b15612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b906139b3565b60405180910390fd5b60076000815461237390613e20565b91905081905550816001828154811061238f5761238e613fb4565b5b9060005260206000200160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612475565b600160405180602001604052808473ffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125a481611f8c565b6125e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125da90613a53565b60405180910390fd5b600181815481106125f7576125f6613fb4565b5b9060005260206000200160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990613ab3565b60405180910390fd5b6007600081546126a190613ead565b919050819055506126b48260008361299c565b6000600182815481106126ca576126c9613fb4565b5b9060005260206000200160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6127808484846121b6565b61278c84848484612aaf565b6127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c290613b13565b60405180910390fd5b50505050565b60606000821415612819576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061292d565b600082905060005b6000821461284b57808061283490613ead565b915050600a826128449190613cab565b9150612821565b60008167ffffffffffffffff81111561286757612866613fe3565b5b6040519080825280601f01601f1916602001820160405280156128995781602001600182028036833780820191505090505b5090505b60008514612926576001826128b29190613d36565b9150600a856128c19190613ef6565b60306128cd9190613c55565b60f81b8183815181106128e3576128e2613fb4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561291f9190613cab565b945061289d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a23576000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154612a1b90613e20565b919050819055505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612aaa576000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154612aa290613ead565b919050819055505b505050565b6000612ad08473ffffffffffffffffffffffffffffffffffffffff16612c46565b15612c39578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612af9612017565b8786866040518563ffffffff1660e01b8152600401612b1b9493929190613828565b602060405180830381600087803b158015612b3557600080fd5b505af1925050508015612b6657506040513d601f19601f82011682018060405250810190612b6391906132a5565b60015b612be9573d8060008114612b96576040519150601f19603f3d011682016040523d82523d6000602084013e612b9b565b606091505b50600081511415612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd890613b13565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c3e565b600190505b949350505050565b600080823b905060008111915050919050565b828054612c6590613e4a565b90600052602060002090601f016020900481019282612c875760008555612cce565b82601f10612ca057803560ff1916838001178555612cce565b82800160010185558215612cce579182015b82811115612ccd578235825591602001919060010190612cb2565b5b509050612cdb9190612cdf565b5090565b5b80821115612cf8576000816000905550600101612ce0565b5090565b6000612d0f612d0a84613b93565b613b6e565b905082815260208101848484011115612d2b57612d2a614021565b5b612d36848285613dde565b509392505050565b600081359050612d4d81614589565b92915050565b60008083601f840112612d6957612d68614017565b5b8235905067ffffffffffffffff811115612d8657612d85614012565b5b602083019150836020820283011115612da257612da161401c565b5b9250929050565b60008083601f840112612dbf57612dbe614017565b5b8235905067ffffffffffffffff811115612ddc57612ddb614012565b5b602083019150836020820283011115612df857612df761401c565b5b9250929050565b600081359050612e0e816145a0565b92915050565b600081359050612e23816145b7565b92915050565b600081519050612e38816145b7565b92915050565b60008083601f840112612e5457612e53614017565b5b8235905067ffffffffffffffff811115612e7157612e70614012565b5b602083019150836001820283011115612e8d57612e8c61401c565b5b9250929050565b600082601f830112612ea957612ea8614017565b5b8135612eb9848260208601612cfc565b91505092915050565b60008083601f840112612ed857612ed7614017565b5b8235905067ffffffffffffffff811115612ef557612ef4614012565b5b602083019150836001820283011115612f1157612f1061401c565b5b9250929050565b600081359050612f27816145ce565b92915050565b600060208284031215612f4357612f4261402b565b5b6000612f5184828501612d3e565b91505092915050565b60008060408385031215612f7157612f7061402b565b5b6000612f7f85828601612d3e565b9250506020612f9085828601612d3e565b9150509250929050565b60008060008060008060808789031215612fb757612fb661402b565b5b6000612fc589828a01612d3e565b9650506020612fd689828a01612d3e565b955050604087013567ffffffffffffffff811115612ff757612ff6614026565b5b61300389828a01612da9565b9450945050606087013567ffffffffffffffff81111561302657613025614026565b5b61303289828a01612e3e565b92509250509295509295509295565b60008060006060848603121561305a5761305961402b565b5b600061306886828701612d3e565b935050602061307986828701612d3e565b925050604061308a86828701612f18565b9150509250925092565b600080600080608085870312156130ae576130ad61402b565b5b60006130bc87828801612d3e565b94505060206130cd87828801612d3e565b93505060406130de87828801612f18565b925050606085013567ffffffffffffffff8111156130ff576130fe614026565b5b61310b87828801612e94565b91505092959194509250565b6000806000604084860312156131305761312f61402b565b5b600061313e86828701612d3e565b935050602084013567ffffffffffffffff81111561315f5761315e614026565b5b61316b86828701612da9565b92509250509250925092565b6000806040838503121561318e5761318d61402b565b5b600061319c85828601612d3e565b92505060206131ad85828601612dff565b9150509250929050565b600080604083850312156131ce576131cd61402b565b5b60006131dc85828601612d3e565b92505060206131ed85828601612f18565b9150509250929050565b600080600080604085870312156132115761321061402b565b5b600085013567ffffffffffffffff81111561322f5761322e614026565b5b61323b87828801612d53565b9450945050602085013567ffffffffffffffff81111561325e5761325d614026565b5b61326a87828801612da9565b925092505092959194509250565b60006020828403121561328e5761328d61402b565b5b600061329c84828501612e14565b91505092915050565b6000602082840312156132bb576132ba61402b565b5b60006132c984828501612e29565b91505092915050565b600080602083850312156132e9576132e861402b565b5b600083013567ffffffffffffffff81111561330757613306614026565b5b61331385828601612ec2565b92509250509250929050565b6000602082840312156133355761333461402b565b5b600061334384828501612f18565b91505092915050565b600061335883836137be565b60208301905092915050565b61336d81613d6a565b82525050565b600061337e82613be9565b6133888185613c17565b935061339383613bc4565b8060005b838110156133c45781516133ab888261334c565b97506133b683613c0a565b925050600181019050613397565b5085935050505092915050565b6133da81613d7c565b82525050565b60006133eb82613bf4565b6133f58185613c28565b9350613405818560208601613ded565b61340e81614030565b840191505092915050565b600061342482613bff565b61342e8185613c39565b935061343e818560208601613ded565b61344781614030565b840191505092915050565b600061345d82613bff565b6134678185613c4a565b9350613477818560208601613ded565b80840191505092915050565b6000815461349081613e4a565b61349a8186613c4a565b945060018216600081146134b557600181146134c6576134f9565b60ff198316865281860193506134f9565b6134cf85613bd4565b60005b838110156134f1578154818901526001820191506020810190506134d2565b838801955050505b50505092915050565b600061350f602683613c39565b915061351a82614041565b604082019050919050565b6000613532602283613c39565b915061353d82614090565b604082019050919050565b6000613555602583613c39565b9150613560826140df565b604082019050919050565b6000613578601f83613c39565b91506135838261412e565b602082019050919050565b600061359b601e83613c39565b91506135a682614157565b602082019050919050565b60006135be602083613c39565b91506135c982614180565b602082019050919050565b60006135e1602783613c39565b91506135ec826141a9565b604082019050919050565b6000613604602a83613c39565b915061360f826141f8565b604082019050919050565b6000613627601983613c39565b915061363282614247565b602082019050919050565b600061364a602083613c39565b915061365582614270565b602082019050919050565b600061366d602c83613c39565b915061367882614299565b604082019050919050565b6000613690602a83613c39565b915061369b826142e8565b604082019050919050565b60006136b3602783613c39565b91506136be82614337565b604082019050919050565b60006136d6603683613c39565b91506136e182614386565b604082019050919050565b60006136f9602883613c39565b9150613704826143d5565b604082019050919050565b600061371c601a83613c39565b915061372782614424565b602082019050919050565b600061373f602f83613c39565b915061374a8261444d565b604082019050919050565b6000613762603483613c39565b915061376d8261449c565b604082019050919050565b6000613785603183613c39565b9150613790826144eb565b604082019050919050565b60006137a8602583613c39565b91506137b38261453a565b604082019050919050565b6137c781613dd4565b82525050565b6137d681613dd4565b82525050565b60006137e88286613483565b91506137f48285613452565b91506138008284613452565b9150819050949350505050565b60006020820190506138226000830184613364565b92915050565b600060808201905061383d6000830187613364565b61384a6020830186613364565b61385760408301856137cd565b818103606083015261386981846133e0565b905095945050505050565b6000602082019050818103600083015261388e8184613373565b905092915050565b60006020820190506138ab60008301846133d1565b92915050565b600060208201905081810360008301526138cb8184613419565b905092915050565b600060208201905081810360008301526138ec81613502565b9050919050565b6000602082019050818103600083015261390c81613525565b9050919050565b6000602082019050818103600083015261392c81613548565b9050919050565b6000602082019050818103600083015261394c8161356b565b9050919050565b6000602082019050818103600083015261396c8161358e565b9050919050565b6000602082019050818103600083015261398c816135b1565b9050919050565b600060208201905081810360008301526139ac816135d4565b9050919050565b600060208201905081810360008301526139cc816135f7565b9050919050565b600060208201905081810360008301526139ec8161361a565b9050919050565b60006020820190508181036000830152613a0c8161363d565b9050919050565b60006020820190508181036000830152613a2c81613660565b9050919050565b60006020820190508181036000830152613a4c81613683565b9050919050565b60006020820190508181036000830152613a6c816136a6565b9050919050565b60006020820190508181036000830152613a8c816136c9565b9050919050565b60006020820190508181036000830152613aac816136ec565b9050919050565b60006020820190508181036000830152613acc8161370f565b9050919050565b60006020820190508181036000830152613aec81613732565b9050919050565b60006020820190508181036000830152613b0c81613755565b9050919050565b60006020820190508181036000830152613b2c81613778565b9050919050565b60006020820190508181036000830152613b4c8161379b565b9050919050565b6000602082019050613b6860008301846137cd565b92915050565b6000613b78613b89565b9050613b848282613e7c565b919050565b6000604051905090565b600067ffffffffffffffff821115613bae57613bad613fe3565b5b613bb782614030565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c6082613dd4565b9150613c6b83613dd4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ca057613c9f613f27565b5b828201905092915050565b6000613cb682613dd4565b9150613cc183613dd4565b925082613cd157613cd0613f56565b5b828204905092915050565b6000613ce782613dd4565b9150613cf283613dd4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2b57613d2a613f27565b5b828202905092915050565b6000613d4182613dd4565b9150613d4c83613dd4565b925082821015613d5f57613d5e613f27565b5b828203905092915050565b6000613d7582613db4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e0b578082015181840152602081019050613df0565b83811115613e1a576000848401525b50505050565b6000613e2b82613dd4565b91506000821415613e3f57613e3e613f27565b5b600182039050919050565b60006002820490506001821680613e6257607f821691505b60208210811415613e7657613e75613f85565b5b50919050565b613e8582614030565b810181811067ffffffffffffffff82111715613ea457613ea3613fe3565b5b80604052505050565b6000613eb882613dd4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613eeb57613eea613f27565b5b600182019050919050565b6000613f0182613dd4565b9150613f0c83613dd4565b925082613f1c57613f1b613f56565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f544d3732313a20717565727920666f72206e6f6e6578697374656e7420746f6b60008201527f656e000000000000000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a2065746865722073656e74206973206e6f7420636f60008201527f7272656374000000000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a207465616d20616c7265616479206d696e74656400600082015250565b7f54617374794d666572733a2073616c65206973206e6f74206163746976650000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544d3732313a2063616c6c6572206973206e6f74206f776e6572206e6f72206160008201527f7070726f76656400000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a2063616e277420726573757272656374206578697360008201527f74696e6720746f6b656e00000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a206f7264657220746f6f2062696700000000000000600082015250565b7f544d3732313a20617070726f76616c20746f2063757272656e74206f776e6572600082015250565b7f544d373231456e756d657261626c653a20717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f544d373231456e756d657261626c653a206f776e657220696e646578206f757460008201527f206f6620626f756e647300000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a20717565727920666f72206e6f6e6578697374656e60008201527f7420746f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a206d7573742070726f7669646520657175616c207160008201527f75616e74697469657320616e64206163636f756e747300000000000000000000602082015250565b7f544d3732313a207472616e73666572206f6620746f6b656e207468617420697360008201527f206e6f74206f776e000000000000000000000000000000000000000000000000602082015250565b7f54617374794d666572733a206f776e6572206d69736d61746368000000000000600082015250565b7f544d3732313a2063616c6c6572206973206e6f74206f776e6572206e6f72206160008201527f7070726f76656420666f7220616c6c0000000000000000000000000000000000602082015250565b7f54617374794d666572733a206d7573742070726f7669646520657175616c207460008201527f6f6b656e49647320616e64206163636f756e7473000000000000000000000000602082015250565b7f544d3732313a207472616e7366657220746f206e6f6e2045524337323152656360008201527f656976657220696d706c656d656e746572000000000000000000000000000000602082015250565b7f54617374794d666572733a206d696e742f6f726465722065786365656473207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b61459281613d6a565b811461459d57600080fd5b50565b6145a981613d7c565b81146145b457600080fd5b50565b6145c081613d88565b81146145cb57600080fd5b50565b6145d781613dd4565b81146145e257600080fd5b5056fea2646970667358221220e46e615d3d506de1f3cedb738947a52f521657410ed6080ad0c43c82a92a4f2164736f6c63430008070033
Deployed Bytecode Sourcemap
32693:4149:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30232:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25426:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26498:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26141:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33493:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27496:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30467:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32861:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27095:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31938:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31442:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24968:21;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30845:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32820:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35891:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35783:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33009:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25526:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34683:668;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25308:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23631:103;;;;;;;;;;;;;:::i;:::-;;32986:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35697:80;;;;;;;;;;;;;:::i;:::-;;35357:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34471:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32773:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22980:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26018:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33628:553;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26868:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31703:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27236:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32904:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34202:263;;;;;;;;;;;;;:::i;:::-;;33212:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32947:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26701:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23889:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30232:229;30333:16;30380:35;30365:50;;;:11;:50;;;;:90;;;;30419:36;30443:11;30419:23;:36::i;:::-;30365:90;30358:97;;30232:229;;;:::o;25426:94::-;25474:19;25509:5;25502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25426:94;:::o;26498:197::-;26563:16;26596;26604:7;26596;:16::i;:::-;26588:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;26665:15;:24;26681:7;26665:24;;;;;;;;;;;;;;;;;;;;;26658:31;;26498:197;;;:::o;26141:351::-;26209:13;26225:16;26233:7;26225;:16::i;:::-;26209:32;;26262:5;26256:11;;:2;:11;;;;26248:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26345:5;26329:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26354:37;26371:5;26378:12;:10;:12::i;:::-;26354:16;:37::i;:::-;26329:62;26313:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;26465:21;26474:2;26478:7;26465:8;:21::i;:::-;26202:290;26141:351;;:::o;33493:114::-;33546:17;33595:6;;33579;:13;;;;:22;;;;:::i;:::-;33572:29;;33493:114;:::o;27496:221::-;27591:41;27610:12;:10;:12::i;:::-;27624:7;27591:18;:41::i;:::-;27583:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;27683:28;27693:4;27699:2;27703:7;27683:9;:28::i;:::-;27496:221;;;:::o;30467:372::-;30555:12;30576:10;30598:6;30593:178;30610:6;:13;;;;30606:1;:17;30593:178;;;30652:6;30659:1;30652:9;;;;;;;;:::i;:::-;;;;;;;;;:15;;;;;;;;;;;;30643:24;;:5;:24;;;30639:125;;;30693:5;30684;:14;30680:74;;;30719:1;30712:8;;;;;;30680:74;30747:7;;;;:::i;:::-;;;30639:125;30625:3;;;;:::i;:::-;;;30593:178;;;;30779:54;;;;;;;;;;:::i;:::-;;;;;;;;30467:372;;;;;:::o;32861:38::-;32895:4;32861:38;:::o;27095:135::-;27185:39;27202:4;27208:2;27212:7;27185:39;;;;;;;;;;;;:16;:39::i;:::-;27095:135;;;:::o;31938:417::-;32010:21;32040:10;32057:13;32073:20;32084:7;32073:9;:20::i;:::-;32057:36;;32100:20;32135:8;32123:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32100:45;;32157:6;32152:178;32169:6;:13;;;;32165:1;:17;32152:178;;;32213:6;32220:1;32213:9;;;;;;;;:::i;:::-;;;;;;;;;:15;;;;;;;;;;;;32202:26;;:7;:26;;;32198:125;;;32261:1;32241:6;32249:7;;;;;:::i;:::-;;;32241:17;;;;;;;;:::i;:::-;;;;;;;:21;;;;;32286:8;32277:5;:17;32273:40;;;32308:5;;32273:40;32198:125;32184:3;;;;:::i;:::-;;;32152:178;;;;32343:6;32336:13;;;;;31938:417;;;:::o;31442:255::-;31538:4;31555:6;31551:121;31567:8;;:15;;31563:1;:19;31551:121;;;31613:6;31621:8;;31630:1;31621:11;;;;;;;:::i;:::-;;;;;;;;31613:21;;;;;;;;:::i;:::-;;;;;;;;;:27;;;;;;;;;;;;31602:38;;:7;:38;;;31598:66;;31659:5;31652:12;;;;;31598:66;31584:3;;;;:::i;:::-;;;31551:121;;;;31687:4;31680:11;;31442:255;;;;;;:::o;24968:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30845:190::-;30911:12;30948:6;:13;;;;30940:5;:21;30932:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;31024:5;31017:12;;30845:190;;;:::o;32820:36::-;32854:2;32820:36;:::o;35891:147::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35951:15:::1;35969:21;35951:39;;36005:8;35997:26;;:35;36024:7;35997:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;35944:94;35891:147:::0;:::o;35783:102::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35868:11:::1;;35857:8;:22;;;;;;;:::i;:::-;;35783:102:::0;;:::o;33009:32::-;;;;;;;;;;;;;:::o;25526:187::-;25587:13;25617:16;25625:7;25617;:16::i;:::-;25609:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;25686:6;25693:7;25686:15;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;;25679:28;;25526:187;;;:::o;34683:668::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34815:8:::1;;:15;;34796:8;;:15;;:34;34788:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34899:18;34946:6:::0;34942:86:::1;34958:8;;:15;;34954:1;:19;34942:86;;;35007:8;;35016:1;35007:11;;;;;;;:::i;:::-;;;;;;;;34990:28;;;;34975:3;;;;;34942:86;;;;35041:11;35055:13;:11;:13::i;:::-;35041:27;;32895:4;35093:13;35084:6;:22;;;;:::i;:::-;:35;35075:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35193:6;35189:150;35205:8;;:15;;35201:1;:19;35189:150;;;35241:6;35237:93;35253:8;;35262:1;35253:11;;;;;;;:::i;:::-;;;;;;;;35249:1;:15;35237:93;;;35283:35;35290:8;;35299:1;35290:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;35303:6;:13;;;;35283:5;:35::i;:::-;35266:3;;;;;35237:93;;;;35222:3;;;;;35189:150;;;;34781:570;;34683:668:::0;;;;:::o;25308:112::-;25372:12;25399:8;:15;25408:5;25399:15;;;;;;;;;;;;;;;;25392:22;;25308:112;;;:::o;23631:103::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23696:30:::1;23723:1;23696:18;:30::i;:::-;23631:103::o:0;32986:18::-;;;;:::o;35697:80::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35759:12:::1;;;;;;;;;;;35758:13;35743:12;;:28;;;;;;;;;;;;;;;;;;35697:80::o:0;35357:334::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35485:8:::1;;:15;;35466:8;;:15;;:34;35458:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35591:6;35587:92;35603:8;;:15;;35599:1;:19;35587:92;;;35636:33;35643:8;;35652:1;35643:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;35656:8;;35665:1;35656:11;;;;;;;:::i;:::-;;;;;;;;35636:5;:33::i;:::-;35620:3;;;;;35587:92;;;;35357:334:::0;;;;:::o;34471:206::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34581:6:::1;34577:88;34593:8;;:15;;34589:1;:19;34577:88;;;34626:29;34633:7;34642:8;;34651:1;34642:11;;;;;;;:::i;:::-;;;;;;;;34626:5;:29::i;:::-;34610:3;;;;;34577:88;;;;34471:206:::0;;;:::o;32773:42::-;32803:12;32773:42;:::o;22980:87::-;23026:7;23053:6;;;;;;;;;;;23046:13;;22980:87;:::o;26018:100::-;26068:21;26105:7;26098:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26018:100;:::o;33628:553::-;32854:2;33691:8;:21;;33682:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33800:8;32803:12;33792:16;;;;:::i;:::-;33779:9;:29;;33770:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33867:12;;;;;;;;;;;33858:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33940:11;33954:13;:11;:13::i;:::-;33940:27;;32895:4;33992:8;33983:6;:17;;;;:::i;:::-;:31;;33974:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;34088:6;34084:85;34100:8;34096:1;:12;34084:85;;;34125:34;34132:10;34144:6;:13;;;;34125:5;:34::i;:::-;34110:3;;;;;34084:85;;;;33675:506;33628:553;:::o;26868:204::-;26998:8;26953:18;:32;26972:12;:10;:12::i;:::-;26953:32;;;;;;;;;;;;;;;:42;26986:8;26953:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;27047:8;27018:48;;27033:12;:10;:12::i;:::-;27018:48;;;27057:8;27018:48;;;;;;:::i;:::-;;;;;;;;26868:204;;:::o;31703:229::-;31829:6;31825:102;31841:8;;:15;;31837:1;:19;31825:102;;;31872:47;31890:4;31896:2;31900:8;;31909:1;31900:11;;;;;;;:::i;:::-;;;;;;;;31913:4;;31872:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:47::i;:::-;31858:3;;;;:::i;:::-;;;31825:102;;;;31703:229;;;;;;:::o;27236:254::-;27353:41;27372:12;:10;:12::i;:::-;27386:7;27353:18;:41::i;:::-;27345:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;27445:39;27459:4;27465:2;27469:7;27478:5;27445:13;:39::i;:::-;27236:254;;;;:::o;32904:38::-;32939:3;32904:38;:::o;34202:263::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34256:10:::1;;;;;;;;;;;34255:11;34247:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;34335:6;34331:94;32939:3;34343:1;:15;34331:94;;;34379:34;34386:10;34398:6;:13;;;;34379:5;:34::i;:::-;34360:3;;;;;34331:94;;;;34448:4;34435:10;;:17;;;;;;;;;;;;;;;;;;34202:263::o:0;33212:246::-;33278:13;33308:16;33316:7;33308;:16::i;:::-;33300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33406:8;33416:18;:7;:16;:18::i;:::-;33436:14;;;;;;;;;;;;;;;;;33389:62;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33375:77;;33212:246;;;:::o;32947:30::-;;;;;;;;;;;;;:::o;26701:161::-;26790:15;26821:18;:25;26840:5;26821:25;;;;;;;;;;;;;;;:35;26847:8;26821:35;;;;;;;;;;;;;;;;;;;;;;;;;26814:42;;26701:161;;;;:::o;23889:201::-;23211:12;:10;:12::i;:::-;23200:23;;:7;:5;:7::i;:::-;:23;;;23192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23998:1:::1;23978:22;;:8;:22;;;;23970:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24054:28;24073:8;24054:18;:28::i;:::-;23889:201:::0;:::o;25719:293::-;25821:16;25875:25;25860:40;;;:11;:40;;;;:99;;;;25926:33;25911:48;;;:11;:48;;;;25860:99;:146;;;;25970:36;25994:11;25970:23;:36::i;:::-;25860:146;25846:160;;25719:293;;;:::o;28743:143::-;28798:4;28828:6;:13;;;;28818:7;:23;:62;;;;;28878:1;28845:35;;:6;28852:7;28845:15;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;;:35;;;;28818:62;28811:69;;28743:143;;;:::o;4032:98::-;4085:7;4112:10;4105:17;;4032:98;:::o;27739:145::-;27825:2;27798:15;:24;27814:7;27798:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;27870:7;27866:2;27839:39;;27848:16;27856:7;27848;:16::i;:::-;27839:39;;;;;;;;;;;;27739:145;;:::o;28892:306::-;28974:4;28995:16;29003:7;28995;:16::i;:::-;28987:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29057:13;29073:16;29081:7;29073;:16::i;:::-;29057:32;;29115:5;29104:16;;:7;:16;;;:51;;;;29148:7;29124:31;;:20;29136:7;29124:11;:20::i;:::-;:31;;;29104:51;:87;;;;29159:32;29176:5;29183:7;29159:16;:32::i;:::-;29104:87;29096:96;;;28892:306;;;;:::o;29459:366::-;29562:4;29542:24;;:16;29550:7;29542;:16::i;:::-;:24;;;29534:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;29618:41;29640:4;29646:2;29650:7;29618:20;:41::i;:::-;29716:29;29733:1;29737:7;29716:8;:29::i;:::-;29776:2;29752:6;29759:7;29752:15;;;;;;;;:::i;:::-;;;;;;;;;:21;;;:26;;;;;;;;;;;;;;;;;;29811:7;29807:2;29792:27;;29801:4;29792:27;;;;;;;;;;;;29459:366;;;:::o;36446:393::-;36504:47;36534:1;36538:2;36542:7;36504:20;:47::i;:::-;36572:6;:13;;;;36562:7;:23;36558:229;;;36606:18;36615:7;36606;:18::i;:::-;36605:19;36596:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36683:6;;36681:8;;;;;:::i;:::-;;;;;;;;36724:2;36698:6;36706:7;36698:17;;;;;;;;:::i;:::-;;;;;;;;;:23;;;:28;;;;;;;;;;;;;;;;;;36558:229;;;36753:6;36766:11;;;;;;;;36773:2;36766:11;;;;;36753:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36558:229;36825:7;36821:2;36800:33;;36817:1;36800:33;;;;;;;;;;;;36446:393;;:::o;24250:191::-;24324:16;24343:6;;;;;;;;;;;24324:25;;24369:8;24360:6;;:17;;;;;;;;;;;;;;;;;;24424:8;24393:40;;24414:8;24393:40;;;;;;;;;;;;24313:128;24250:191;:::o;36060:380::-;36129:18;36138:7;36129;:18::i;:::-;36120:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;36216:6;36224:7;36216:17;;;;;;;;:::i;:::-;;;;;;;;;:23;;;;;;;;;;;;36208:31;;:4;:31;;;36199:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;36282:6;;36280:8;;;;;:::i;:::-;;;;;;;;36295:49;36317:4;36331:1;36335:7;36295:20;:49::i;:::-;36385:1;36351:6;36359:7;36351:17;;;;;;;;:::i;:::-;;;;;;;;;:23;;;:36;;;;;;;;;;;;;;;;;;36426:7;36422:1;36399:35;;36408:4;36399:35;;;;;;;;;;;;36060:380;;:::o;29204:249::-;29302:28;29312:4;29318:2;29322:7;29302:9;:28::i;:::-;29345:48;29368:4;29374:2;29378:7;29387:5;29345:22;:48::i;:::-;29337:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29204:249;;;;:::o;1650:723::-;1706:13;1936:1;1927:5;:10;1923:53;;;1954:10;;;;;;;;;;;;;;;;;;;;;1923:53;1986:12;2001:5;1986:20;;2017:14;2042:78;2057:1;2049:4;:9;2042:78;;2075:8;;;;;:::i;:::-;;;;2106:2;2098:10;;;;;:::i;:::-;;;2042:78;;;2130:19;2162:6;2152:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130:39;;2180:154;2196:1;2187:5;:10;2180:154;;2224:1;2214:11;;;;;:::i;:::-;;;2291:2;2283:5;:10;;;;:::i;:::-;2270:2;:24;;;;:::i;:::-;2257:39;;2240:6;2247;2240:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2320:2;2311:11;;;;;:::i;:::-;;;2180:154;;;2358:6;2344:21;;;;;1650:723;;;;:::o;14946:157::-;15031:4;15070:25;15055:40;;;:11;:40;;;;15048:47;;14946:157;;;:::o;27890:201::-;28004:1;27988:18;;:4;:18;;;27984:48;;28018:8;:14;28027:4;28018:14;;;;;;;;;;;;;;;;28016:16;;;;;:::i;:::-;;;;;;;;27984:48;28059:1;28045:16;;:2;:16;;;28041:44;;28073:8;:12;28082:2;28073:12;;;;;;;;;;;;;;;;28071:14;;;;;:::i;:::-;;;;;;;;28041:44;27890:201;;;:::o;28097:640::-;28206:4;28223:15;:2;:13;;;:15::i;:::-;28219:513;;;28269:2;28253:36;;;28290:12;:10;:12::i;:::-;28304:4;28310:7;28319:5;28253:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;28249:442;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28490:1;28473:6;:13;:18;28469:213;;;28506:59;;;;;;;;;;:::i;:::-;;;;;;;;28469:213;28650:6;28644:13;28635:6;28631:2;28627:15;28620:38;28249:442;28378:41;;;28368:51;;;:6;:51;;;;28361:58;;;;;28219:513;28720:4;28713:11;;28097:640;;;;;;;:::o;5010:387::-;5070:4;5278:12;5345:7;5333:20;5325:28;;5388:1;5381:4;:8;5374:15;;;5010:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1176:::-;1249:8;1259:6;1309:3;1302:4;1294:6;1290:17;1286:27;1276:122;;1317:79;;:::i;:::-;1276:122;1430:6;1417:20;1407:30;;1460:18;1452:6;1449:30;1446:117;;;1482:79;;:::i;:::-;1446:117;1596:4;1588:6;1584:17;1572:29;;1650:3;1642:4;1634:6;1630:17;1620:8;1616:32;1613:41;1610:128;;;1657:79;;:::i;:::-;1610:128;1176:568;;;;;:::o;1750:133::-;1793:5;1831:6;1818:20;1809:29;;1847:30;1871:5;1847:30;:::i;:::-;1750:133;;;;:::o;1889:137::-;1934:5;1972:6;1959:20;1950:29;;1988:32;2014:5;1988:32;:::i;:::-;1889:137;;;;:::o;2032:141::-;2088:5;2119:6;2113:13;2104:22;;2135:32;2161:5;2135:32;:::i;:::-;2032:141;;;;:::o;2192:552::-;2249:8;2259:6;2309:3;2302:4;2294:6;2290:17;2286:27;2276:122;;2317:79;;:::i;:::-;2276:122;2430:6;2417:20;2407:30;;2460:18;2452:6;2449:30;2446:117;;;2482:79;;:::i;:::-;2446:117;2596:4;2588:6;2584:17;2572:29;;2650:3;2642:4;2634:6;2630:17;2620:8;2616:32;2613:41;2610:128;;;2657:79;;:::i;:::-;2610:128;2192:552;;;;;:::o;2763:338::-;2818:5;2867:3;2860:4;2852:6;2848:17;2844:27;2834:122;;2875:79;;:::i;:::-;2834:122;2992:6;2979:20;3017:78;3091:3;3083:6;3076:4;3068:6;3064:17;3017:78;:::i;:::-;3008:87;;2824:277;2763:338;;;;:::o;3121:553::-;3179:8;3189:6;3239:3;3232:4;3224:6;3220:17;3216:27;3206:122;;3247:79;;:::i;:::-;3206:122;3360:6;3347:20;3337:30;;3390:18;3382:6;3379:30;3376:117;;;3412:79;;:::i;:::-;3376:117;3526:4;3518:6;3514:17;3502:29;;3580:3;3572:4;3564:6;3560:17;3550:8;3546:32;3543:41;3540:128;;;3587:79;;:::i;:::-;3540:128;3121:553;;;;;:::o;3680:139::-;3726:5;3764:6;3751:20;3742:29;;3780:33;3807:5;3780:33;:::i;:::-;3680:139;;;;:::o;3825:329::-;3884:6;3933:2;3921:9;3912:7;3908:23;3904:32;3901:119;;;3939:79;;:::i;:::-;3901:119;4059:1;4084:53;4129:7;4120:6;4109:9;4105:22;4084:53;:::i;:::-;4074:63;;4030:117;3825:329;;;;:::o;4160:474::-;4228:6;4236;4285:2;4273:9;4264:7;4260:23;4256:32;4253:119;;;4291:79;;:::i;:::-;4253:119;4411:1;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4382:117;4538:2;4564:53;4609:7;4600:6;4589:9;4585:22;4564:53;:::i;:::-;4554:63;;4509:118;4160:474;;;;;:::o;4640:1193::-;4764:6;4772;4780;4788;4796;4804;4853:3;4841:9;4832:7;4828:23;4824:33;4821:120;;;4860:79;;:::i;:::-;4821:120;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;5107:2;5133:53;5178:7;5169:6;5158:9;5154:22;5133:53;:::i;:::-;5123:63;;5078:118;5263:2;5252:9;5248:18;5235:32;5294:18;5286:6;5283:30;5280:117;;;5316:79;;:::i;:::-;5280:117;5429:80;5501:7;5492:6;5481:9;5477:22;5429:80;:::i;:::-;5411:98;;;;5206:313;5586:2;5575:9;5571:18;5558:32;5617:18;5609:6;5606:30;5603:117;;;5639:79;;:::i;:::-;5603:117;5752:64;5808:7;5799:6;5788:9;5784:22;5752:64;:::i;:::-;5734:82;;;;5529:297;4640:1193;;;;;;;;:::o;5839:619::-;5916:6;5924;5932;5981:2;5969:9;5960:7;5956:23;5952:32;5949:119;;;5987:79;;:::i;:::-;5949:119;6107:1;6132:53;6177:7;6168:6;6157:9;6153:22;6132:53;:::i;:::-;6122:63;;6078:117;6234:2;6260:53;6305:7;6296:6;6285:9;6281:22;6260:53;:::i;:::-;6250:63;;6205:118;6362:2;6388:53;6433:7;6424:6;6413:9;6409:22;6388:53;:::i;:::-;6378:63;;6333:118;5839:619;;;;;:::o;6464:943::-;6559:6;6567;6575;6583;6632:3;6620:9;6611:7;6607:23;6603:33;6600:120;;;6639:79;;:::i;:::-;6600:120;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:53;6957:7;6948:6;6937:9;6933:22;6912:53;:::i;:::-;6902:63;;6857:118;7014:2;7040:53;7085:7;7076:6;7065:9;7061:22;7040:53;:::i;:::-;7030:63;;6985:118;7170:2;7159:9;7155:18;7142:32;7201:18;7193:6;7190:30;7187:117;;;7223:79;;:::i;:::-;7187:117;7328:62;7382:7;7373:6;7362:9;7358:22;7328:62;:::i;:::-;7318:72;;7113:287;6464:943;;;;;;;:::o;7413:704::-;7508:6;7516;7524;7573:2;7561:9;7552:7;7548:23;7544:32;7541:119;;;7579:79;;:::i;:::-;7541:119;7699:1;7724:53;7769:7;7760:6;7749:9;7745:22;7724:53;:::i;:::-;7714:63;;7670:117;7854:2;7843:9;7839:18;7826:32;7885:18;7877:6;7874:30;7871:117;;;7907:79;;:::i;:::-;7871:117;8020:80;8092:7;8083:6;8072:9;8068:22;8020:80;:::i;:::-;8002:98;;;;7797:313;7413:704;;;;;:::o;8123:468::-;8188:6;8196;8245:2;8233:9;8224:7;8220:23;8216:32;8213:119;;;8251:79;;:::i;:::-;8213:119;8371:1;8396:53;8441:7;8432:6;8421:9;8417:22;8396:53;:::i;:::-;8386:63;;8342:117;8498:2;8524:50;8566:7;8557:6;8546:9;8542:22;8524:50;:::i;:::-;8514:60;;8469:115;8123:468;;;;;:::o;8597:474::-;8665:6;8673;8722:2;8710:9;8701:7;8697:23;8693:32;8690:119;;;8728:79;;:::i;:::-;8690:119;8848:1;8873:53;8918:7;8909:6;8898:9;8894:22;8873:53;:::i;:::-;8863:63;;8819:117;8975:2;9001:53;9046:7;9037:6;9026:9;9022:22;9001:53;:::i;:::-;8991:63;;8946:118;8597:474;;;;;:::o;9077:934::-;9199:6;9207;9215;9223;9272:2;9260:9;9251:7;9247:23;9243:32;9240:119;;;9278:79;;:::i;:::-;9240:119;9426:1;9415:9;9411:17;9398:31;9456:18;9448:6;9445:30;9442:117;;;9478:79;;:::i;:::-;9442:117;9591:80;9663:7;9654:6;9643:9;9639:22;9591:80;:::i;:::-;9573:98;;;;9369:312;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9914:80;9986:7;9977:6;9966:9;9962:22;9914:80;:::i;:::-;9896:98;;;;9691:313;9077:934;;;;;;;:::o;10017:327::-;10075:6;10124:2;10112:9;10103:7;10099:23;10095:32;10092:119;;;10130:79;;:::i;:::-;10092:119;10250:1;10275:52;10319:7;10310:6;10299:9;10295:22;10275:52;:::i;:::-;10265:62;;10221:116;10017:327;;;;:::o;10350:349::-;10419:6;10468:2;10456:9;10447:7;10443:23;10439:32;10436:119;;;10474:79;;:::i;:::-;10436:119;10594:1;10619:63;10674:7;10665:6;10654:9;10650:22;10619:63;:::i;:::-;10609:73;;10565:127;10350:349;;;;:::o;10705:529::-;10776:6;10784;10833:2;10821:9;10812:7;10808:23;10804:32;10801:119;;;10839:79;;:::i;:::-;10801:119;10987:1;10976:9;10972:17;10959:31;11017:18;11009:6;11006:30;11003:117;;;11039:79;;:::i;:::-;11003:117;11152:65;11209:7;11200:6;11189:9;11185:22;11152:65;:::i;:::-;11134:83;;;;10930:297;10705:529;;;;;:::o;11240:329::-;11299:6;11348:2;11336:9;11327:7;11323:23;11319:32;11316:119;;;11354:79;;:::i;:::-;11316:119;11474:1;11499:53;11544:7;11535:6;11524:9;11520:22;11499:53;:::i;:::-;11489:63;;11445:117;11240:329;;;;:::o;11575:179::-;11644:10;11665:46;11707:3;11699:6;11665:46;:::i;:::-;11743:4;11738:3;11734:14;11720:28;;11575:179;;;;:::o;11760:118::-;11847:24;11865:5;11847:24;:::i;:::-;11842:3;11835:37;11760:118;;:::o;11914:732::-;12033:3;12062:54;12110:5;12062:54;:::i;:::-;12132:86;12211:6;12206:3;12132:86;:::i;:::-;12125:93;;12242:56;12292:5;12242:56;:::i;:::-;12321:7;12352:1;12337:284;12362:6;12359:1;12356:13;12337:284;;;12438:6;12432:13;12465:63;12524:3;12509:13;12465:63;:::i;:::-;12458:70;;12551:60;12604:6;12551:60;:::i;:::-;12541:70;;12397:224;12384:1;12381;12377:9;12372:14;;12337:284;;;12341:14;12637:3;12630:10;;12038:608;;;11914:732;;;;:::o;12652:109::-;12733:21;12748:5;12733:21;:::i;:::-;12728:3;12721:34;12652:109;;:::o;12767:360::-;12853:3;12881:38;12913:5;12881:38;:::i;:::-;12935:70;12998:6;12993:3;12935:70;:::i;:::-;12928:77;;13014:52;13059:6;13054:3;13047:4;13040:5;13036:16;13014:52;:::i;:::-;13091:29;13113:6;13091:29;:::i;:::-;13086:3;13082:39;13075:46;;12857:270;12767:360;;;;:::o;13133:364::-;13221:3;13249:39;13282:5;13249:39;:::i;:::-;13304:71;13368:6;13363:3;13304:71;:::i;:::-;13297:78;;13384:52;13429:6;13424:3;13417:4;13410:5;13406:16;13384:52;:::i;:::-;13461:29;13483:6;13461:29;:::i;:::-;13456:3;13452:39;13445:46;;13225:272;13133:364;;;;:::o;13503:377::-;13609:3;13637:39;13670:5;13637:39;:::i;:::-;13692:89;13774:6;13769:3;13692:89;:::i;:::-;13685:96;;13790:52;13835:6;13830:3;13823:4;13816:5;13812:16;13790:52;:::i;:::-;13867:6;13862:3;13858:16;13851:23;;13613:267;13503:377;;;;:::o;13910:845::-;14013:3;14050:5;14044:12;14079:36;14105:9;14079:36;:::i;:::-;14131:89;14213:6;14208:3;14131:89;:::i;:::-;14124:96;;14251:1;14240:9;14236:17;14267:1;14262:137;;;;14413:1;14408:341;;;;14229:520;;14262:137;14346:4;14342:9;14331;14327:25;14322:3;14315:38;14382:6;14377:3;14373:16;14366:23;;14262:137;;14408:341;14475:38;14507:5;14475:38;:::i;:::-;14535:1;14549:154;14563:6;14560:1;14557:13;14549:154;;;14637:7;14631:14;14627:1;14622:3;14618:11;14611:35;14687:1;14678:7;14674:15;14663:26;;14585:4;14582:1;14578:12;14573:17;;14549:154;;;14732:6;14727:3;14723:16;14716:23;;14415:334;;14229:520;;14017:738;;13910:845;;;;:::o;14761:366::-;14903:3;14924:67;14988:2;14983:3;14924:67;:::i;:::-;14917:74;;15000:93;15089:3;15000:93;:::i;:::-;15118:2;15113:3;15109:12;15102:19;;14761:366;;;:::o;15133:::-;15275:3;15296:67;15360:2;15355:3;15296:67;:::i;:::-;15289:74;;15372:93;15461:3;15372:93;:::i;:::-;15490:2;15485:3;15481:12;15474:19;;15133:366;;;:::o;15505:::-;15647:3;15668:67;15732:2;15727:3;15668:67;:::i;:::-;15661:74;;15744:93;15833:3;15744:93;:::i;:::-;15862:2;15857:3;15853:12;15846:19;;15505:366;;;:::o;15877:::-;16019:3;16040:67;16104:2;16099:3;16040:67;:::i;:::-;16033:74;;16116:93;16205:3;16116:93;:::i;:::-;16234:2;16229:3;16225:12;16218:19;;15877:366;;;:::o;16249:::-;16391:3;16412:67;16476:2;16471:3;16412:67;:::i;:::-;16405:74;;16488:93;16577:3;16488:93;:::i;:::-;16606:2;16601:3;16597:12;16590:19;;16249:366;;;:::o;16621:::-;16763:3;16784:67;16848:2;16843:3;16784:67;:::i;:::-;16777:74;;16860:93;16949:3;16860:93;:::i;:::-;16978:2;16973:3;16969:12;16962:19;;16621:366;;;:::o;16993:::-;17135:3;17156:67;17220:2;17215:3;17156:67;:::i;:::-;17149:74;;17232:93;17321:3;17232:93;:::i;:::-;17350:2;17345:3;17341:12;17334:19;;16993:366;;;:::o;17365:::-;17507:3;17528:67;17592:2;17587:3;17528:67;:::i;:::-;17521:74;;17604:93;17693:3;17604:93;:::i;:::-;17722:2;17717:3;17713:12;17706:19;;17365:366;;;:::o;17737:::-;17879:3;17900:67;17964:2;17959:3;17900:67;:::i;:::-;17893:74;;17976:93;18065:3;17976:93;:::i;:::-;18094:2;18089:3;18085:12;18078:19;;17737:366;;;:::o;18109:::-;18251:3;18272:67;18336:2;18331:3;18272:67;:::i;:::-;18265:74;;18348:93;18437:3;18348:93;:::i;:::-;18466:2;18461:3;18457:12;18450:19;;18109:366;;;:::o;18481:::-;18623:3;18644:67;18708:2;18703:3;18644:67;:::i;:::-;18637:74;;18720:93;18809:3;18720:93;:::i;:::-;18838:2;18833:3;18829:12;18822:19;;18481:366;;;:::o;18853:::-;18995:3;19016:67;19080:2;19075:3;19016:67;:::i;:::-;19009:74;;19092:93;19181:3;19092:93;:::i;:::-;19210:2;19205:3;19201:12;19194:19;;18853:366;;;:::o;19225:::-;19367:3;19388:67;19452:2;19447:3;19388:67;:::i;:::-;19381:74;;19464:93;19553:3;19464:93;:::i;:::-;19582:2;19577:3;19573:12;19566:19;;19225:366;;;:::o;19597:::-;19739:3;19760:67;19824:2;19819:3;19760:67;:::i;:::-;19753:74;;19836:93;19925:3;19836:93;:::i;:::-;19954:2;19949:3;19945:12;19938:19;;19597:366;;;:::o;19969:::-;20111:3;20132:67;20196:2;20191:3;20132:67;:::i;:::-;20125:74;;20208:93;20297:3;20208:93;:::i;:::-;20326:2;20321:3;20317:12;20310:19;;19969:366;;;:::o;20341:::-;20483:3;20504:67;20568:2;20563:3;20504:67;:::i;:::-;20497:74;;20580:93;20669:3;20580:93;:::i;:::-;20698:2;20693:3;20689:12;20682:19;;20341:366;;;:::o;20713:::-;20855:3;20876:67;20940:2;20935:3;20876:67;:::i;:::-;20869:74;;20952:93;21041:3;20952:93;:::i;:::-;21070:2;21065:3;21061:12;21054:19;;20713:366;;;:::o;21085:::-;21227:3;21248:67;21312:2;21307:3;21248:67;:::i;:::-;21241:74;;21324:93;21413:3;21324:93;:::i;:::-;21442:2;21437:3;21433:12;21426:19;;21085:366;;;:::o;21457:::-;21599:3;21620:67;21684:2;21679:3;21620:67;:::i;:::-;21613:74;;21696:93;21785:3;21696:93;:::i;:::-;21814:2;21809:3;21805:12;21798:19;;21457:366;;;:::o;21829:::-;21971:3;21992:67;22056:2;22051:3;21992:67;:::i;:::-;21985:74;;22068:93;22157:3;22068:93;:::i;:::-;22186:2;22181:3;22177:12;22170:19;;21829:366;;;:::o;22201:108::-;22278:24;22296:5;22278:24;:::i;:::-;22273:3;22266:37;22201:108;;:::o;22315:118::-;22402:24;22420:5;22402:24;:::i;:::-;22397:3;22390:37;22315:118;;:::o;22439:589::-;22664:3;22686:92;22774:3;22765:6;22686:92;:::i;:::-;22679:99;;22795:95;22886:3;22877:6;22795:95;:::i;:::-;22788:102;;22907:95;22998:3;22989:6;22907:95;:::i;:::-;22900:102;;23019:3;23012:10;;22439:589;;;;;;:::o;23034:222::-;23127:4;23165:2;23154:9;23150:18;23142:26;;23178:71;23246:1;23235:9;23231:17;23222:6;23178:71;:::i;:::-;23034:222;;;;:::o;23262:640::-;23457:4;23495:3;23484:9;23480:19;23472:27;;23509:71;23577:1;23566:9;23562:17;23553:6;23509:71;:::i;:::-;23590:72;23658:2;23647:9;23643:18;23634:6;23590:72;:::i;:::-;23672;23740:2;23729:9;23725:18;23716:6;23672:72;:::i;:::-;23791:9;23785:4;23781:20;23776:2;23765:9;23761:18;23754:48;23819:76;23890:4;23881:6;23819:76;:::i;:::-;23811:84;;23262:640;;;;;;;:::o;23908:373::-;24051:4;24089:2;24078:9;24074:18;24066:26;;24138:9;24132:4;24128:20;24124:1;24113:9;24109:17;24102:47;24166:108;24269:4;24260:6;24166:108;:::i;:::-;24158:116;;23908:373;;;;:::o;24287:210::-;24374:4;24412:2;24401:9;24397:18;24389:26;;24425:65;24487:1;24476:9;24472:17;24463:6;24425:65;:::i;:::-;24287:210;;;;:::o;24503:313::-;24616:4;24654:2;24643:9;24639:18;24631:26;;24703:9;24697:4;24693:20;24689:1;24678:9;24674:17;24667:47;24731:78;24804:4;24795:6;24731:78;:::i;:::-;24723:86;;24503:313;;;;:::o;24822:419::-;24988:4;25026:2;25015:9;25011:18;25003:26;;25075:9;25069:4;25065:20;25061:1;25050:9;25046:17;25039:47;25103:131;25229:4;25103:131;:::i;:::-;25095:139;;24822:419;;;:::o;25247:::-;25413:4;25451:2;25440:9;25436:18;25428:26;;25500:9;25494:4;25490:20;25486:1;25475:9;25471:17;25464:47;25528:131;25654:4;25528:131;:::i;:::-;25520:139;;25247:419;;;:::o;25672:::-;25838:4;25876:2;25865:9;25861:18;25853:26;;25925:9;25919:4;25915:20;25911:1;25900:9;25896:17;25889:47;25953:131;26079:4;25953:131;:::i;:::-;25945:139;;25672:419;;;:::o;26097:::-;26263:4;26301:2;26290:9;26286:18;26278:26;;26350:9;26344:4;26340:20;26336:1;26325:9;26321:17;26314:47;26378:131;26504:4;26378:131;:::i;:::-;26370:139;;26097:419;;;:::o;26522:::-;26688:4;26726:2;26715:9;26711:18;26703:26;;26775:9;26769:4;26765:20;26761:1;26750:9;26746:17;26739:47;26803:131;26929:4;26803:131;:::i;:::-;26795:139;;26522:419;;;:::o;26947:::-;27113:4;27151:2;27140:9;27136:18;27128:26;;27200:9;27194:4;27190:20;27186:1;27175:9;27171:17;27164:47;27228:131;27354:4;27228:131;:::i;:::-;27220:139;;26947:419;;;:::o;27372:::-;27538:4;27576:2;27565:9;27561:18;27553:26;;27625:9;27619:4;27615:20;27611:1;27600:9;27596:17;27589:47;27653:131;27779:4;27653:131;:::i;:::-;27645:139;;27372:419;;;:::o;27797:::-;27963:4;28001:2;27990:9;27986:18;27978:26;;28050:9;28044:4;28040:20;28036:1;28025:9;28021:17;28014:47;28078:131;28204:4;28078:131;:::i;:::-;28070:139;;27797:419;;;:::o;28222:::-;28388:4;28426:2;28415:9;28411:18;28403:26;;28475:9;28469:4;28465:20;28461:1;28450:9;28446:17;28439:47;28503:131;28629:4;28503:131;:::i;:::-;28495:139;;28222:419;;;:::o;28647:::-;28813:4;28851:2;28840:9;28836:18;28828:26;;28900:9;28894:4;28890:20;28886:1;28875:9;28871:17;28864:47;28928:131;29054:4;28928:131;:::i;:::-;28920:139;;28647:419;;;:::o;29072:::-;29238:4;29276:2;29265:9;29261:18;29253:26;;29325:9;29319:4;29315:20;29311:1;29300:9;29296:17;29289:47;29353:131;29479:4;29353:131;:::i;:::-;29345:139;;29072:419;;;:::o;29497:::-;29663:4;29701:2;29690:9;29686:18;29678:26;;29750:9;29744:4;29740:20;29736:1;29725:9;29721:17;29714:47;29778:131;29904:4;29778:131;:::i;:::-;29770:139;;29497:419;;;:::o;29922:::-;30088:4;30126:2;30115:9;30111:18;30103:26;;30175:9;30169:4;30165:20;30161:1;30150:9;30146:17;30139:47;30203:131;30329:4;30203:131;:::i;:::-;30195:139;;29922:419;;;:::o;30347:::-;30513:4;30551:2;30540:9;30536:18;30528:26;;30600:9;30594:4;30590:20;30586:1;30575:9;30571:17;30564:47;30628:131;30754:4;30628:131;:::i;:::-;30620:139;;30347:419;;;:::o;30772:::-;30938:4;30976:2;30965:9;30961:18;30953:26;;31025:9;31019:4;31015:20;31011:1;31000:9;30996:17;30989:47;31053:131;31179:4;31053:131;:::i;:::-;31045:139;;30772:419;;;:::o;31197:::-;31363:4;31401:2;31390:9;31386:18;31378:26;;31450:9;31444:4;31440:20;31436:1;31425:9;31421:17;31414:47;31478:131;31604:4;31478:131;:::i;:::-;31470:139;;31197:419;;;:::o;31622:::-;31788:4;31826:2;31815:9;31811:18;31803:26;;31875:9;31869:4;31865:20;31861:1;31850:9;31846:17;31839:47;31903:131;32029:4;31903:131;:::i;:::-;31895:139;;31622:419;;;:::o;32047:::-;32213:4;32251:2;32240:9;32236:18;32228:26;;32300:9;32294:4;32290:20;32286:1;32275:9;32271:17;32264:47;32328:131;32454:4;32328:131;:::i;:::-;32320:139;;32047:419;;;:::o;32472:::-;32638:4;32676:2;32665:9;32661:18;32653:26;;32725:9;32719:4;32715:20;32711:1;32700:9;32696:17;32689:47;32753:131;32879:4;32753:131;:::i;:::-;32745:139;;32472:419;;;:::o;32897:::-;33063:4;33101:2;33090:9;33086:18;33078:26;;33150:9;33144:4;33140:20;33136:1;33125:9;33121:17;33114:47;33178:131;33304:4;33178:131;:::i;:::-;33170:139;;32897:419;;;:::o;33322:222::-;33415:4;33453:2;33442:9;33438:18;33430:26;;33466:71;33534:1;33523:9;33519:17;33510:6;33466:71;:::i;:::-;33322:222;;;;:::o;33550:129::-;33584:6;33611:20;;:::i;:::-;33601:30;;33640:33;33668:4;33660:6;33640:33;:::i;:::-;33550:129;;;:::o;33685:75::-;33718:6;33751:2;33745:9;33735:19;;33685:75;:::o;33766:307::-;33827:4;33917:18;33909:6;33906:30;33903:56;;;33939:18;;:::i;:::-;33903:56;33977:29;33999:6;33977:29;:::i;:::-;33969:37;;34061:4;34055;34051:15;34043:23;;33766:307;;;:::o;34079:132::-;34146:4;34169:3;34161:11;;34199:4;34194:3;34190:14;34182:22;;34079:132;;;:::o;34217:141::-;34266:4;34289:3;34281:11;;34312:3;34309:1;34302:14;34346:4;34343:1;34333:18;34325:26;;34217:141;;;:::o;34364:114::-;34431:6;34465:5;34459:12;34449:22;;34364:114;;;:::o;34484:98::-;34535:6;34569:5;34563:12;34553:22;;34484:98;;;:::o;34588:99::-;34640:6;34674:5;34668:12;34658:22;;34588:99;;;:::o;34693:113::-;34763:4;34795;34790:3;34786:14;34778:22;;34693:113;;;:::o;34812:184::-;34911:11;34945:6;34940:3;34933:19;34985:4;34980:3;34976:14;34961:29;;34812:184;;;;:::o;35002:168::-;35085:11;35119:6;35114:3;35107:19;35159:4;35154:3;35150:14;35135:29;;35002:168;;;;:::o;35176:169::-;35260:11;35294:6;35289:3;35282:19;35334:4;35329:3;35325:14;35310:29;;35176:169;;;;:::o;35351:148::-;35453:11;35490:3;35475:18;;35351:148;;;;:::o;35505:305::-;35545:3;35564:20;35582:1;35564:20;:::i;:::-;35559:25;;35598:20;35616:1;35598:20;:::i;:::-;35593:25;;35752:1;35684:66;35680:74;35677:1;35674:81;35671:107;;;35758:18;;:::i;:::-;35671:107;35802:1;35799;35795:9;35788:16;;35505:305;;;;:::o;35816:185::-;35856:1;35873:20;35891:1;35873:20;:::i;:::-;35868:25;;35907:20;35925:1;35907:20;:::i;:::-;35902:25;;35946:1;35936:35;;35951:18;;:::i;:::-;35936:35;35993:1;35990;35986:9;35981:14;;35816:185;;;;:::o;36007:348::-;36047:7;36070:20;36088:1;36070:20;:::i;:::-;36065:25;;36104:20;36122:1;36104:20;:::i;:::-;36099:25;;36292:1;36224:66;36220:74;36217:1;36214:81;36209:1;36202:9;36195:17;36191:105;36188:131;;;36299:18;;:::i;:::-;36188:131;36347:1;36344;36340:9;36329:20;;36007:348;;;;:::o;36361:191::-;36401:4;36421:20;36439:1;36421:20;:::i;:::-;36416:25;;36455:20;36473:1;36455:20;:::i;:::-;36450:25;;36494:1;36491;36488:8;36485:34;;;36499:18;;:::i;:::-;36485:34;36544:1;36541;36537:9;36529:17;;36361:191;;;;:::o;36558:96::-;36595:7;36624:24;36642:5;36624:24;:::i;:::-;36613:35;;36558:96;;;:::o;36660:90::-;36694:7;36737:5;36730:13;36723:21;36712:32;;36660:90;;;:::o;36756:149::-;36792:7;36832:66;36825:5;36821:78;36810:89;;36756:149;;;:::o;36911:126::-;36948:7;36988:42;36981:5;36977:54;36966:65;;36911:126;;;:::o;37043:77::-;37080:7;37109:5;37098:16;;37043:77;;;:::o;37126:154::-;37210:6;37205:3;37200;37187:30;37272:1;37263:6;37258:3;37254:16;37247:27;37126:154;;;:::o;37286:307::-;37354:1;37364:113;37378:6;37375:1;37372:13;37364:113;;;37463:1;37458:3;37454:11;37448:18;37444:1;37439:3;37435:11;37428:39;37400:2;37397:1;37393:10;37388:15;;37364:113;;;37495:6;37492:1;37489:13;37486:101;;;37575:1;37566:6;37561:3;37557:16;37550:27;37486:101;37335:258;37286:307;;;:::o;37599:171::-;37638:3;37661:24;37679:5;37661:24;:::i;:::-;37652:33;;37707:4;37700:5;37697:15;37694:41;;;37715:18;;:::i;:::-;37694:41;37762:1;37755:5;37751:13;37744:20;;37599:171;;;:::o;37776:320::-;37820:6;37857:1;37851:4;37847:12;37837:22;;37904:1;37898:4;37894:12;37925:18;37915:81;;37981:4;37973:6;37969:17;37959:27;;37915:81;38043:2;38035:6;38032:14;38012:18;38009:38;38006:84;;;38062:18;;:::i;:::-;38006:84;37827:269;37776:320;;;:::o;38102:281::-;38185:27;38207:4;38185:27;:::i;:::-;38177:6;38173:40;38315:6;38303:10;38300:22;38279:18;38267:10;38264:34;38261:62;38258:88;;;38326:18;;:::i;:::-;38258:88;38366:10;38362:2;38355:22;38145:238;38102:281;;:::o;38389:233::-;38428:3;38451:24;38469:5;38451:24;:::i;:::-;38442:33;;38497:66;38490:5;38487:77;38484:103;;;38567:18;;:::i;:::-;38484:103;38614:1;38607:5;38603:13;38596:20;;38389:233;;;:::o;38628:176::-;38660:1;38677:20;38695:1;38677:20;:::i;:::-;38672:25;;38711:20;38729:1;38711:20;:::i;:::-;38706:25;;38750:1;38740:35;;38755:18;;:::i;:::-;38740:35;38796:1;38793;38789:9;38784:14;;38628:176;;;;:::o;38810:180::-;38858:77;38855:1;38848:88;38955:4;38952:1;38945:15;38979:4;38976:1;38969:15;38996:180;39044:77;39041:1;39034:88;39141:4;39138:1;39131:15;39165:4;39162:1;39155:15;39182:180;39230:77;39227:1;39220:88;39327:4;39324:1;39317:15;39351:4;39348:1;39341:15;39368:180;39416:77;39413:1;39406:88;39513:4;39510:1;39503:15;39537:4;39534:1;39527:15;39554:180;39602:77;39599:1;39592:88;39699:4;39696:1;39689:15;39723:4;39720:1;39713:15;39740:117;39849:1;39846;39839:12;39863:117;39972:1;39969;39962:12;39986:117;40095:1;40092;40085:12;40109:117;40218:1;40215;40208:12;40232:117;40341:1;40338;40331:12;40355:117;40464:1;40461;40454:12;40478:102;40519:6;40570:2;40566:7;40561:2;40554:5;40550:14;40546:28;40536:38;;40478:102;;;:::o;40586:225::-;40726:34;40722:1;40714:6;40710:14;40703:58;40795:8;40790:2;40782:6;40778:15;40771:33;40586:225;:::o;40817:221::-;40957:34;40953:1;40945:6;40941:14;40934:58;41026:4;41021:2;41013:6;41009:15;41002:29;40817:221;:::o;41044:224::-;41184:34;41180:1;41172:6;41168:14;41161:58;41253:7;41248:2;41240:6;41236:15;41229:32;41044:224;:::o;41274:181::-;41414:33;41410:1;41402:6;41398:14;41391:57;41274:181;:::o;41461:180::-;41601:32;41597:1;41589:6;41585:14;41578:56;41461:180;:::o;41647:182::-;41787:34;41783:1;41775:6;41771:14;41764:58;41647:182;:::o;41835:226::-;41975:34;41971:1;41963:6;41959:14;41952:58;42044:9;42039:2;42031:6;42027:15;42020:34;41835:226;:::o;42067:229::-;42207:34;42203:1;42195:6;42191:14;42184:58;42276:12;42271:2;42263:6;42259:15;42252:37;42067:229;:::o;42302:175::-;42442:27;42438:1;42430:6;42426:14;42419:51;42302:175;:::o;42483:182::-;42623:34;42619:1;42611:6;42607:14;42600:58;42483:182;:::o;42671:231::-;42811:34;42807:1;42799:6;42795:14;42788:58;42880:14;42875:2;42867:6;42863:15;42856:39;42671:231;:::o;42908:229::-;43048:34;43044:1;43036:6;43032:14;43025:58;43117:12;43112:2;43104:6;43100:15;43093:37;42908:229;:::o;43143:226::-;43283:34;43279:1;43271:6;43267:14;43260:58;43352:9;43347:2;43339:6;43335:15;43328:34;43143:226;:::o;43375:241::-;43515:34;43511:1;43503:6;43499:14;43492:58;43584:24;43579:2;43571:6;43567:15;43560:49;43375:241;:::o;43622:227::-;43762:34;43758:1;43750:6;43746:14;43739:58;43831:10;43826:2;43818:6;43814:15;43807:35;43622:227;:::o;43855:176::-;43995:28;43991:1;43983:6;43979:14;43972:52;43855:176;:::o;44037:234::-;44177:34;44173:1;44165:6;44161:14;44154:58;44246:17;44241:2;44233:6;44229:15;44222:42;44037:234;:::o;44277:239::-;44417:34;44413:1;44405:6;44401:14;44394:58;44486:22;44481:2;44473:6;44469:15;44462:47;44277:239;:::o;44522:236::-;44662:34;44658:1;44650:6;44646:14;44639:58;44731:19;44726:2;44718:6;44714:15;44707:44;44522:236;:::o;44764:224::-;44904:34;44900:1;44892:6;44888:14;44881:58;44973:7;44968:2;44960:6;44956:15;44949:32;44764:224;:::o;44994:122::-;45067:24;45085:5;45067:24;:::i;:::-;45060:5;45057:35;45047:63;;45106:1;45103;45096:12;45047:63;44994:122;:::o;45122:116::-;45192:21;45207:5;45192:21;:::i;:::-;45185:5;45182:32;45172:60;;45228:1;45225;45218:12;45172:60;45122:116;:::o;45244:120::-;45316:23;45333:5;45316:23;:::i;:::-;45309:5;45306:34;45296:62;;45354:1;45351;45344:12;45296:62;45244:120;:::o;45370:122::-;45443:24;45461:5;45443:24;:::i;:::-;45436:5;45433:35;45423:63;;45482:1;45479;45472:12;45423:63;45370:122;:::o
Swarm Source
ipfs://e46e615d3d506de1f3cedb738947a52f521657410ed6080ad0c43c82a92a4f21
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.