Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 BDC
Holders
1,222
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BDCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BillionaireDoge
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-12 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @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); } /** * @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); } } library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 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); } } } } /** * @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; } /** * @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; } } /** * @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); } /** * @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; } } /** * @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); } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) internal _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } contract BillionaireDoge is ERC721URIStorage, Ownable { using Counters for Counters.Counter; using Strings for uint256; event WithdrawEth(address indexed _operator, uint256 _ethWei); event SetMaxMintingPerTime(uint8 maxMintingPerTime); event BatchMint(address indexed _whoDone, uint256 _howMany); uint256 public immutable totalSupply; uint8 public maxMintingPerTime; string private _baseTokenURI; uint public nftCost = 40*10**15; // unit is 0.001 ETH Counters.Counter private _tokenIds; constructor() ERC721("The Billionaire Doge Club", "BDC") { totalSupply = 10000; setMaxMintingPerTime(10); setBaseURI("https://cloudflare-ipfs.com/ipns/k2k4r8mbprrc636ix7mslbd8osu3ceqwwggtoi5a7qiid2f71337res0/"); } function decimals() public view virtual returns (uint8) { return 0; } receive() external virtual payable { } fallback() external virtual payable { } /* withdraw all eth from owner */ function withdrawAll() public onlyOwner { uint256 _amount = address(this).balance; payable(_msgSender()).transfer(_amount); emit WithdrawEth(_msgSender(), _amount); } modifier canMint(uint8 _number) { require(_number <= maxMintingPerTime, "exceed the max minting limit per time"); require (_tokenIds.current() + _number <= totalSupply, "exceed the max supply limit"); _; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function currentMinted() external view returns(uint) { return _tokenIds.current(); } /* rewrite tokenURI function */ function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721URIStorage: URI query for nonexistent token"); if (bytes(_tokenURIs[_tokenId]).length > 0) { return string(abi.encodePacked("ipfs://", _tokenURIs[_tokenId])); } else if (bytes(_baseTokenURI).length > 0) { return string(abi.encodePacked(_baseTokenURI, _tokenId.toString())); } else { return super.tokenURI(_tokenId); } } /* Allow the owner set how max minting per time */ function setMaxMintingPerTime(uint8 _maxMintingPerTime) public onlyOwner { maxMintingPerTime = _maxMintingPerTime; emit SetMaxMintingPerTime(maxMintingPerTime); } /* Allow the owner set the base token uri */ function setBaseURI(string memory _baseTokenURI_) public onlyOwner { _baseTokenURI = _baseTokenURI_; } /* The owner can set tokenURI if it's error */ function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner { super._setTokenURI(_tokenId, _tokenURI); } // when _howManyMEth = 1, it's 0.001 ETH function setNftCost(uint256 _howManyMEth) external onlyOwner { nftCost = _howManyMEth * 10 ** 15; } /* Mint to users address, everyone can do, minting number cannot exceed 255 */ function mint(uint8 _number) external payable canMint(_number) returns (bool) { require(msg.value >= (nftCost * _number), "Low Price"); for (uint8 i= 0; i < _number; i++) { uint256 tokenID = _tokenIds.current(); _safeMint(_msgSender(), tokenID); _tokenIds.increment(); } return true; } /* Mint to the special address, only the owner can do, minting number cannot exceed 255 */ function mintByOwner(address _addr, uint8 _number) external onlyOwner returns (bool) { require(_number <= 255, "exceed the max minting limit per time"); require (_tokenIds.current() + _number <= totalSupply, "exceed the max supply limit"); for (uint8 i= 0; i < _number; i++) { uint256 tokenID = _tokenIds.current(); _safeMint(_addr, tokenID); _tokenIds.increment(); } return true; } /* Batch Mint to different address in one time, NOTE: The max address count cannot excced 255, Only owner can do this */ function batchMintByOwner(address[] memory _addrs) external onlyOwner { uint8 _number = uint8(_addrs.length); require(_number <= 255, "exceed the max minting limit per time"); for (uint8 i = 0; i < _addrs.length; i++) { uint256 tokenID = _tokenIds.current(); _safeMint(_addrs[i], tokenID); _tokenIds.increment(); } emit BatchMint(_msgSender(), _addrs.length); } }
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":"_whoDone","type":"address"},{"indexed":false,"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"BatchMint","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":false,"internalType":"uint8","name":"maxMintingPerTime","type":"uint8"}],"name":"SetMaxMintingPerTime","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ethWei","type":"uint256"}],"name":"WithdrawEth","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"batchMintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintingPerTime","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_number","type":"uint8"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint8","name":"_number","type":"uint8"}],"name":"mintByOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxMintingPerTime","type":"uint8"}],"name":"setMaxMintingPerTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howManyMEth","type":"uint256"}],"name":"setNftCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052668e1bc9bf0400006009553480156200001c57600080fd5b506040518060400160405280601981526020017f5468652042696c6c696f6e6169726520446f676520436c7562000000000000008152506040518060400160405280600381526020017f42444300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a1929190620003c1565b508060019080519060200190620000ba929190620003c1565b505050620000dd620000d16200012960201b60201c565b6200013160201b60201c565b61271060808181525050620000f9600a620001f760201b60201c565b620001236040518060800160405280605a81526020016200486b605a9139620002ec60201b60201c565b62000594565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002076200012960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200022d6200039760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027d90620004a9565b60405180910390fd5b80600760146101000a81548160ff021916908360ff1602179055507fb0a8cfee9ae0a95a4467c4a0c7b8360c77f96beebcb9d25d8472ce9f4500a137600760149054906101000a900460ff16604051620002e19190620004cb565b60405180910390a150565b620002fc6200012960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003226200039760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037290620004a9565b60405180910390fd5b806008908051906020019062000393929190620003c1565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003cf9062000506565b90600052602060002090601f016020900481019282620003f357600085556200043f565b82601f106200040e57805160ff19168380011785556200043f565b828001600101855582156200043f579182015b828111156200043e57825182559160200191906001019062000421565b5b5090506200044e919062000452565b5090565b5b808211156200046d57600081600090555060010162000453565b5090565b600062000480602083620004e8565b91506200048d826200056b565b602082019050919050565b620004a381620004f9565b82525050565b60006020820190508181036000830152620004c48162000471565b9050919050565b6000602082019050620004e2600083018462000498565b92915050565b600082825260208201905092915050565b600060ff82169050919050565b600060028204905060018216806200051f57607f821691505b602082108114156200053657620005356200053c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6080516142ad620005be60003960008181610a9001528181610cdc015261112e01526142ad6000f3fe6080604052600436106101c65760003560e01c8063853828b6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610639578063f2fde38b14610676578063f606faea1461069f578063fdd2069e146106c8576101cd565b8063b88d4fde1461057f578063c87b56dd146105a8578063da80e59b146105e5578063e28de0f914610610576101cd565b806391ff3f44116100d157806391ff3f44146104d757806395d89b4114610500578063a22cb4651461052b578063b83855af14610554576101cd565b8063853828b6146104585780638d4dfb8a1461046f5780638da5cb5b146104ac576101cd565b8063313ce567116101645780636352211e1161013e5780636352211e146103975780636ecd2306146103d457806370a0823114610404578063715018a614610441576101cd565b8063313ce5671461031a57806342842e0e1461034557806355f804b31461036e576101cd565b8063095ea7b3116101a0578063095ea7b314610274578063162094c41461029d57806318160ddd146102c657806323b872dd146102f1576101cd565b806301ffc9a7146101cf57806306fdde031461020c578063081812fc14610237576101cd565b366101cd57005b005b3480156101db57600080fd5b506101f660048036038101906101f19190612da8565b6106f3565b6040516102039190613432565b60405180910390f35b34801561021857600080fd5b506102216107d5565b60405161022e919061344d565b60405180910390f35b34801561024357600080fd5b5061025e60048036038101906102599190612e4b565b610867565b60405161026b91906133cb565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612cdf565b6108ec565b005b3480156102a957600080fd5b506102c460048036038101906102bf9190612e78565b610a04565b005b3480156102d257600080fd5b506102db610a8e565b6040516102e8919061370f565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190612bc9565b610ab2565b005b34801561032657600080fd5b5061032f610b12565b60405161033c919061372a565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612bc9565b610b17565b005b34801561037a57600080fd5b5061039560048036038101906103909190612e02565b610b37565b005b3480156103a357600080fd5b506103be60048036038101906103b99190612e4b565b610bcd565b6040516103cb91906133cb565b60405180910390f35b6103ee60048036038101906103e99190612ed4565b610c7f565b6040516103fb9190613432565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612b5c565b610e00565b604051610438919061370f565b60405180910390f35b34801561044d57600080fd5b50610456610eb8565b005b34801561046457600080fd5b5061046d610f40565b005b34801561047b57600080fd5b5061049660048036038101906104919190612d1f565b611067565b6040516104a39190613432565b60405180910390f35b3480156104b857600080fd5b506104c16111f8565b6040516104ce91906133cb565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612d5f565b611222565b005b34801561050c57600080fd5b506105156113a8565b604051610522919061344d565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612c9f565b61143a565b005b34801561056057600080fd5b506105696115bb565b604051610576919061370f565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190612c1c565b6115cc565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612e4b565b61162e565b6040516105dc919061344d565b60405180910390f35b3480156105f157600080fd5b506105fa611733565b604051610607919061370f565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612ed4565b611739565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b89565b611819565b60405161066d9190613432565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612b5c565b6118ad565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612e4b565b6119a5565b005b3480156106d457600080fd5b506106dd611a3d565b6040516106ea919061372a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ce57506107cd82611a50565b5b9050919050565b6060600080546107e490613a28565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613a28565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611aba565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061362f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610bcd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f906136af565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611b26565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611b26565b611819565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061354f565b60405180910390fd5b6109ff8383611b2e565b505050565b610a0c611b26565b73ffffffffffffffffffffffffffffffffffffffff16610a2a6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a779061364f565b60405180910390fd5b610a8a8282611be7565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610ac3610abd611b26565b82611c5b565b610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906136ef565b60405180910390fd5b610b0d838383611d39565b505050565b600090565b610b32838383604051806020016040528060008152506115cc565b505050565b610b3f611b26565b73ffffffffffffffffffffffffffffffffffffffff16610b5d6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061364f565b60405180910390fd5b8060089080519060200190610bc99291906128bd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d906135af565b60405180910390fd5b80915050919050565b600081600760149054906101000a900460ff1660ff168160ff161115610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906136cf565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008160ff16610d09600a611f95565b610d139190613850565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b9061356f565b60405180910390fd5b8260ff16600954610d6591906138d7565b341015610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e9061346f565b60405180910390fd5b60005b8360ff168160ff161015610df5576000610dc4600a611f95565b9050610dd7610dd1611b26565b82611fa3565b610de1600a611fc1565b508080610ded90613ad4565b915050610daa565b506001915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e689061358f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec0611b26565b73ffffffffffffffffffffffffffffffffffffffff16610ede6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b9061364f565b60405180910390fd5b610f3e6000611fd7565b565b610f48611b26565b73ffffffffffffffffffffffffffffffffffffffff16610f666111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb39061364f565b60405180910390fd5b6000479050610fc9611b26565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100e573d6000803e3d6000fd5b50611017611b26565b73ffffffffffffffffffffffffffffffffffffffff167fccbd99ba6da8f29b2a4f65e474e3c3973564d356c162c08d45f3dc7f0cb5b3aa8260405161105c919061370f565b60405180910390a250565b6000611071611b26565b73ffffffffffffffffffffffffffffffffffffffff1661108f6111f8565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061364f565b60405180910390fd5b60ff8260ff16111561112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906136cf565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008260ff1661115b600a611f95565b6111659190613850565b11156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d9061356f565b60405180910390fd5b60005b8260ff168160ff1610156111ed5760006111c3600a611f95565b90506111cf8582611fa3565b6111d9600a611fc1565b5080806111e590613ad4565b9150506111a9565b506001905092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122a611b26565b73ffffffffffffffffffffffffffffffffffffffff166112486111f8565b73ffffffffffffffffffffffffffffffffffffffff161461129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112959061364f565b60405180910390fd5b60008151905060ff8160ff1611156112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e2906136cf565b60405180910390fd5b60005b82518160ff16101561134d576000611306600a611f95565b905061132f848360ff168151811061132157611320613bbc565b5b602002602001015182611fa3565b611339600a611fc1565b50808061134590613ad4565b9150506112ee565b50611356611b26565b73ffffffffffffffffffffffffffffffffffffffff167f4b6dcabdeaeb0ec6121e2e093c11a74bd84844268dc1131fd8ba3b363a82d7e8835160405161139c919061370f565b60405180910390a25050565b6060600180546113b790613a28565b80601f01602080910402602001604051908101604052809291908181526020018280546113e390613a28565b80156114305780601f1061140557610100808354040283529160200191611430565b820191906000526020600020905b81548152906001019060200180831161141357829003601f168201915b5050505050905090565b611442611b26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a79061350f565b60405180910390fd5b80600560006114bd611b26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156a611b26565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115af9190613432565b60405180910390a35050565b60006115c7600a611f95565b905090565b6115dd6115d7611b26565b83611c5b565b61161c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611613906136ef565b60405180910390fd5b6116288484848461209d565b50505050565b606061163982611aba565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f9061360f565b60405180910390fd5b600060066000848152602001908152602001600020805461169890613a28565b905011156116d957600660008381526020019081526020016000206040516020016116c391906133a9565b604051602081830303815290604052905061172e565b6000600880546116e890613a28565b905011156117225760086116fb836120f9565b60405160200161170c929190613385565b604051602081830303815290604052905061172e565b61172b8261225a565b90505b919050565b60095481565b611741611b26565b73ffffffffffffffffffffffffffffffffffffffff1661175f6111f8565b73ffffffffffffffffffffffffffffffffffffffff16146117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac9061364f565b60405180910390fd5b80600760146101000a81548160ff021916908360ff1602179055507fb0a8cfee9ae0a95a4467c4a0c7b8360c77f96beebcb9d25d8472ce9f4500a137600760149054906101000a900460ff1660405161180e919061372a565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b5611b26565b73ffffffffffffffffffffffffffffffffffffffff166118d36111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119209061364f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611990906134af565b60405180910390fd5b6119a281611fd7565b50565b6119ad611b26565b73ffffffffffffffffffffffffffffffffffffffff166119cb6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a189061364f565b60405180910390fd5b66038d7ea4c6800081611a3491906138d7565b60098190555050565b600760149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ba183610bcd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611bf082611aba565b611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906135cf565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611c569291906128bd565b505050565b6000611c6682611aba565b611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c9061352f565b60405180910390fd5b6000611cb083610bcd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1f57508373ffffffffffffffffffffffffffffffffffffffff16611d0784610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d305750611d2f8185611819565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d5982610bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061366f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906134ef565b60405180910390fd5b611e2a8383836123ac565b611e35600082611b2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e859190613931565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611edc9190613850565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b611fbd8282604051806020016040528060008152506123b1565b5050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120a8848484611d39565b6120b48484848461240c565b6120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea9061348f565b60405180910390fd5b50505050565b60606000821415612141576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612255565b600082905060005b6000821461217357808061215c90613a8b565b915050600a8261216c91906138a6565b9150612149565b60008167ffffffffffffffff81111561218f5761218e613beb565b5b6040519080825280601f01601f1916602001820160405280156121c15781602001600182028036833780820191505090505b5090505b6000851461224e576001826121da9190613931565b9150600a856121e99190613afe565b60306121f59190613850565b60f81b81838151811061220b5761220a613bbc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561224791906138a6565b94506121c5565b8093505050505b919050565b606061226582611aba565b6122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b9061360f565b60405180910390fd5b60006006600084815260200190815260200160002080546122c490613a28565b80601f01602080910402602001604051908101604052809291908181526020018280546122f090613a28565b801561233d5780601f106123125761010080835404028352916020019161233d565b820191906000526020600020905b81548152906001019060200180831161232057829003601f168201915b50505050509050600061234e6125a3565b90506000815114156123645781925050506123a7565b600082511115612399578082604051602001612381929190613361565b604051602081830303815290604052925050506123a7565b6123a284612635565b925050505b919050565b505050565b6123bb83836126dc565b6123c8600084848461240c565b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe9061348f565b60405180910390fd5b505050565b600061242d8473ffffffffffffffffffffffffffffffffffffffff166128aa565b15612596578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612456611b26565b8786866040518563ffffffff1660e01b815260040161247894939291906133e6565b602060405180830381600087803b15801561249257600080fd5b505af19250505080156124c357506040513d601f19601f820116820180604052508101906124c09190612dd5565b60015b612546573d80600081146124f3576040519150601f19603f3d011682016040523d82523d6000602084013e6124f8565b606091505b5060008151141561253e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125359061348f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061259b565b600190505b949350505050565b6060600880546125b290613a28565b80601f01602080910402602001604051908101604052809291908181526020018280546125de90613a28565b801561262b5780601f106126005761010080835404028352916020019161262b565b820191906000526020600020905b81548152906001019060200180831161260e57829003601f168201915b5050505050905090565b606061264082611aba565b61267f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126769061368f565b60405180910390fd5b60006126896125a3565b905060008151116126a957604051806020016040528060008152506126d4565b806126b3846120f9565b6040516020016126c4929190613361565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561274c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612743906135ef565b60405180910390fd5b61275581611aba565b15612795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c906134cf565b60405180910390fd5b6127a1600083836123ac565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f19190613850565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546128c990613a28565b90600052602060002090601f0160209004810192826128eb5760008555612932565b82601f1061290457805160ff1916838001178555612932565b82800160010185558215612932579182015b82811115612931578251825591602001919060010190612916565b5b50905061293f9190612943565b5090565b5b8082111561295c576000816000905550600101612944565b5090565b600061297361296e8461376a565b613745565b9050808382526020820190508285602086028201111561299657612995613c1f565b5b60005b858110156129c657816129ac8882612a54565b845260208401935060208301925050600181019050612999565b5050509392505050565b60006129e36129de84613796565b613745565b9050828152602081018484840111156129ff576129fe613c24565b5b612a0a8482856139e6565b509392505050565b6000612a25612a20846137c7565b613745565b905082815260208101848484011115612a4157612a40613c24565b5b612a4c8482856139e6565b509392505050565b600081359050612a6381614204565b92915050565b600082601f830112612a7e57612a7d613c1a565b5b8135612a8e848260208601612960565b91505092915050565b600081359050612aa68161421b565b92915050565b600081359050612abb81614232565b92915050565b600081519050612ad081614232565b92915050565b600082601f830112612aeb57612aea613c1a565b5b8135612afb8482602086016129d0565b91505092915050565b600082601f830112612b1957612b18613c1a565b5b8135612b29848260208601612a12565b91505092915050565b600081359050612b4181614249565b92915050565b600081359050612b5681614260565b92915050565b600060208284031215612b7257612b71613c2e565b5b6000612b8084828501612a54565b91505092915050565b60008060408385031215612ba057612b9f613c2e565b5b6000612bae85828601612a54565b9250506020612bbf85828601612a54565b9150509250929050565b600080600060608486031215612be257612be1613c2e565b5b6000612bf086828701612a54565b9350506020612c0186828701612a54565b9250506040612c1286828701612b32565b9150509250925092565b60008060008060808587031215612c3657612c35613c2e565b5b6000612c4487828801612a54565b9450506020612c5587828801612a54565b9350506040612c6687828801612b32565b925050606085013567ffffffffffffffff811115612c8757612c86613c29565b5b612c9387828801612ad6565b91505092959194509250565b60008060408385031215612cb657612cb5613c2e565b5b6000612cc485828601612a54565b9250506020612cd585828601612a97565b9150509250929050565b60008060408385031215612cf657612cf5613c2e565b5b6000612d0485828601612a54565b9250506020612d1585828601612b32565b9150509250929050565b60008060408385031215612d3657612d35613c2e565b5b6000612d4485828601612a54565b9250506020612d5585828601612b47565b9150509250929050565b600060208284031215612d7557612d74613c2e565b5b600082013567ffffffffffffffff811115612d9357612d92613c29565b5b612d9f84828501612a69565b91505092915050565b600060208284031215612dbe57612dbd613c2e565b5b6000612dcc84828501612aac565b91505092915050565b600060208284031215612deb57612dea613c2e565b5b6000612df984828501612ac1565b91505092915050565b600060208284031215612e1857612e17613c2e565b5b600082013567ffffffffffffffff811115612e3657612e35613c29565b5b612e4284828501612b04565b91505092915050565b600060208284031215612e6157612e60613c2e565b5b6000612e6f84828501612b32565b91505092915050565b60008060408385031215612e8f57612e8e613c2e565b5b6000612e9d85828601612b32565b925050602083013567ffffffffffffffff811115612ebe57612ebd613c29565b5b612eca85828601612b04565b9150509250929050565b600060208284031215612eea57612ee9613c2e565b5b6000612ef884828501612b47565b91505092915050565b612f0a81613965565b82525050565b612f1981613977565b82525050565b6000612f2a8261380d565b612f348185613823565b9350612f448185602086016139f5565b612f4d81613c33565b840191505092915050565b6000612f6382613818565b612f6d8185613834565b9350612f7d8185602086016139f5565b612f8681613c33565b840191505092915050565b6000612f9c82613818565b612fa68185613845565b9350612fb68185602086016139f5565b80840191505092915050565b60008154612fcf81613a28565b612fd98186613845565b94506001821660008114612ff4576001811461300557613038565b60ff19831686528186019350613038565b61300e856137f8565b60005b8381101561303057815481890152600182019150602081019050613011565b838801955050505b50505092915050565b600061304e600983613834565b915061305982613c44565b602082019050919050565b6000613071603283613834565b915061307c82613c6d565b604082019050919050565b6000613094602683613834565b915061309f82613cbc565b604082019050919050565b60006130b7601c83613834565b91506130c282613d0b565b602082019050919050565b60006130da602483613834565b91506130e582613d34565b604082019050919050565b60006130fd601983613834565b915061310882613d83565b602082019050919050565b6000613120602c83613834565b915061312b82613dac565b604082019050919050565b6000613143600783613845565b915061314e82613dfb565b600782019050919050565b6000613166603883613834565b915061317182613e24565b604082019050919050565b6000613189601b83613834565b915061319482613e73565b602082019050919050565b60006131ac602a83613834565b91506131b782613e9c565b604082019050919050565b60006131cf602983613834565b91506131da82613eeb565b604082019050919050565b60006131f2602e83613834565b91506131fd82613f3a565b604082019050919050565b6000613215602083613834565b915061322082613f89565b602082019050919050565b6000613238603183613834565b915061324382613fb2565b604082019050919050565b600061325b602c83613834565b915061326682614001565b604082019050919050565b600061327e602083613834565b915061328982614050565b602082019050919050565b60006132a1602983613834565b91506132ac82614079565b604082019050919050565b60006132c4602f83613834565b91506132cf826140c8565b604082019050919050565b60006132e7602183613834565b91506132f282614117565b604082019050919050565b600061330a602583613834565b915061331582614166565b604082019050919050565b600061332d603183613834565b9150613338826141b5565b604082019050919050565b61334c816139cf565b82525050565b61335b816139d9565b82525050565b600061336d8285612f91565b91506133798284612f91565b91508190509392505050565b60006133918285612fc2565b915061339d8284612f91565b91508190509392505050565b60006133b482613136565b91506133c08284612fc2565b915081905092915050565b60006020820190506133e06000830184612f01565b92915050565b60006080820190506133fb6000830187612f01565b6134086020830186612f01565b6134156040830185613343565b81810360608301526134278184612f1f565b905095945050505050565b60006020820190506134476000830184612f10565b92915050565b600060208201905081810360008301526134678184612f58565b905092915050565b6000602082019050818103600083015261348881613041565b9050919050565b600060208201905081810360008301526134a881613064565b9050919050565b600060208201905081810360008301526134c881613087565b9050919050565b600060208201905081810360008301526134e8816130aa565b9050919050565b60006020820190508181036000830152613508816130cd565b9050919050565b60006020820190508181036000830152613528816130f0565b9050919050565b6000602082019050818103600083015261354881613113565b9050919050565b6000602082019050818103600083015261356881613159565b9050919050565b600060208201905081810360008301526135888161317c565b9050919050565b600060208201905081810360008301526135a88161319f565b9050919050565b600060208201905081810360008301526135c8816131c2565b9050919050565b600060208201905081810360008301526135e8816131e5565b9050919050565b6000602082019050818103600083015261360881613208565b9050919050565b600060208201905081810360008301526136288161322b565b9050919050565b600060208201905081810360008301526136488161324e565b9050919050565b6000602082019050818103600083015261366881613271565b9050919050565b6000602082019050818103600083015261368881613294565b9050919050565b600060208201905081810360008301526136a8816132b7565b9050919050565b600060208201905081810360008301526136c8816132da565b9050919050565b600060208201905081810360008301526136e8816132fd565b9050919050565b6000602082019050818103600083015261370881613320565b9050919050565b60006020820190506137246000830184613343565b92915050565b600060208201905061373f6000830184613352565b92915050565b600061374f613760565b905061375b8282613a5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561378557613784613beb565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137b1576137b0613beb565b5b6137ba82613c33565b9050602081019050919050565b600067ffffffffffffffff8211156137e2576137e1613beb565b5b6137eb82613c33565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061385b826139cf565b9150613866836139cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561389b5761389a613b2f565b5b828201905092915050565b60006138b1826139cf565b91506138bc836139cf565b9250826138cc576138cb613b5e565b5b828204905092915050565b60006138e2826139cf565b91506138ed836139cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392657613925613b2f565b5b828202905092915050565b600061393c826139cf565b9150613947836139cf565b92508282101561395a57613959613b2f565b5b828203905092915050565b6000613970826139af565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a135780820151818401526020810190506139f8565b83811115613a22576000848401525b50505050565b60006002820490506001821680613a4057607f821691505b60208210811415613a5457613a53613b8d565b5b50919050565b613a6382613c33565b810181811067ffffffffffffffff82111715613a8257613a81613beb565b5b80604052505050565b6000613a96826139cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ac957613ac8613b2f565b5b600182019050919050565b6000613adf826139d9565b915060ff821415613af357613af2613b2f565b5b600182019050919050565b6000613b09826139cf565b9150613b14836139cf565b925082613b2457613b23613b5e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4c6f772050726963650000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f65786365656420746865206d617820737570706c79206c696d69740000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f65786365656420746865206d6178206d696e74696e67206c696d69742070657260008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61420d81613965565b811461421857600080fd5b50565b61422481613977565b811461422f57600080fd5b50565b61423b81613983565b811461424657600080fd5b50565b614252816139cf565b811461425d57600080fd5b50565b614269816139d9565b811461427457600080fd5b5056fea2646970667358221220777fa456773e3567d01c0e9a0bae247fe9197d904b87a2bba3d3749142fb2fdb64736f6c6343000807003368747470733a2f2f636c6f7564666c6172652d697066732e636f6d2f69706e732f6b326b3472386d62707272633633366978376d736c6264386f73753363657177776767746f693561377169696432663731333337726573302f
Deployed Bytecode
0x6080604052600436106101c65760003560e01c8063853828b6116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610639578063f2fde38b14610676578063f606faea1461069f578063fdd2069e146106c8576101cd565b8063b88d4fde1461057f578063c87b56dd146105a8578063da80e59b146105e5578063e28de0f914610610576101cd565b806391ff3f44116100d157806391ff3f44146104d757806395d89b4114610500578063a22cb4651461052b578063b83855af14610554576101cd565b8063853828b6146104585780638d4dfb8a1461046f5780638da5cb5b146104ac576101cd565b8063313ce567116101645780636352211e1161013e5780636352211e146103975780636ecd2306146103d457806370a0823114610404578063715018a614610441576101cd565b8063313ce5671461031a57806342842e0e1461034557806355f804b31461036e576101cd565b8063095ea7b3116101a0578063095ea7b314610274578063162094c41461029d57806318160ddd146102c657806323b872dd146102f1576101cd565b806301ffc9a7146101cf57806306fdde031461020c578063081812fc14610237576101cd565b366101cd57005b005b3480156101db57600080fd5b506101f660048036038101906101f19190612da8565b6106f3565b6040516102039190613432565b60405180910390f35b34801561021857600080fd5b506102216107d5565b60405161022e919061344d565b60405180910390f35b34801561024357600080fd5b5061025e60048036038101906102599190612e4b565b610867565b60405161026b91906133cb565b60405180910390f35b34801561028057600080fd5b5061029b60048036038101906102969190612cdf565b6108ec565b005b3480156102a957600080fd5b506102c460048036038101906102bf9190612e78565b610a04565b005b3480156102d257600080fd5b506102db610a8e565b6040516102e8919061370f565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190612bc9565b610ab2565b005b34801561032657600080fd5b5061032f610b12565b60405161033c919061372a565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190612bc9565b610b17565b005b34801561037a57600080fd5b5061039560048036038101906103909190612e02565b610b37565b005b3480156103a357600080fd5b506103be60048036038101906103b99190612e4b565b610bcd565b6040516103cb91906133cb565b60405180910390f35b6103ee60048036038101906103e99190612ed4565b610c7f565b6040516103fb9190613432565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612b5c565b610e00565b604051610438919061370f565b60405180910390f35b34801561044d57600080fd5b50610456610eb8565b005b34801561046457600080fd5b5061046d610f40565b005b34801561047b57600080fd5b5061049660048036038101906104919190612d1f565b611067565b6040516104a39190613432565b60405180910390f35b3480156104b857600080fd5b506104c16111f8565b6040516104ce91906133cb565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190612d5f565b611222565b005b34801561050c57600080fd5b506105156113a8565b604051610522919061344d565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612c9f565b61143a565b005b34801561056057600080fd5b506105696115bb565b604051610576919061370f565b60405180910390f35b34801561058b57600080fd5b506105a660048036038101906105a19190612c1c565b6115cc565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612e4b565b61162e565b6040516105dc919061344d565b60405180910390f35b3480156105f157600080fd5b506105fa611733565b604051610607919061370f565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612ed4565b611739565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b89565b611819565b60405161066d9190613432565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612b5c565b6118ad565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190612e4b565b6119a5565b005b3480156106d457600080fd5b506106dd611a3d565b6040516106ea919061372a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107be57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ce57506107cd82611a50565b5b9050919050565b6060600080546107e490613a28565b80601f016020809104026020016040519081016040528092919081815260200182805461081090613a28565b801561085d5780601f106108325761010080835404028352916020019161085d565b820191906000526020600020905b81548152906001019060200180831161084057829003601f168201915b5050505050905090565b600061087282611aba565b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061362f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108f782610bcd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f906136af565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611b26565b73ffffffffffffffffffffffffffffffffffffffff1614806109b657506109b5816109b0611b26565b611819565b5b6109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec9061354f565b60405180910390fd5b6109ff8383611b2e565b505050565b610a0c611b26565b73ffffffffffffffffffffffffffffffffffffffff16610a2a6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a779061364f565b60405180910390fd5b610a8a8282611be7565b5050565b7f000000000000000000000000000000000000000000000000000000000000271081565b610ac3610abd611b26565b82611c5b565b610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906136ef565b60405180910390fd5b610b0d838383611d39565b505050565b600090565b610b32838383604051806020016040528060008152506115cc565b505050565b610b3f611b26565b73ffffffffffffffffffffffffffffffffffffffff16610b5d6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa9061364f565b60405180910390fd5b8060089080519060200190610bc99291906128bd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d906135af565b60405180910390fd5b80915050919050565b600081600760149054906101000a900460ff1660ff168160ff161115610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd1906136cf565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000027108160ff16610d09600a611f95565b610d139190613850565b1115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b9061356f565b60405180910390fd5b8260ff16600954610d6591906138d7565b341015610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e9061346f565b60405180910390fd5b60005b8360ff168160ff161015610df5576000610dc4600a611f95565b9050610dd7610dd1611b26565b82611fa3565b610de1600a611fc1565b508080610ded90613ad4565b915050610daa565b506001915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e689061358f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ec0611b26565b73ffffffffffffffffffffffffffffffffffffffff16610ede6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b9061364f565b60405180910390fd5b610f3e6000611fd7565b565b610f48611b26565b73ffffffffffffffffffffffffffffffffffffffff16610f666111f8565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb39061364f565b60405180910390fd5b6000479050610fc9611b26565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561100e573d6000803e3d6000fd5b50611017611b26565b73ffffffffffffffffffffffffffffffffffffffff167fccbd99ba6da8f29b2a4f65e474e3c3973564d356c162c08d45f3dc7f0cb5b3aa8260405161105c919061370f565b60405180910390a250565b6000611071611b26565b73ffffffffffffffffffffffffffffffffffffffff1661108f6111f8565b73ffffffffffffffffffffffffffffffffffffffff16146110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc9061364f565b60405180910390fd5b60ff8260ff16111561112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906136cf565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000027108260ff1661115b600a611f95565b6111659190613850565b11156111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d9061356f565b60405180910390fd5b60005b8260ff168160ff1610156111ed5760006111c3600a611f95565b90506111cf8582611fa3565b6111d9600a611fc1565b5080806111e590613ad4565b9150506111a9565b506001905092915050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122a611b26565b73ffffffffffffffffffffffffffffffffffffffff166112486111f8565b73ffffffffffffffffffffffffffffffffffffffff161461129e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112959061364f565b60405180910390fd5b60008151905060ff8160ff1611156112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e2906136cf565b60405180910390fd5b60005b82518160ff16101561134d576000611306600a611f95565b905061132f848360ff168151811061132157611320613bbc565b5b602002602001015182611fa3565b611339600a611fc1565b50808061134590613ad4565b9150506112ee565b50611356611b26565b73ffffffffffffffffffffffffffffffffffffffff167f4b6dcabdeaeb0ec6121e2e093c11a74bd84844268dc1131fd8ba3b363a82d7e8835160405161139c919061370f565b60405180910390a25050565b6060600180546113b790613a28565b80601f01602080910402602001604051908101604052809291908181526020018280546113e390613a28565b80156114305780601f1061140557610100808354040283529160200191611430565b820191906000526020600020905b81548152906001019060200180831161141357829003601f168201915b5050505050905090565b611442611b26565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a79061350f565b60405180910390fd5b80600560006114bd611b26565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661156a611b26565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115af9190613432565b60405180910390a35050565b60006115c7600a611f95565b905090565b6115dd6115d7611b26565b83611c5b565b61161c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611613906136ef565b60405180910390fd5b6116288484848461209d565b50505050565b606061163982611aba565b611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f9061360f565b60405180910390fd5b600060066000848152602001908152602001600020805461169890613a28565b905011156116d957600660008381526020019081526020016000206040516020016116c391906133a9565b604051602081830303815290604052905061172e565b6000600880546116e890613a28565b905011156117225760086116fb836120f9565b60405160200161170c929190613385565b604051602081830303815290604052905061172e565b61172b8261225a565b90505b919050565b60095481565b611741611b26565b73ffffffffffffffffffffffffffffffffffffffff1661175f6111f8565b73ffffffffffffffffffffffffffffffffffffffff16146117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac9061364f565b60405180910390fd5b80600760146101000a81548160ff021916908360ff1602179055507fb0a8cfee9ae0a95a4467c4a0c7b8360c77f96beebcb9d25d8472ce9f4500a137600760149054906101000a900460ff1660405161180e919061372a565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118b5611b26565b73ffffffffffffffffffffffffffffffffffffffff166118d36111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119209061364f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611990906134af565b60405180910390fd5b6119a281611fd7565b50565b6119ad611b26565b73ffffffffffffffffffffffffffffffffffffffff166119cb6111f8565b73ffffffffffffffffffffffffffffffffffffffff1614611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a189061364f565b60405180910390fd5b66038d7ea4c6800081611a3491906138d7565b60098190555050565b600760149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ba183610bcd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611bf082611aba565b611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906135cf565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611c569291906128bd565b505050565b6000611c6682611aba565b611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c9061352f565b60405180910390fd5b6000611cb083610bcd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d1f57508373ffffffffffffffffffffffffffffffffffffffff16611d0784610867565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d305750611d2f8185611819565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d5982610bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061366f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906134ef565b60405180910390fd5b611e2a8383836123ac565b611e35600082611b2e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e859190613931565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611edc9190613850565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b611fbd8282604051806020016040528060008152506123b1565b5050565b6001816000016000828254019250508190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120a8848484611d39565b6120b48484848461240c565b6120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea9061348f565b60405180910390fd5b50505050565b60606000821415612141576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612255565b600082905060005b6000821461217357808061215c90613a8b565b915050600a8261216c91906138a6565b9150612149565b60008167ffffffffffffffff81111561218f5761218e613beb565b5b6040519080825280601f01601f1916602001820160405280156121c15781602001600182028036833780820191505090505b5090505b6000851461224e576001826121da9190613931565b9150600a856121e99190613afe565b60306121f59190613850565b60f81b81838151811061220b5761220a613bbc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561224791906138a6565b94506121c5565b8093505050505b919050565b606061226582611aba565b6122a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229b9061360f565b60405180910390fd5b60006006600084815260200190815260200160002080546122c490613a28565b80601f01602080910402602001604051908101604052809291908181526020018280546122f090613a28565b801561233d5780601f106123125761010080835404028352916020019161233d565b820191906000526020600020905b81548152906001019060200180831161232057829003601f168201915b50505050509050600061234e6125a3565b90506000815114156123645781925050506123a7565b600082511115612399578082604051602001612381929190613361565b604051602081830303815290604052925050506123a7565b6123a284612635565b925050505b919050565b505050565b6123bb83836126dc565b6123c8600084848461240c565b612407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fe9061348f565b60405180910390fd5b505050565b600061242d8473ffffffffffffffffffffffffffffffffffffffff166128aa565b15612596578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612456611b26565b8786866040518563ffffffff1660e01b815260040161247894939291906133e6565b602060405180830381600087803b15801561249257600080fd5b505af19250505080156124c357506040513d601f19601f820116820180604052508101906124c09190612dd5565b60015b612546573d80600081146124f3576040519150601f19603f3d011682016040523d82523d6000602084013e6124f8565b606091505b5060008151141561253e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125359061348f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061259b565b600190505b949350505050565b6060600880546125b290613a28565b80601f01602080910402602001604051908101604052809291908181526020018280546125de90613a28565b801561262b5780601f106126005761010080835404028352916020019161262b565b820191906000526020600020905b81548152906001019060200180831161260e57829003601f168201915b5050505050905090565b606061264082611aba565b61267f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126769061368f565b60405180910390fd5b60006126896125a3565b905060008151116126a957604051806020016040528060008152506126d4565b806126b3846120f9565b6040516020016126c4929190613361565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561274c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612743906135ef565b60405180910390fd5b61275581611aba565b15612795576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278c906134cf565b60405180910390fd5b6127a1600083836123ac565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127f19190613850565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546128c990613a28565b90600052602060002090601f0160209004810192826128eb5760008555612932565b82601f1061290457805160ff1916838001178555612932565b82800160010185558215612932579182015b82811115612931578251825591602001919060010190612916565b5b50905061293f9190612943565b5090565b5b8082111561295c576000816000905550600101612944565b5090565b600061297361296e8461376a565b613745565b9050808382526020820190508285602086028201111561299657612995613c1f565b5b60005b858110156129c657816129ac8882612a54565b845260208401935060208301925050600181019050612999565b5050509392505050565b60006129e36129de84613796565b613745565b9050828152602081018484840111156129ff576129fe613c24565b5b612a0a8482856139e6565b509392505050565b6000612a25612a20846137c7565b613745565b905082815260208101848484011115612a4157612a40613c24565b5b612a4c8482856139e6565b509392505050565b600081359050612a6381614204565b92915050565b600082601f830112612a7e57612a7d613c1a565b5b8135612a8e848260208601612960565b91505092915050565b600081359050612aa68161421b565b92915050565b600081359050612abb81614232565b92915050565b600081519050612ad081614232565b92915050565b600082601f830112612aeb57612aea613c1a565b5b8135612afb8482602086016129d0565b91505092915050565b600082601f830112612b1957612b18613c1a565b5b8135612b29848260208601612a12565b91505092915050565b600081359050612b4181614249565b92915050565b600081359050612b5681614260565b92915050565b600060208284031215612b7257612b71613c2e565b5b6000612b8084828501612a54565b91505092915050565b60008060408385031215612ba057612b9f613c2e565b5b6000612bae85828601612a54565b9250506020612bbf85828601612a54565b9150509250929050565b600080600060608486031215612be257612be1613c2e565b5b6000612bf086828701612a54565b9350506020612c0186828701612a54565b9250506040612c1286828701612b32565b9150509250925092565b60008060008060808587031215612c3657612c35613c2e565b5b6000612c4487828801612a54565b9450506020612c5587828801612a54565b9350506040612c6687828801612b32565b925050606085013567ffffffffffffffff811115612c8757612c86613c29565b5b612c9387828801612ad6565b91505092959194509250565b60008060408385031215612cb657612cb5613c2e565b5b6000612cc485828601612a54565b9250506020612cd585828601612a97565b9150509250929050565b60008060408385031215612cf657612cf5613c2e565b5b6000612d0485828601612a54565b9250506020612d1585828601612b32565b9150509250929050565b60008060408385031215612d3657612d35613c2e565b5b6000612d4485828601612a54565b9250506020612d5585828601612b47565b9150509250929050565b600060208284031215612d7557612d74613c2e565b5b600082013567ffffffffffffffff811115612d9357612d92613c29565b5b612d9f84828501612a69565b91505092915050565b600060208284031215612dbe57612dbd613c2e565b5b6000612dcc84828501612aac565b91505092915050565b600060208284031215612deb57612dea613c2e565b5b6000612df984828501612ac1565b91505092915050565b600060208284031215612e1857612e17613c2e565b5b600082013567ffffffffffffffff811115612e3657612e35613c29565b5b612e4284828501612b04565b91505092915050565b600060208284031215612e6157612e60613c2e565b5b6000612e6f84828501612b32565b91505092915050565b60008060408385031215612e8f57612e8e613c2e565b5b6000612e9d85828601612b32565b925050602083013567ffffffffffffffff811115612ebe57612ebd613c29565b5b612eca85828601612b04565b9150509250929050565b600060208284031215612eea57612ee9613c2e565b5b6000612ef884828501612b47565b91505092915050565b612f0a81613965565b82525050565b612f1981613977565b82525050565b6000612f2a8261380d565b612f348185613823565b9350612f448185602086016139f5565b612f4d81613c33565b840191505092915050565b6000612f6382613818565b612f6d8185613834565b9350612f7d8185602086016139f5565b612f8681613c33565b840191505092915050565b6000612f9c82613818565b612fa68185613845565b9350612fb68185602086016139f5565b80840191505092915050565b60008154612fcf81613a28565b612fd98186613845565b94506001821660008114612ff4576001811461300557613038565b60ff19831686528186019350613038565b61300e856137f8565b60005b8381101561303057815481890152600182019150602081019050613011565b838801955050505b50505092915050565b600061304e600983613834565b915061305982613c44565b602082019050919050565b6000613071603283613834565b915061307c82613c6d565b604082019050919050565b6000613094602683613834565b915061309f82613cbc565b604082019050919050565b60006130b7601c83613834565b91506130c282613d0b565b602082019050919050565b60006130da602483613834565b91506130e582613d34565b604082019050919050565b60006130fd601983613834565b915061310882613d83565b602082019050919050565b6000613120602c83613834565b915061312b82613dac565b604082019050919050565b6000613143600783613845565b915061314e82613dfb565b600782019050919050565b6000613166603883613834565b915061317182613e24565b604082019050919050565b6000613189601b83613834565b915061319482613e73565b602082019050919050565b60006131ac602a83613834565b91506131b782613e9c565b604082019050919050565b60006131cf602983613834565b91506131da82613eeb565b604082019050919050565b60006131f2602e83613834565b91506131fd82613f3a565b604082019050919050565b6000613215602083613834565b915061322082613f89565b602082019050919050565b6000613238603183613834565b915061324382613fb2565b604082019050919050565b600061325b602c83613834565b915061326682614001565b604082019050919050565b600061327e602083613834565b915061328982614050565b602082019050919050565b60006132a1602983613834565b91506132ac82614079565b604082019050919050565b60006132c4602f83613834565b91506132cf826140c8565b604082019050919050565b60006132e7602183613834565b91506132f282614117565b604082019050919050565b600061330a602583613834565b915061331582614166565b604082019050919050565b600061332d603183613834565b9150613338826141b5565b604082019050919050565b61334c816139cf565b82525050565b61335b816139d9565b82525050565b600061336d8285612f91565b91506133798284612f91565b91508190509392505050565b60006133918285612fc2565b915061339d8284612f91565b91508190509392505050565b60006133b482613136565b91506133c08284612fc2565b915081905092915050565b60006020820190506133e06000830184612f01565b92915050565b60006080820190506133fb6000830187612f01565b6134086020830186612f01565b6134156040830185613343565b81810360608301526134278184612f1f565b905095945050505050565b60006020820190506134476000830184612f10565b92915050565b600060208201905081810360008301526134678184612f58565b905092915050565b6000602082019050818103600083015261348881613041565b9050919050565b600060208201905081810360008301526134a881613064565b9050919050565b600060208201905081810360008301526134c881613087565b9050919050565b600060208201905081810360008301526134e8816130aa565b9050919050565b60006020820190508181036000830152613508816130cd565b9050919050565b60006020820190508181036000830152613528816130f0565b9050919050565b6000602082019050818103600083015261354881613113565b9050919050565b6000602082019050818103600083015261356881613159565b9050919050565b600060208201905081810360008301526135888161317c565b9050919050565b600060208201905081810360008301526135a88161319f565b9050919050565b600060208201905081810360008301526135c8816131c2565b9050919050565b600060208201905081810360008301526135e8816131e5565b9050919050565b6000602082019050818103600083015261360881613208565b9050919050565b600060208201905081810360008301526136288161322b565b9050919050565b600060208201905081810360008301526136488161324e565b9050919050565b6000602082019050818103600083015261366881613271565b9050919050565b6000602082019050818103600083015261368881613294565b9050919050565b600060208201905081810360008301526136a8816132b7565b9050919050565b600060208201905081810360008301526136c8816132da565b9050919050565b600060208201905081810360008301526136e8816132fd565b9050919050565b6000602082019050818103600083015261370881613320565b9050919050565b60006020820190506137246000830184613343565b92915050565b600060208201905061373f6000830184613352565b92915050565b600061374f613760565b905061375b8282613a5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561378557613784613beb565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156137b1576137b0613beb565b5b6137ba82613c33565b9050602081019050919050565b600067ffffffffffffffff8211156137e2576137e1613beb565b5b6137eb82613c33565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061385b826139cf565b9150613866836139cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561389b5761389a613b2f565b5b828201905092915050565b60006138b1826139cf565b91506138bc836139cf565b9250826138cc576138cb613b5e565b5b828204905092915050565b60006138e2826139cf565b91506138ed836139cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392657613925613b2f565b5b828202905092915050565b600061393c826139cf565b9150613947836139cf565b92508282101561395a57613959613b2f565b5b828203905092915050565b6000613970826139af565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a135780820151818401526020810190506139f8565b83811115613a22576000848401525b50505050565b60006002820490506001821680613a4057607f821691505b60208210811415613a5457613a53613b8d565b5b50919050565b613a6382613c33565b810181811067ffffffffffffffff82111715613a8257613a81613beb565b5b80604052505050565b6000613a96826139cf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ac957613ac8613b2f565b5b600182019050919050565b6000613adf826139d9565b915060ff821415613af357613af2613b2f565b5b600182019050919050565b6000613b09826139cf565b9150613b14836139cf565b925082613b2457613b23613b5e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4c6f772050726963650000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f65786365656420746865206d617820737570706c79206c696d69740000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f65786365656420746865206d6178206d696e74696e67206c696d69742070657260008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61420d81613965565b811461421857600080fd5b50565b61422481613977565b811461422f57600080fd5b50565b61423b81613983565b811461424657600080fd5b50565b614252816139cf565b811461425d57600080fd5b50565b614269816139d9565b811461427457600080fd5b5056fea2646970667358221220777fa456773e3567d01c0e9a0bae247fe9197d904b87a2bba3d3749142fb2fdb64736f6c63430008070033
Deployed Bytecode Sourcemap
37028:4968:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23094:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24039:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25598:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25121:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39906:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37364:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26488:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37860:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26898:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39725:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23733:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40336:393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23463:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21236:94;;;;;;;;;;;;;:::i;:::-;;38097:206;;;;;;;;;;;;;:::i;:::-;;40855:499;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20585:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41518:475;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24208:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25891:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38689:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27154:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38837:580;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37482:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39481:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26257:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21485:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40105:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37407:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23094:305;23196:4;23248:25;23233:40;;;:11;:40;;;;:105;;;;23305:33;23290:48;;;:11;:48;;;;23233:105;:158;;;;23355:36;23379:11;23355:23;:36::i;:::-;23233:158;23213:178;;23094:305;;;:::o;24039:100::-;24093:13;24126:5;24119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24039:100;:::o;25598:221::-;25674:7;25702:16;25710:7;25702;:16::i;:::-;25694:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25787:15;:24;25803:7;25787:24;;;;;;;;;;;;;;;;;;;;;25780:31;;25598:221;;;:::o;25121:411::-;25202:13;25218:23;25233:7;25218:14;:23::i;:::-;25202:39;;25266:5;25260:11;;:2;:11;;;;25252:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25360:5;25344:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25369:37;25386:5;25393:12;:10;:12::i;:::-;25369:16;:37::i;:::-;25344:62;25322:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25503:21;25512:2;25516:7;25503:8;:21::i;:::-;25191:341;25121:411;;:::o;39906:145::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40004:39:::1;40023:8;40033:9;40004:18;:39::i;:::-;39906:145:::0;;:::o;37364:36::-;;;:::o;26488:339::-;26683:41;26702:12;:10;:12::i;:::-;26716:7;26683:18;:41::i;:::-;26675:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26791:28;26801:4;26807:2;26811:7;26791:9;:28::i;:::-;26488:339;;;:::o;37860:94::-;37910:5;37860:94;:::o;26898:185::-;27036:39;27053:4;27059:2;27063:7;27036:39;;;;;;;;;;;;:16;:39::i;:::-;26898:185;;;:::o;39725:121::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39824:14:::1;39808:13;:30;;;;;;;;;;;;:::i;:::-;;39725:121:::0;:::o;23733:239::-;23805:7;23825:13;23841:7;:16;23849:7;23841:16;;;;;;;;;;;;;;;;;;;;;23825:32;;23893:1;23876:19;;:5;:19;;;;23868:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23959:5;23952:12;;;23733:239;;;:::o;40336:393::-;40415:4;40397:7;38378:17;;;;;;;;;;;38367:28;;:7;:28;;;;38359:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;38490:11;38479:7;38457:29;;:19;:9;:17;:19::i;:::-;:29;;;;:::i;:::-;:44;;38448:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40469:7:::1;40459:17;;:7;;:17;;;;:::i;:::-;40445:9;:32;;40437:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;40509:7;40504:194;40525:7;40521:11;;:1;:11;;;40504:194;;;40566:15;40584:19;:9;:17;:19::i;:::-;40566:37;;40618:32;40628:12;:10;:12::i;:::-;40642:7;40618:9;:32::i;:::-;40665:21;:9;:19;:21::i;:::-;40548:150;40534:3;;;;;:::i;:::-;;;;40504:194;;;;40717:4;40710:11;;40336:393:::0;;;;:::o;23463:208::-;23535:7;23580:1;23563:19;;:5;:19;;;;23555:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23647:9;:16;23657:5;23647:16;;;;;;;;;;;;;;;;23640:23;;23463:208;;;:::o;21236:94::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21301:21:::1;21319:1;21301:9;:21::i;:::-;21236:94::o:0;38097:206::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38154:15:::1;38172:21;38154:39;;38212:12;:10;:12::i;:::-;38204:30;;:39;38235:7;38204:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38273:12;:10;:12::i;:::-;38261:34;;;38287:7;38261:34;;;;;;:::i;:::-;;;;;;;;38143:160;38097:206::o:0;40855:499::-;40941:4;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40982:3:::1;40971:7;:14;;;;40963:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41080:11;41069:7;41047:29;;:19;:9;:17;:19::i;:::-;:29;;;;:::i;:::-;:44;;41038:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41141:7;41136:187;41157:7;41153:11;;:1;:11;;;41136:187;;;41198:15;41216:19;:9;:17;:19::i;:::-;41198:37;;41250:25;41260:5;41267:7;41250:9;:25::i;:::-;41290:21;:9;:19;:21::i;:::-;41180:143;41166:3;;;;;:::i;:::-;;;;41136:187;;;;41342:4;41335:11;;40855:499:::0;;;;:::o;20585:87::-;20631:7;20658:6;;;;;;;;;;;20651:13;;20585:87;:::o;41518:475::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41605:13:::1;41627:6;:13;41605:36;;41671:3;41660:7;:14;;;;41652:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41742:7;41737:195;41759:6;:13;41755:1;:17;;;41737:195;;;41803:15;41821:19;:9;:17;:19::i;:::-;41803:37;;41855:29;41865:6;41872:1;41865:9;;;;;;;;;;:::i;:::-;;;;;;;;41876:7;41855:9;:29::i;:::-;41899:21;:9;:19;:21::i;:::-;41788:144;41774:3;;;;;:::i;:::-;;;;41737:195;;;;41957:12;:10;:12::i;:::-;41947:38;;;41971:6;:13;41947:38;;;;;;:::i;:::-;;;;;;;;41594:399;41518:475:::0;:::o;24208:104::-;24264:13;24297:7;24290:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24208:104;:::o;25891:295::-;26006:12;:10;:12::i;:::-;25994:24;;:8;:24;;;;25986:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26106:8;26061:18;:32;26080:12;:10;:12::i;:::-;26061:32;;;;;;;;;;;;;;;:42;26094:8;26061:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26159:8;26130:48;;26145:12;:10;:12::i;:::-;26130:48;;;26169:8;26130:48;;;;;;:::i;:::-;;;;;;;;25891:295;;:::o;38689:103::-;38736:4;38765:19;:9;:17;:19::i;:::-;38758:26;;38689:103;:::o;27154:328::-;27329:41;27348:12;:10;:12::i;:::-;27362:7;27329:18;:41::i;:::-;27321:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27435:39;27449:4;27455:2;27459:7;27468:5;27435:13;:39::i;:::-;27154:328;;;;:::o;38837:580::-;38911:13;38951:17;38959:8;38951:7;:17::i;:::-;38943:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;39076:1;39045:10;:20;39056:8;39045:20;;;;;;;;;;;39039:34;;;;;:::i;:::-;;;:38;39035:375;;;39136:10;:20;39147:8;39136:20;;;;;;;;;;;39108:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;39094:64;;;;39035:375;39219:1;39195:13;39189:27;;;;;:::i;:::-;;;:31;39185:225;;;39278:13;39293:19;:8;:17;:19::i;:::-;39261:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39247:67;;;;39185:225;39373:24;39388:8;39373:14;:24::i;:::-;39366:31;;38837:580;;;;:::o;37482:31::-;;;;:::o;39481:186::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39588:18:::1;39568:17;;:38;;;;;;;;;;;;;;;;;;39620:39;39641:17;;;;;;;;;;;39620:39;;;;;;:::i;:::-;;;;;;;;39481:186:::0;:::o;26257:164::-;26354:4;26378:18;:25;26397:5;26378:25;;;;;;;;;;;;;;;:35;26404:8;26378:35;;;;;;;;;;;;;;;;;;;;;;;;;26371:42;;26257:164;;;;:::o;21485:192::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21594:1:::1;21574:22;;:8;:22;;;;21566:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21650:19;21660:8;21650:9;:19::i;:::-;21485:192:::0;:::o;40105:118::-;20816:12;:10;:12::i;:::-;20805:23;;:7;:5;:7::i;:::-;:23;;;20797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40207:8:::1;40192:12;:23;;;;:::i;:::-;40182:7;:33;;;;40105:118:::0;:::o;37407:30::-;;;;;;;;;;;;;:::o;17271:157::-;17356:4;17395:25;17380:40;;;:11;:40;;;;17373:47;;17271:157;;;:::o;28992:127::-;29057:4;29109:1;29081:30;;:7;:16;29089:7;29081:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29074:37;;28992:127;;;:::o;18595:98::-;18648:7;18675:10;18668:17;;18595:98;:::o;32974:174::-;33076:2;33049:15;:24;33065:7;33049:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33132:7;33128:2;33094:46;;33103:23;33118:7;33103:14;:23::i;:::-;33094:46;;;;;;;;;;;;32974:174;;:::o;36369:217::-;36469:16;36477:7;36469;:16::i;:::-;36461:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;36569:9;36547:10;:19;36558:7;36547:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;36369:217;;:::o;29286:348::-;29379:4;29404:16;29412:7;29404;:16::i;:::-;29396:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29480:13;29496:23;29511:7;29496:14;:23::i;:::-;29480:39;;29549:5;29538:16;;:7;:16;;;:51;;;;29582:7;29558:31;;:20;29570:7;29558:11;:20::i;:::-;:31;;;29538:51;:87;;;;29593:32;29610:5;29617:7;29593:16;:32::i;:::-;29538:87;29530:96;;;29286:348;;;;:::o;32278:578::-;32437:4;32410:31;;:23;32425:7;32410:14;:23::i;:::-;:31;;;32402:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32520:1;32506:16;;:2;:16;;;;32498:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32576:39;32597:4;32603:2;32607:7;32576:20;:39::i;:::-;32680:29;32697:1;32701:7;32680:8;:29::i;:::-;32741:1;32722:9;:15;32732:4;32722:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32770:1;32753:9;:13;32763:2;32753:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32801:2;32782:7;:16;32790:7;32782:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32840:7;32836:2;32821:27;;32830:4;32821:27;;;;;;;;;;;;32278:578;;;:::o;3255:114::-;3320:7;3347;:14;;;3340:21;;3255:114;;;:::o;29976:110::-;30052:26;30062:2;30066:7;30052:26;;;;;;;;;;;;:9;:26::i;:::-;29976:110;;:::o;3377:127::-;3484:1;3466:7;:14;;;:19;;;;;;;;;;;3377:127;:::o;21685:173::-;21741:16;21760:6;;;;;;;;;;;21741:25;;21786:8;21777:6;;:17;;;;;;;;;;;;;;;;;;21841:8;21810:40;;21831:8;21810:40;;;;;;;;;;;;21730:128;21685:173;:::o;28364:315::-;28521:28;28531:4;28537:2;28541:7;28521:9;:28::i;:::-;28568:48;28591:4;28597:2;28601:7;28610:5;28568:22;:48::i;:::-;28560:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28364:315;;;;:::o;1083:723::-;1139:13;1369:1;1360:5;:10;1356:53;;;1387:10;;;;;;;;;;;;;;;;;;;;;1356:53;1419:12;1434:5;1419:20;;1450:14;1475:78;1490:1;1482:4;:9;1475:78;;1508:8;;;;;:::i;:::-;;;;1539:2;1531:10;;;;;:::i;:::-;;;1475:78;;;1563:19;1595:6;1585:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1563:39;;1613:154;1629:1;1620:5;:10;1613:154;;1657:1;1647:11;;;;;:::i;:::-;;;1724:2;1716:5;:10;;;;:::i;:::-;1703:2;:24;;;;:::i;:::-;1690:39;;1673:6;1680;1673:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1753:2;1744:11;;;;;:::i;:::-;;;1613:154;;;1791:6;1777:21;;;;;1083:723;;;;:::o;35534:679::-;35607:13;35641:16;35649:7;35641;:16::i;:::-;35633:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;35724:23;35750:10;:19;35761:7;35750:19;;;;;;;;;;;35724:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35780:18;35801:10;:8;:10::i;:::-;35780:31;;35909:1;35893:4;35887:18;:23;35883:72;;;35934:9;35927:16;;;;;;35883:72;36085:1;36065:9;36059:23;:27;36055:108;;;36134:4;36140:9;36117:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36103:48;;;;;;36055:108;36182:23;36197:7;36182:14;:23::i;:::-;36175:30;;;;35534:679;;;;:::o;35084:126::-;;;;:::o;30313:321::-;30443:18;30449:2;30453:7;30443:5;:18::i;:::-;30494:54;30525:1;30529:2;30533:7;30542:5;30494:22;:54::i;:::-;30472:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30313:321;;;:::o;33713:799::-;33868:4;33889:15;:2;:13;;;:15::i;:::-;33885:620;;;33941:2;33925:36;;;33962:12;:10;:12::i;:::-;33976:4;33982:7;33991:5;33925:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33921:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34184:1;34167:6;:13;:18;34163:272;;;34210:60;;;;;;;;;;:::i;:::-;;;;;;;;34163:272;34385:6;34379:13;34370:6;34366:2;34362:15;34355:38;33921:529;34058:41;;;34048:51;;;:6;:51;;;;34041:58;;;;;33885:620;34489:4;34482:11;;33713:799;;;;;;;:::o;38561:120::-;38621:13;38660;38653:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38561:120;:::o;24383:334::-;24456:13;24490:16;24498:7;24490;:16::i;:::-;24482:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24571:21;24595:10;:8;:10::i;:::-;24571:34;;24647:1;24629:7;24623:21;:25;:86;;;;;;;;;;;;;;;;;24675:7;24684:18;:7;:16;:18::i;:::-;24658:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24623:86;24616:93;;;24383:334;;;:::o;30970:382::-;31064:1;31050:16;;:2;:16;;;;31042:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31123:16;31131:7;31123;:16::i;:::-;31122:17;31114:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31185:45;31214:1;31218:2;31222:7;31185:20;:45::i;:::-;31260:1;31243:9;:13;31253:2;31243:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31291:2;31272:7;:16;31280:7;31272:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31336:7;31332:2;31311:33;;31328:1;31311:33;;;;;;;;;;;;30970:382;;:::o;4533:387::-;4593:4;4801:12;4868:7;4856:20;4848:28;;4911:1;4904:4;:8;4897:15;;;4533:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:135::-;3459:5;3497:6;3484:20;3475:29;;3513:31;3538:5;3513:31;:::i;:::-;3415:135;;;;:::o;3556:329::-;3615:6;3664:2;3652:9;3643:7;3639:23;3635:32;3632:119;;;3670:79;;:::i;:::-;3632:119;3790:1;3815:53;3860:7;3851:6;3840:9;3836:22;3815:53;:::i;:::-;3805:63;;3761:117;3556:329;;;;:::o;3891:474::-;3959:6;3967;4016:2;4004:9;3995:7;3991:23;3987:32;3984:119;;;4022:79;;:::i;:::-;3984:119;4142:1;4167:53;4212:7;4203:6;4192:9;4188:22;4167:53;:::i;:::-;4157:63;;4113:117;4269:2;4295:53;4340:7;4331:6;4320:9;4316:22;4295:53;:::i;:::-;4285:63;;4240:118;3891:474;;;;;:::o;4371:619::-;4448:6;4456;4464;4513:2;4501:9;4492:7;4488:23;4484:32;4481:119;;;4519:79;;:::i;:::-;4481:119;4639:1;4664:53;4709:7;4700:6;4689:9;4685:22;4664:53;:::i;:::-;4654:63;;4610:117;4766:2;4792:53;4837:7;4828:6;4817:9;4813:22;4792:53;:::i;:::-;4782:63;;4737:118;4894:2;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4865:118;4371:619;;;;;:::o;4996:943::-;5091:6;5099;5107;5115;5164:3;5152:9;5143:7;5139:23;5135:33;5132:120;;;5171:79;;:::i;:::-;5132:120;5291:1;5316:53;5361:7;5352:6;5341:9;5337:22;5316:53;:::i;:::-;5306:63;;5262:117;5418:2;5444:53;5489:7;5480:6;5469:9;5465:22;5444:53;:::i;:::-;5434:63;;5389:118;5546:2;5572:53;5617:7;5608:6;5597:9;5593:22;5572:53;:::i;:::-;5562:63;;5517:118;5702:2;5691:9;5687:18;5674:32;5733:18;5725:6;5722:30;5719:117;;;5755:79;;:::i;:::-;5719:117;5860:62;5914:7;5905:6;5894:9;5890:22;5860:62;:::i;:::-;5850:72;;5645:287;4996:943;;;;;;;:::o;5945:468::-;6010:6;6018;6067:2;6055:9;6046:7;6042:23;6038:32;6035:119;;;6073:79;;:::i;:::-;6035:119;6193:1;6218:53;6263:7;6254:6;6243:9;6239:22;6218:53;:::i;:::-;6208:63;;6164:117;6320:2;6346:50;6388:7;6379:6;6368:9;6364:22;6346:50;:::i;:::-;6336:60;;6291:115;5945:468;;;;;:::o;6419:474::-;6487:6;6495;6544:2;6532:9;6523:7;6519:23;6515:32;6512:119;;;6550:79;;:::i;:::-;6512:119;6670:1;6695:53;6740:7;6731:6;6720:9;6716:22;6695:53;:::i;:::-;6685:63;;6641:117;6797:2;6823:53;6868:7;6859:6;6848:9;6844:22;6823:53;:::i;:::-;6813:63;;6768:118;6419:474;;;;;:::o;6899:470::-;6965:6;6973;7022:2;7010:9;7001:7;6997:23;6993:32;6990:119;;;7028:79;;:::i;:::-;6990:119;7148:1;7173:53;7218:7;7209:6;7198:9;7194:22;7173:53;:::i;:::-;7163:63;;7119:117;7275:2;7301:51;7344:7;7335:6;7324:9;7320:22;7301:51;:::i;:::-;7291:61;;7246:116;6899:470;;;;;:::o;7375:539::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7662:1;7651:9;7647:17;7634:31;7692:18;7684:6;7681:30;7678:117;;;7714:79;;:::i;:::-;7678:117;7819:78;7889:7;7880:6;7869:9;7865:22;7819:78;:::i;:::-;7809:88;;7605:302;7375:539;;;;:::o;7920:327::-;7978:6;8027:2;8015:9;8006:7;8002:23;7998:32;7995:119;;;8033:79;;:::i;:::-;7995:119;8153:1;8178:52;8222:7;8213:6;8202:9;8198:22;8178:52;:::i;:::-;8168:62;;8124:116;7920:327;;;;:::o;8253:349::-;8322:6;8371:2;8359:9;8350:7;8346:23;8342:32;8339:119;;;8377:79;;:::i;:::-;8339:119;8497:1;8522:63;8577:7;8568:6;8557:9;8553:22;8522:63;:::i;:::-;8512:73;;8468:127;8253:349;;;;:::o;8608:509::-;8677:6;8726:2;8714:9;8705:7;8701:23;8697:32;8694:119;;;8732:79;;:::i;:::-;8694:119;8880:1;8869:9;8865:17;8852:31;8910:18;8902:6;8899:30;8896:117;;;8932:79;;:::i;:::-;8896:117;9037:63;9092:7;9083:6;9072:9;9068:22;9037:63;:::i;:::-;9027:73;;8823:287;8608:509;;;;:::o;9123:329::-;9182:6;9231:2;9219:9;9210:7;9206:23;9202:32;9199:119;;;9237:79;;:::i;:::-;9199:119;9357:1;9382:53;9427:7;9418:6;9407:9;9403:22;9382:53;:::i;:::-;9372:63;;9328:117;9123:329;;;;:::o;9458:654::-;9536:6;9544;9593:2;9581:9;9572:7;9568:23;9564:32;9561:119;;;9599:79;;:::i;:::-;9561:119;9719:1;9744:53;9789:7;9780:6;9769:9;9765:22;9744:53;:::i;:::-;9734:63;;9690:117;9874:2;9863:9;9859:18;9846:32;9905:18;9897:6;9894:30;9891:117;;;9927:79;;:::i;:::-;9891:117;10032:63;10087:7;10078:6;10067:9;10063:22;10032:63;:::i;:::-;10022:73;;9817:288;9458:654;;;;;:::o;10118:325::-;10175:6;10224:2;10212:9;10203:7;10199:23;10195:32;10192:119;;;10230:79;;:::i;:::-;10192:119;10350:1;10375:51;10418:7;10409:6;10398:9;10394:22;10375:51;:::i;:::-;10365:61;;10321:115;10118:325;;;;:::o;10449:118::-;10536:24;10554:5;10536:24;:::i;:::-;10531:3;10524:37;10449:118;;:::o;10573:109::-;10654:21;10669:5;10654:21;:::i;:::-;10649:3;10642:34;10573:109;;:::o;10688:360::-;10774:3;10802:38;10834:5;10802:38;:::i;:::-;10856:70;10919:6;10914:3;10856:70;:::i;:::-;10849:77;;10935:52;10980:6;10975:3;10968:4;10961:5;10957:16;10935:52;:::i;:::-;11012:29;11034:6;11012:29;:::i;:::-;11007:3;11003:39;10996:46;;10778:270;10688:360;;;;:::o;11054:364::-;11142:3;11170:39;11203:5;11170:39;:::i;:::-;11225:71;11289:6;11284:3;11225:71;:::i;:::-;11218:78;;11305:52;11350:6;11345:3;11338:4;11331:5;11327:16;11305:52;:::i;:::-;11382:29;11404:6;11382:29;:::i;:::-;11377:3;11373:39;11366:46;;11146:272;11054:364;;;;:::o;11424:377::-;11530:3;11558:39;11591:5;11558:39;:::i;:::-;11613:89;11695:6;11690:3;11613:89;:::i;:::-;11606:96;;11711:52;11756:6;11751:3;11744:4;11737:5;11733:16;11711:52;:::i;:::-;11788:6;11783:3;11779:16;11772:23;;11534:267;11424:377;;;;:::o;11831:845::-;11934:3;11971:5;11965:12;12000:36;12026:9;12000:36;:::i;:::-;12052:89;12134:6;12129:3;12052:89;:::i;:::-;12045:96;;12172:1;12161:9;12157:17;12188:1;12183:137;;;;12334:1;12329:341;;;;12150:520;;12183:137;12267:4;12263:9;12252;12248:25;12243:3;12236:38;12303:6;12298:3;12294:16;12287:23;;12183:137;;12329:341;12396:38;12428:5;12396:38;:::i;:::-;12456:1;12470:154;12484:6;12481:1;12478:13;12470:154;;;12558:7;12552:14;12548:1;12543:3;12539:11;12532:35;12608:1;12599:7;12595:15;12584:26;;12506:4;12503:1;12499:12;12494:17;;12470:154;;;12653:6;12648:3;12644:16;12637:23;;12336:334;;12150:520;;11938:738;;11831:845;;;;:::o;12682:365::-;12824:3;12845:66;12909:1;12904:3;12845:66;:::i;:::-;12838:73;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12682:365;;;:::o;13053:366::-;13195:3;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13292:93;13381:3;13292:93;:::i;:::-;13410:2;13405:3;13401:12;13394:19;;13053:366;;;:::o;13425:::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14541:366;;;:::o;14913:::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:400::-;15445:3;15466:84;15548:1;15543:3;15466:84;:::i;:::-;15459:91;;15559:93;15648:3;15559:93;:::i;:::-;15677:1;15672:3;15668:11;15661:18;;15285:400;;;:::o;15691:366::-;15833:3;15854:67;15918:2;15913:3;15854:67;:::i;:::-;15847:74;;15930:93;16019:3;15930:93;:::i;:::-;16048:2;16043:3;16039:12;16032:19;;15691:366;;;:::o;16063:::-;16205:3;16226:67;16290:2;16285:3;16226:67;:::i;:::-;16219:74;;16302:93;16391:3;16302:93;:::i;:::-;16420:2;16415:3;16411:12;16404:19;;16063:366;;;:::o;16435:::-;16577:3;16598:67;16662:2;16657:3;16598:67;:::i;:::-;16591:74;;16674:93;16763:3;16674:93;:::i;:::-;16792:2;16787:3;16783:12;16776:19;;16435:366;;;:::o;16807:::-;16949:3;16970:67;17034:2;17029:3;16970:67;:::i;:::-;16963:74;;17046:93;17135:3;17046:93;:::i;:::-;17164:2;17159:3;17155:12;17148:19;;16807:366;;;:::o;17179:::-;17321:3;17342:67;17406:2;17401:3;17342:67;:::i;:::-;17335:74;;17418:93;17507:3;17418:93;:::i;:::-;17536:2;17531:3;17527:12;17520:19;;17179:366;;;:::o;17551:::-;17693:3;17714:67;17778:2;17773:3;17714:67;:::i;:::-;17707:74;;17790:93;17879:3;17790:93;:::i;:::-;17908:2;17903:3;17899:12;17892:19;;17551:366;;;:::o;17923:::-;18065:3;18086:67;18150:2;18145:3;18086:67;:::i;:::-;18079:74;;18162:93;18251:3;18162:93;:::i;:::-;18280:2;18275:3;18271:12;18264:19;;17923:366;;;:::o;18295:::-;18437:3;18458:67;18522:2;18517:3;18458:67;:::i;:::-;18451:74;;18534:93;18623:3;18534:93;:::i;:::-;18652:2;18647:3;18643:12;18636:19;;18295:366;;;:::o;18667:::-;18809:3;18830:67;18894:2;18889:3;18830:67;:::i;:::-;18823:74;;18906:93;18995:3;18906:93;:::i;:::-;19024:2;19019:3;19015:12;19008:19;;18667:366;;;:::o;19039:::-;19181:3;19202:67;19266:2;19261:3;19202:67;:::i;:::-;19195:74;;19278:93;19367:3;19278:93;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19039:366;;;:::o;19411:::-;19553:3;19574:67;19638:2;19633:3;19574:67;:::i;:::-;19567:74;;19650:93;19739:3;19650:93;:::i;:::-;19768:2;19763:3;19759:12;19752:19;;19411:366;;;:::o;19783:::-;19925:3;19946:67;20010:2;20005:3;19946:67;:::i;:::-;19939:74;;20022:93;20111:3;20022:93;:::i;:::-;20140:2;20135:3;20131:12;20124:19;;19783:366;;;:::o;20155:::-;20297:3;20318:67;20382:2;20377:3;20318:67;:::i;:::-;20311:74;;20394:93;20483:3;20394:93;:::i;:::-;20512:2;20507:3;20503:12;20496:19;;20155:366;;;:::o;20527:::-;20669:3;20690:67;20754:2;20749:3;20690:67;:::i;:::-;20683:74;;20766:93;20855:3;20766:93;:::i;:::-;20884:2;20879:3;20875:12;20868:19;;20527:366;;;:::o;20899:118::-;20986:24;21004:5;20986:24;:::i;:::-;20981:3;20974:37;20899:118;;:::o;21023:112::-;21106:22;21122:5;21106:22;:::i;:::-;21101:3;21094:35;21023:112;;:::o;21141:435::-;21321:3;21343:95;21434:3;21425:6;21343:95;:::i;:::-;21336:102;;21455:95;21546:3;21537:6;21455:95;:::i;:::-;21448:102;;21567:3;21560:10;;21141:435;;;;;:::o;21582:429::-;21759:3;21781:92;21869:3;21860:6;21781:92;:::i;:::-;21774:99;;21890:95;21981:3;21972:6;21890:95;:::i;:::-;21883:102;;22002:3;21995:10;;21582:429;;;;;:::o;22017:535::-;22247:3;22269:148;22413:3;22269:148;:::i;:::-;22262:155;;22434:92;22522:3;22513:6;22434:92;:::i;:::-;22427:99;;22543:3;22536:10;;22017:535;;;;:::o;22558:222::-;22651:4;22689:2;22678:9;22674:18;22666:26;;22702:71;22770:1;22759:9;22755:17;22746:6;22702:71;:::i;:::-;22558:222;;;;:::o;22786:640::-;22981:4;23019:3;23008:9;23004:19;22996:27;;23033:71;23101:1;23090:9;23086:17;23077:6;23033:71;:::i;:::-;23114:72;23182:2;23171:9;23167:18;23158:6;23114:72;:::i;:::-;23196;23264:2;23253:9;23249:18;23240:6;23196:72;:::i;:::-;23315:9;23309:4;23305:20;23300:2;23289:9;23285:18;23278:48;23343:76;23414:4;23405:6;23343:76;:::i;:::-;23335:84;;22786:640;;;;;;;:::o;23432:210::-;23519:4;23557:2;23546:9;23542:18;23534:26;;23570:65;23632:1;23621:9;23617:17;23608:6;23570:65;:::i;:::-;23432:210;;;;:::o;23648:313::-;23761:4;23799:2;23788:9;23784:18;23776:26;;23848:9;23842:4;23838:20;23834:1;23823:9;23819:17;23812:47;23876:78;23949:4;23940:6;23876:78;:::i;:::-;23868:86;;23648:313;;;;:::o;23967:419::-;24133:4;24171:2;24160:9;24156:18;24148:26;;24220:9;24214:4;24210:20;24206:1;24195:9;24191:17;24184:47;24248:131;24374:4;24248:131;:::i;:::-;24240:139;;23967:419;;;:::o;24392:::-;24558:4;24596:2;24585:9;24581:18;24573:26;;24645:9;24639:4;24635:20;24631:1;24620:9;24616:17;24609:47;24673:131;24799:4;24673:131;:::i;:::-;24665:139;;24392:419;;;:::o;24817:::-;24983:4;25021:2;25010:9;25006:18;24998:26;;25070:9;25064:4;25060:20;25056:1;25045:9;25041:17;25034:47;25098:131;25224:4;25098:131;:::i;:::-;25090:139;;24817:419;;;:::o;25242:::-;25408:4;25446:2;25435:9;25431:18;25423:26;;25495:9;25489:4;25485:20;25481:1;25470:9;25466:17;25459:47;25523:131;25649:4;25523:131;:::i;:::-;25515:139;;25242:419;;;:::o;25667:::-;25833:4;25871:2;25860:9;25856:18;25848:26;;25920:9;25914:4;25910:20;25906:1;25895:9;25891:17;25884:47;25948:131;26074:4;25948:131;:::i;:::-;25940:139;;25667:419;;;:::o;26092:::-;26258:4;26296:2;26285:9;26281:18;26273:26;;26345:9;26339:4;26335:20;26331:1;26320:9;26316:17;26309:47;26373:131;26499:4;26373:131;:::i;:::-;26365:139;;26092:419;;;:::o;26517:::-;26683:4;26721:2;26710:9;26706:18;26698:26;;26770:9;26764:4;26760:20;26756:1;26745:9;26741:17;26734:47;26798:131;26924:4;26798:131;:::i;:::-;26790:139;;26517:419;;;:::o;26942:::-;27108:4;27146:2;27135:9;27131:18;27123:26;;27195:9;27189:4;27185:20;27181:1;27170:9;27166:17;27159:47;27223:131;27349:4;27223:131;:::i;:::-;27215:139;;26942:419;;;:::o;27367:::-;27533:4;27571:2;27560:9;27556:18;27548:26;;27620:9;27614:4;27610:20;27606:1;27595:9;27591:17;27584:47;27648:131;27774:4;27648:131;:::i;:::-;27640:139;;27367:419;;;:::o;27792:::-;27958:4;27996:2;27985:9;27981:18;27973:26;;28045:9;28039:4;28035:20;28031:1;28020:9;28016:17;28009:47;28073:131;28199:4;28073:131;:::i;:::-;28065:139;;27792:419;;;:::o;28217:::-;28383:4;28421:2;28410:9;28406:18;28398:26;;28470:9;28464:4;28460:20;28456:1;28445:9;28441:17;28434:47;28498:131;28624:4;28498:131;:::i;:::-;28490:139;;28217:419;;;:::o;28642:::-;28808:4;28846:2;28835:9;28831:18;28823:26;;28895:9;28889:4;28885:20;28881:1;28870:9;28866:17;28859:47;28923:131;29049:4;28923:131;:::i;:::-;28915:139;;28642:419;;;:::o;29067:::-;29233:4;29271:2;29260:9;29256:18;29248:26;;29320:9;29314:4;29310:20;29306:1;29295:9;29291:17;29284:47;29348:131;29474:4;29348:131;:::i;:::-;29340:139;;29067:419;;;:::o;29492:::-;29658:4;29696:2;29685:9;29681:18;29673:26;;29745:9;29739:4;29735:20;29731:1;29720:9;29716:17;29709:47;29773:131;29899:4;29773:131;:::i;:::-;29765:139;;29492:419;;;:::o;29917:::-;30083:4;30121:2;30110:9;30106:18;30098:26;;30170:9;30164:4;30160:20;30156:1;30145:9;30141:17;30134:47;30198:131;30324:4;30198:131;:::i;:::-;30190:139;;29917:419;;;:::o;30342:::-;30508:4;30546:2;30535:9;30531:18;30523:26;;30595:9;30589:4;30585:20;30581:1;30570:9;30566:17;30559:47;30623:131;30749:4;30623:131;:::i;:::-;30615:139;;30342:419;;;:::o;30767:::-;30933:4;30971:2;30960:9;30956:18;30948:26;;31020:9;31014:4;31010:20;31006:1;30995:9;30991:17;30984:47;31048:131;31174:4;31048:131;:::i;:::-;31040:139;;30767:419;;;:::o;31192:::-;31358:4;31396:2;31385:9;31381:18;31373:26;;31445:9;31439:4;31435:20;31431:1;31420:9;31416:17;31409:47;31473:131;31599:4;31473:131;:::i;:::-;31465:139;;31192:419;;;:::o;31617:::-;31783:4;31821:2;31810:9;31806:18;31798:26;;31870:9;31864:4;31860:20;31856:1;31845:9;31841:17;31834:47;31898:131;32024:4;31898:131;:::i;:::-;31890:139;;31617:419;;;:::o;32042:::-;32208:4;32246:2;32235:9;32231:18;32223:26;;32295:9;32289:4;32285:20;32281:1;32270:9;32266:17;32259:47;32323:131;32449:4;32323:131;:::i;:::-;32315:139;;32042:419;;;:::o;32467:::-;32633:4;32671:2;32660:9;32656:18;32648:26;;32720:9;32714:4;32710:20;32706:1;32695:9;32691:17;32684:47;32748:131;32874:4;32748:131;:::i;:::-;32740:139;;32467:419;;;:::o;32892:222::-;32985:4;33023:2;33012:9;33008:18;33000:26;;33036:71;33104:1;33093:9;33089:17;33080:6;33036:71;:::i;:::-;32892:222;;;;:::o;33120:214::-;33209:4;33247:2;33236:9;33232:18;33224:26;;33260:67;33324:1;33313:9;33309:17;33300:6;33260:67;:::i;:::-;33120:214;;;;:::o;33340:129::-;33374:6;33401:20;;:::i;:::-;33391:30;;33430:33;33458:4;33450:6;33430:33;:::i;:::-;33340:129;;;:::o;33475:75::-;33508:6;33541:2;33535:9;33525:19;;33475:75;:::o;33556:311::-;33633:4;33723:18;33715:6;33712:30;33709:56;;;33745:18;;:::i;:::-;33709:56;33795:4;33787:6;33783:17;33775:25;;33855:4;33849;33845:15;33837:23;;33556:311;;;:::o;33873:307::-;33934:4;34024:18;34016:6;34013:30;34010:56;;;34046:18;;:::i;:::-;34010:56;34084:29;34106:6;34084:29;:::i;:::-;34076:37;;34168:4;34162;34158:15;34150:23;;33873:307;;;:::o;34186:308::-;34248:4;34338:18;34330:6;34327:30;34324:56;;;34360:18;;:::i;:::-;34324:56;34398:29;34420:6;34398:29;:::i;:::-;34390:37;;34482:4;34476;34472:15;34464:23;;34186:308;;;:::o;34500:141::-;34549:4;34572:3;34564:11;;34595:3;34592:1;34585:14;34629:4;34626:1;34616:18;34608:26;;34500:141;;;:::o;34647:98::-;34698:6;34732:5;34726:12;34716:22;;34647:98;;;:::o;34751:99::-;34803:6;34837:5;34831:12;34821:22;;34751:99;;;:::o;34856:168::-;34939:11;34973:6;34968:3;34961:19;35013:4;35008:3;35004:14;34989:29;;34856:168;;;;:::o;35030:169::-;35114:11;35148:6;35143:3;35136:19;35188:4;35183:3;35179:14;35164:29;;35030:169;;;;:::o;35205:148::-;35307:11;35344:3;35329:18;;35205:148;;;;:::o;35359:305::-;35399:3;35418:20;35436:1;35418:20;:::i;:::-;35413:25;;35452:20;35470:1;35452:20;:::i;:::-;35447:25;;35606:1;35538:66;35534:74;35531:1;35528:81;35525:107;;;35612:18;;:::i;:::-;35525:107;35656:1;35653;35649:9;35642:16;;35359:305;;;;:::o;35670:185::-;35710:1;35727:20;35745:1;35727:20;:::i;:::-;35722:25;;35761:20;35779:1;35761:20;:::i;:::-;35756:25;;35800:1;35790:35;;35805:18;;:::i;:::-;35790:35;35847:1;35844;35840:9;35835:14;;35670:185;;;;:::o;35861:348::-;35901:7;35924:20;35942:1;35924:20;:::i;:::-;35919:25;;35958:20;35976:1;35958:20;:::i;:::-;35953:25;;36146:1;36078:66;36074:74;36071:1;36068:81;36063:1;36056:9;36049:17;36045:105;36042:131;;;36153:18;;:::i;:::-;36042:131;36201:1;36198;36194:9;36183:20;;35861:348;;;;:::o;36215:191::-;36255:4;36275:20;36293:1;36275:20;:::i;:::-;36270:25;;36309:20;36327:1;36309:20;:::i;:::-;36304:25;;36348:1;36345;36342:8;36339:34;;;36353:18;;:::i;:::-;36339:34;36398:1;36395;36391:9;36383:17;;36215:191;;;;:::o;36412:96::-;36449:7;36478:24;36496:5;36478:24;:::i;:::-;36467:35;;36412:96;;;:::o;36514:90::-;36548:7;36591:5;36584:13;36577:21;36566:32;;36514:90;;;:::o;36610:149::-;36646:7;36686:66;36679:5;36675:78;36664:89;;36610:149;;;:::o;36765:126::-;36802:7;36842:42;36835:5;36831:54;36820:65;;36765:126;;;:::o;36897:77::-;36934:7;36963:5;36952:16;;36897:77;;;:::o;36980:86::-;37015:7;37055:4;37048:5;37044:16;37033:27;;36980:86;;;:::o;37072:154::-;37156:6;37151:3;37146;37133:30;37218:1;37209:6;37204:3;37200:16;37193:27;37072:154;;;:::o;37232:307::-;37300:1;37310:113;37324:6;37321:1;37318:13;37310:113;;;37409:1;37404:3;37400:11;37394:18;37390:1;37385:3;37381:11;37374:39;37346:2;37343:1;37339:10;37334:15;;37310:113;;;37441:6;37438:1;37435:13;37432:101;;;37521:1;37512:6;37507:3;37503:16;37496:27;37432:101;37281:258;37232:307;;;:::o;37545:320::-;37589:6;37626:1;37620:4;37616:12;37606:22;;37673:1;37667:4;37663:12;37694:18;37684:81;;37750:4;37742:6;37738:17;37728:27;;37684:81;37812:2;37804:6;37801:14;37781:18;37778:38;37775:84;;;37831:18;;:::i;:::-;37775:84;37596:269;37545:320;;;:::o;37871:281::-;37954:27;37976:4;37954:27;:::i;:::-;37946:6;37942:40;38084:6;38072:10;38069:22;38048:18;38036:10;38033:34;38030:62;38027:88;;;38095:18;;:::i;:::-;38027:88;38135:10;38131:2;38124:22;37914:238;37871:281;;:::o;38158:233::-;38197:3;38220:24;38238:5;38220:24;:::i;:::-;38211:33;;38266:66;38259:5;38256:77;38253:103;;;38336:18;;:::i;:::-;38253:103;38383:1;38376:5;38372:13;38365:20;;38158:233;;;:::o;38397:167::-;38434:3;38457:22;38473:5;38457:22;:::i;:::-;38448:31;;38501:4;38494:5;38491:15;38488:41;;;38509:18;;:::i;:::-;38488:41;38556:1;38549:5;38545:13;38538:20;;38397:167;;;:::o;38570:176::-;38602:1;38619:20;38637:1;38619:20;:::i;:::-;38614:25;;38653:20;38671:1;38653:20;:::i;:::-;38648:25;;38692:1;38682:35;;38697:18;;:::i;:::-;38682:35;38738:1;38735;38731:9;38726:14;;38570:176;;;;:::o;38752:180::-;38800:77;38797:1;38790:88;38897:4;38894:1;38887:15;38921:4;38918:1;38911:15;38938:180;38986:77;38983:1;38976:88;39083:4;39080:1;39073:15;39107:4;39104:1;39097:15;39124:180;39172:77;39169:1;39162:88;39269:4;39266:1;39259:15;39293:4;39290:1;39283:15;39310:180;39358:77;39355:1;39348:88;39455:4;39452:1;39445:15;39479:4;39476:1;39469:15;39496:180;39544:77;39541:1;39534:88;39641:4;39638:1;39631:15;39665:4;39662:1;39655:15;39682:117;39791:1;39788;39781:12;39805:117;39914:1;39911;39904:12;39928:117;40037:1;40034;40027:12;40051:117;40160:1;40157;40150:12;40174:117;40283:1;40280;40273:12;40297:102;40338:6;40389:2;40385:7;40380:2;40373:5;40369:14;40365:28;40355:38;;40297:102;;;:::o;40405:159::-;40545:11;40541:1;40533:6;40529:14;40522:35;40405:159;:::o;40570:237::-;40710:34;40706:1;40698:6;40694:14;40687:58;40779:20;40774:2;40766:6;40762:15;40755:45;40570:237;:::o;40813:225::-;40953:34;40949:1;40941:6;40937:14;40930:58;41022:8;41017:2;41009:6;41005:15;40998:33;40813:225;:::o;41044:178::-;41184:30;41180:1;41172:6;41168:14;41161:54;41044:178;:::o;41228:223::-;41368:34;41364:1;41356:6;41352:14;41345:58;41437:6;41432:2;41424:6;41420:15;41413:31;41228:223;:::o;41457:175::-;41597:27;41593:1;41585:6;41581:14;41574:51;41457:175;:::o;41638:231::-;41778:34;41774:1;41766:6;41762:14;41755:58;41847:14;41842:2;41834:6;41830:15;41823:39;41638:231;:::o;41875:161::-;42015:9;42011:1;42003:6;41999:14;41992:33;41875:161;:::o;42046:255::-;42190:34;42186:1;42178:6;42174:14;42167:58;42263:26;42258:2;42250:6;42246:15;42239:51;42046:255;:::o;42311:185::-;42455:29;42451:1;42443:6;42439:14;42432:53;42311:185;:::o;42506:241::-;42650:34;42646:1;42638:6;42634:14;42627:58;42723:12;42718:2;42710:6;42706:15;42699:37;42506:241;:::o;42757:240::-;42901:34;42897:1;42889:6;42885:14;42878:58;42974:11;42969:2;42961:6;42957:15;42950:36;42757:240;:::o;43007:245::-;43151:34;43147:1;43139:6;43135:14;43128:58;43224:16;43219:2;43211:6;43207:15;43200:41;43007:245;:::o;43262:190::-;43406:34;43402:1;43394:6;43390:14;43383:58;43262:190;:::o;43462:248::-;43606:34;43602:1;43594:6;43590:14;43583:58;43679:19;43674:2;43666:6;43662:15;43655:44;43462:248;:::o;43720:243::-;43864:34;43860:1;43852:6;43848:14;43841:58;43937:14;43932:2;43924:6;43920:15;43913:39;43720:243;:::o;43973:190::-;44117:34;44113:1;44105:6;44101:14;44094:58;43973:190;:::o;44173:240::-;44317:34;44313:1;44305:6;44301:14;44294:58;44390:11;44385:2;44377:6;44373:15;44366:36;44173:240;:::o;44423:246::-;44567:34;44563:1;44555:6;44551:14;44544:58;44640:17;44635:2;44627:6;44623:15;44616:42;44423:246;:::o;44679:232::-;44823:34;44819:1;44811:6;44807:14;44800:58;44896:3;44891:2;44883:6;44879:15;44872:28;44679:232;:::o;44921:236::-;45065:34;45061:1;45053:6;45049:14;45042:58;45138:7;45133:2;45125:6;45121:15;45114:32;44921:236;:::o;45167:248::-;45311:34;45307:1;45299:6;45295:14;45288:58;45384:19;45379:2;45371:6;45367:15;45360:44;45167:248;:::o;45425:130::-;45502:24;45520:5;45502:24;:::i;:::-;45495:5;45492:35;45482:63;;45541:1;45538;45531:12;45482:63;45425:130;:::o;45565:124::-;45639:21;45654:5;45639:21;:::i;:::-;45632:5;45629:32;45619:60;;45675:1;45672;45665:12;45619:60;45565:124;:::o;45699:128::-;45775:23;45792:5;45775:23;:::i;:::-;45768:5;45765:34;45755:62;;45813:1;45810;45803:12;45755:62;45699:128;:::o;45837:130::-;45914:24;45932:5;45914:24;:::i;:::-;45907:5;45904:35;45894:63;;45953:1;45950;45943:12;45894:63;45837:130;:::o;45977:126::-;46052:22;46068:5;46052:22;:::i;:::-;46045:5;46042:33;46032:61;;46089:1;46086;46079:12;46032:61;45977:126;:::o
Swarm Source
ipfs://777fa456773e3567d01c0e9a0bae247fe9197d904b87a2bba3d3749142fb2fdb
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.