Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ShoesFuse
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-05-30
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
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;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* 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 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 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 the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @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 overridden 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 {
_setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);
_afterTokenTransfer(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);
_afterTokenTransfer(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 from incorrect owner");
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);
_afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @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 Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: contracts/ShoesFuse.sol
/**
______ __ __ ______ ______ ______ ______ __ __ ______ ______
/\ ___\ /\ \_\ \ /\ __ \ /\ ___\ /\ ___\ /\ ___\ /\ \/\ \ /\ ___\ /\ ___\
\ \___ \ \ \ __ \ \ \ \/\ \ \ \ __\ \ \___ \ \ \ __\ \ \ \_\ \ \ \___ \ \ \ __\
\/\_____\ \ \_\ \_\ \ \_____\ \ \_____\ \/\_____\ \ \_\ \ \_____\ \/\_____\ \ \_____\
\/_____/ \/_/\/_/ \/_____/ \/_____/ \/_____/ \/_/ \/_____/ \/_____/ \/_____/
*/
// Created by Vinci.
pragma solidity ^0.8.4;
contract ShoesFuse is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private supply;
string public uriPrefix = "";
uint256 public cost = 0.01 ether;
uint256 public reserved = 50;
uint256 public maxTokens = 5000;
bool public mintActive = true;
constructor() ERC721("Shoes Fuse", "SHOESFUSE") {
}
function totalSupply() public view returns (uint256) {
return supply.current();
}
function mint(uint256 _mintQuantity) public payable {
require(mintActive, "Mint is not active!");
require(_mintQuantity < 21 && _mintQuantity > 0, "Invalid mint amount!");
require(supply.current() + _mintQuantity < maxTokens + 1 - reserved, "Max supply exceeded!");
require(msg.value >= cost * _mintQuantity, "Insufficient funds!");
_mintLoop(msg.sender, _mintQuantity);
}
function tokensOfOwner(address _owner) public view returns (uint256[] memory) {
uint256 numOwned = balanceOf(_owner);
uint256 ownedIdx = 0;
uint256 currTokenId = 1;
uint256[] memory ownedTokenIds = new uint256[](numOwned);
while (ownedIdx < numOwned && currTokenId < maxTokens + 1) {
address currTokenOwner = ownerOf(currTokenId);
if (currTokenOwner == _owner) {
ownedTokenIds[ownedIdx] = currTokenId;
ownedIdx++;
}
currTokenId++;
}
return ownedTokenIds;
}
function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory currentBaseURI = _baseURI();
return string(abi.encodePacked(currentBaseURI, _tokenId.toString()));
}
function _mintLoop(address _receiver, uint256 _mintQuantity) internal {
for (uint256 i = 0; i < _mintQuantity; i++) {
supply.increment();
_safeMint(_receiver, supply.current());
}
}
function _baseURI() internal view virtual override returns (string memory) {
return uriPrefix;
}
// Owner Only Functions
function flipMintActive() public onlyOwner {
mintActive = !mintActive;
}
function setCost(uint256 _cost) public onlyOwner {
cost = _cost;
}
function setUriPrefix(string memory _uriPrefix) public onlyOwner {
uriPrefix = _uriPrefix;
}
function setMaxToken(uint256 _maxTokens) public onlyOwner {
maxTokens = _maxTokens;
}
function giveAway(address _to, uint256 _quantity) external onlyOwner() {
require(supply.current() + _quantity < maxTokens + 1, "Max supply exceeded!");
_mintLoop(_to, _quantity);
if (reserved > _quantity) {
reserved -= _quantity;
} else {
reserved = 0;
}
}
function withdraw() public onlyOwner {
(bool os, ) = payable(owner()).call{value: address(this).balance}("");
require(os);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintActive","outputs":[],"stateMutability":"nonpayable","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":"_to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokens","type":"uint256"}],"name":"setMaxToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b929190620001ff565b50662386f26fc100006009556032600a55611388600b556001600c60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280600a81526020017f53686f65732046757365000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f53484f45534655534500000000000000000000000000000000000000000000008152508160009080519060200190620000ef929190620001ff565b50806001908051906020019062000108929190620001ff565b5050506200012b6200011f6200013160201b60201c565b6200013960201b60201c565b62000314565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020d90620002af565b90600052602060002090601f0160209004810192826200023157600085556200027d565b82601f106200024c57805160ff19168380011785556200027d565b828001600101855582156200027d579182015b828111156200027c5782518255916020019190600101906200025f565b5b5090506200028c919062000290565b5090565b5b80821115620002ab57600081600090555060010162000291565b5090565b60006002820490506001821680620002c857607f821691505b60208210811415620002df57620002de620002e5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613bed80620003246000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b5bfcfa811610095578063e831574211610064578063e83157421461063f578063e985e9c51461066a578063f2fde38b146106a7578063fe60d12c146106d0576101cd565b8063b5bfcfa814610599578063b88d4fde146105b0578063c87b56dd146105d9578063ca80014414610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104fe57806395d89b4114610529578063a0712d6814610554578063a22cb46514610570576101cd565b8063715018a6146104815780637ec4a659146104985780638462151c146104c1576101cd565b806323b872dd1161016f57806344a0d68a1161013e57806344a0d68a146103b357806362b99ad4146103dc5780636352211e1461040757806370a0823114610444576101cd565b806323b872dd1461031f57806325fd90f3146103485780633ccfd60b1461037357806342842e0e1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806309acc2cb146102a057806313faede6146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906128f8565b6106fb565b6040516102069190612ebe565b60405180910390f35b34801561021b57600080fd5b506102246107dd565b6040516102319190612ed9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061299b565b61086f565b60405161026e9190612e35565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906128b8565b6108f4565b005b3480156102ac57600080fd5b506102c760048036038101906102c2919061299b565b610a0c565b005b3480156102d557600080fd5b506102de610a92565b6040516102eb919061317b565b60405180910390f35b34801561030057600080fd5b50610309610a98565b604051610316919061317b565b60405180910390f35b34801561032b57600080fd5b50610346600480360381019061034191906127a2565b610aa9565b005b34801561035457600080fd5b5061035d610b09565b60405161036a9190612ebe565b60405180910390f35b34801561037f57600080fd5b50610388610b1c565b005b34801561039657600080fd5b506103b160048036038101906103ac91906127a2565b610c18565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061299b565b610c38565b005b3480156103e857600080fd5b506103f1610cbe565b6040516103fe9190612ed9565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061299b565b610d4c565b60405161043b9190612e35565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612735565b610dfe565b604051610478919061317b565b60405180910390f35b34801561048d57600080fd5b50610496610eb6565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612952565b610f3e565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612735565b610fd4565b6040516104f59190612e9c565b60405180910390f35b34801561050a57600080fd5b506105136110e9565b6040516105209190612e35565b60405180910390f35b34801561053557600080fd5b5061053e611113565b60405161054b9190612ed9565b60405180910390f35b61056e6004803603810190610569919061299b565b6111a5565b005b34801561057c57600080fd5b5061059760048036038101906105929190612878565b611311565b005b3480156105a557600080fd5b506105ae611327565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906127f5565b6113cf565b005b3480156105e557600080fd5b5061060060048036038101906105fb919061299b565b611431565b60405161060d9190612ed9565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906128b8565b6114b9565b005b34801561064b57600080fd5b506106546115d8565b604051610661919061317b565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612762565b6115de565b60405161069e9190612ebe565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612735565b611672565b005b3480156106dc57600080fd5b506106e561176a565b6040516106f2919061317b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d657506107d582611770565b5b9050919050565b6060600080546107ec9061346f565b80601f01602080910402602001604051908101604052809291908181526020018280546108189061346f565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061087a826117da565b6108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b09061309b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ff82610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906130fb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f611846565b73ffffffffffffffffffffffffffffffffffffffff1614806109be57506109bd816109b8611846565b6115de565b5b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f49061301b565b60405180910390fd5b610a07838361184e565b505050565b610a14611846565b73ffffffffffffffffffffffffffffffffffffffff16610a326110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f906130bb565b60405180910390fd5b80600b8190555050565b60095481565b6000610aa46007611907565b905090565b610aba610ab4611846565b82611915565b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af09061313b565b60405180910390fd5b610b048383836119f3565b505050565b600c60009054906101000a900460ff1681565b610b24611846565b73ffffffffffffffffffffffffffffffffffffffff16610b426110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906130bb565b60405180910390fd5b6000610ba26110e9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bc590612e20565b60006040518083038185875af1925050503d8060008114610c02576040519150601f19603f3d011682016040523d82523d6000602084013e610c07565b606091505b5050905080610c1557600080fd5b50565b610c33838383604051806020016040528060008152506113cf565b505050565b610c40611846565b73ffffffffffffffffffffffffffffffffffffffff16610c5e6110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906130bb565b60405180910390fd5b8060098190555050565b60088054610ccb9061346f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf79061346f565b8015610d445780601f10610d1957610100808354040283529160200191610d44565b820191906000526020600020905b815481529060010190602001808311610d2757829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec9061305b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e669061303b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebe611846565b73ffffffffffffffffffffffffffffffffffffffff16610edc6110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f29906130bb565b60405180910390fd5b610f3c6000611c5a565b565b610f46611846565b73ffffffffffffffffffffffffffffffffffffffff16610f646110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906130bb565b60405180910390fd5b8060089080519060200190610fd0929190612549565b5050565b60606000610fe183610dfe565b90506000806001905060008367ffffffffffffffff81111561100657611005613608565b5b6040519080825280602002602001820160405280156110345781602001602082028036833780820191505090505b5090505b838310801561105457506001600b5461105191906132a4565b82105b156110dd57600061106483610d4c565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110c957828285815181106110ae576110ad6135d9565b5b60200260200101818152505083806110c5906134d2565b9450505b82806110d4906134d2565b93505050611038565b80945050505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111229061346f565b80601f016020809104026020016040519081016040528092919081815260200182805461114e9061346f565b801561119b5780601f106111705761010080835404028352916020019161119b565b820191906000526020600020905b81548152906001019060200180831161117e57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90612fdb565b60405180910390fd5b6015811080156112045750600081115b611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612f7b565b60405180910390fd5b600a546001600b5461125591906132a4565b61125f9190613385565b8161126a6007611907565b61127491906132a4565b106112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab9061311b565b60405180910390fd5b806009546112c2919061332b565b341015611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061315b565b60405180910390fd5b61130e3382611d20565b50565b61132361131c611846565b8383611d60565b5050565b61132f611846565b73ffffffffffffffffffffffffffffffffffffffff1661134d6110e9565b73ffffffffffffffffffffffffffffffffffffffff16146113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906130bb565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6113e06113da611846565b83611915565b61141f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114169061313b565b60405180910390fd5b61142b84848484611ecd565b50505050565b606061143c826117da565b61147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906130db565b60405180910390fd5b6000611485611f29565b90508061149184611fbb565b6040516020016114a2929190612dfc565b604051602081830303815290604052915050919050565b6114c1611846565b73ffffffffffffffffffffffffffffffffffffffff166114df6110e9565b73ffffffffffffffffffffffffffffffffffffffff1614611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c906130bb565b60405180910390fd5b6001600b5461154491906132a4565b8161154f6007611907565b61155991906132a4565b10611599576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115909061311b565b60405180910390fd5b6115a38282611d20565b80600a5411156115cb5780600a60008282546115bf9190613385565b925050819055506115d4565b6000600a819055505b5050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167a611846565b73ffffffffffffffffffffffffffffffffffffffff166116986110e9565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e5906130bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590612f1b565b60405180910390fd5b61176781611c5a565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118c183610d4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611920826117da565b61195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690612ffb565b60405180910390fd5b600061196a83610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ac57506119ab81856115de565b5b806119ea57508373ffffffffffffffffffffffffffffffffffffffff166119d28461086f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a1382610d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090612f3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090612f9b565b60405180910390fd5b611ae483838361211c565b611aef60008261184e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3f9190613385565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9691906132a4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c55838383612121565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611d5b57611d356007612126565b611d4883611d436007611907565b61213c565b8080611d53906134d2565b915050611d23565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690612fbb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ec09190612ebe565b60405180910390a3505050565b611ed88484846119f3565b611ee48484848461215a565b611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90612efb565b60405180910390fd5b50505050565b606060088054611f389061346f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f649061346f565b8015611fb15780601f10611f8657610100808354040283529160200191611fb1565b820191906000526020600020905b815481529060010190602001808311611f9457829003601f168201915b5050505050905090565b60606000821415612003576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612117565b600082905060005b6000821461203557808061201e906134d2565b915050600a8261202e91906132fa565b915061200b565b60008167ffffffffffffffff81111561205157612050613608565b5b6040519080825280601f01601f1916602001820160405280156120835781602001600182028036833780820191505090505b5090505b600085146121105760018261209c9190613385565b9150600a856120ab919061351b565b60306120b791906132a4565b60f81b8183815181106120cd576120cc6135d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561210991906132fa565b9450612087565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6121568282604051806020016040528060008152506122f1565b5050565b600061217b8473ffffffffffffffffffffffffffffffffffffffff1661234c565b156122e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a4611846565b8786866040518563ffffffff1660e01b81526004016121c69493929190612e50565b602060405180830381600087803b1580156121e057600080fd5b505af192505050801561221157506040513d601f19601f8201168201806040525081019061220e9190612925565b60015b612294573d8060008114612241576040519150601f19603f3d011682016040523d82523d6000602084013e612246565b606091505b5060008151141561228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390612efb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122e9565b600190505b949350505050565b6122fb838361236f565b612308600084848461215a565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90612efb565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d69061307b565b60405180910390fd5b6123e8816117da565b15612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90612f5b565b60405180910390fd5b6124346000838361211c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248491906132a4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254560008383612121565b5050565b8280546125559061346f565b90600052602060002090601f01602090048101928261257757600085556125be565b82601f1061259057805160ff19168380011785556125be565b828001600101855582156125be579182015b828111156125bd5782518255916020019190600101906125a2565b5b5090506125cb91906125cf565b5090565b5b808211156125e85760008160009055506001016125d0565b5090565b60006125ff6125fa846131bb565b613196565b90508281526020810184848401111561261b5761261a61363c565b5b61262684828561342d565b509392505050565b600061264161263c846131ec565b613196565b90508281526020810184848401111561265d5761265c61363c565b5b61266884828561342d565b509392505050565b60008135905061267f81613b5b565b92915050565b60008135905061269481613b72565b92915050565b6000813590506126a981613b89565b92915050565b6000815190506126be81613b89565b92915050565b600082601f8301126126d9576126d8613637565b5b81356126e98482602086016125ec565b91505092915050565b600082601f83011261270757612706613637565b5b813561271784826020860161262e565b91505092915050565b60008135905061272f81613ba0565b92915050565b60006020828403121561274b5761274a613646565b5b600061275984828501612670565b91505092915050565b6000806040838503121561277957612778613646565b5b600061278785828601612670565b925050602061279885828601612670565b9150509250929050565b6000806000606084860312156127bb576127ba613646565b5b60006127c986828701612670565b93505060206127da86828701612670565b92505060406127eb86828701612720565b9150509250925092565b6000806000806080858703121561280f5761280e613646565b5b600061281d87828801612670565b945050602061282e87828801612670565b935050604061283f87828801612720565b925050606085013567ffffffffffffffff8111156128605761285f613641565b5b61286c878288016126c4565b91505092959194509250565b6000806040838503121561288f5761288e613646565b5b600061289d85828601612670565b92505060206128ae85828601612685565b9150509250929050565b600080604083850312156128cf576128ce613646565b5b60006128dd85828601612670565b92505060206128ee85828601612720565b9150509250929050565b60006020828403121561290e5761290d613646565b5b600061291c8482850161269a565b91505092915050565b60006020828403121561293b5761293a613646565b5b6000612949848285016126af565b91505092915050565b60006020828403121561296857612967613646565b5b600082013567ffffffffffffffff81111561298657612985613641565b5b612992848285016126f2565b91505092915050565b6000602082840312156129b1576129b0613646565b5b60006129bf84828501612720565b91505092915050565b60006129d48383612dde565b60208301905092915050565b6129e9816133b9565b82525050565b60006129fa8261322d565b612a04818561325b565b9350612a0f8361321d565b8060005b83811015612a40578151612a2788826129c8565b9750612a328361324e565b925050600181019050612a13565b5085935050505092915050565b612a56816133cb565b82525050565b6000612a6782613238565b612a71818561326c565b9350612a8181856020860161343c565b612a8a8161364b565b840191505092915050565b6000612aa082613243565b612aaa8185613288565b9350612aba81856020860161343c565b612ac38161364b565b840191505092915050565b6000612ad982613243565b612ae38185613299565b9350612af381856020860161343c565b80840191505092915050565b6000612b0c603283613288565b9150612b178261365c565b604082019050919050565b6000612b2f602683613288565b9150612b3a826136ab565b604082019050919050565b6000612b52602583613288565b9150612b5d826136fa565b604082019050919050565b6000612b75601c83613288565b9150612b8082613749565b602082019050919050565b6000612b98601483613288565b9150612ba382613772565b602082019050919050565b6000612bbb602483613288565b9150612bc68261379b565b604082019050919050565b6000612bde601983613288565b9150612be9826137ea565b602082019050919050565b6000612c01601383613288565b9150612c0c82613813565b602082019050919050565b6000612c24602c83613288565b9150612c2f8261383c565b604082019050919050565b6000612c47603883613288565b9150612c528261388b565b604082019050919050565b6000612c6a602a83613288565b9150612c75826138da565b604082019050919050565b6000612c8d602983613288565b9150612c9882613929565b604082019050919050565b6000612cb0602083613288565b9150612cbb82613978565b602082019050919050565b6000612cd3602c83613288565b9150612cde826139a1565b604082019050919050565b6000612cf6602083613288565b9150612d01826139f0565b602082019050919050565b6000612d19602f83613288565b9150612d2482613a19565b604082019050919050565b6000612d3c602183613288565b9150612d4782613a68565b604082019050919050565b6000612d5f60008361327d565b9150612d6a82613ab7565b600082019050919050565b6000612d82601483613288565b9150612d8d82613aba565b602082019050919050565b6000612da5603183613288565b9150612db082613ae3565b604082019050919050565b6000612dc8601383613288565b9150612dd382613b32565b602082019050919050565b612de781613423565b82525050565b612df681613423565b82525050565b6000612e088285612ace565b9150612e148284612ace565b91508190509392505050565b6000612e2b82612d52565b9150819050919050565b6000602082019050612e4a60008301846129e0565b92915050565b6000608082019050612e6560008301876129e0565b612e7260208301866129e0565b612e7f6040830185612ded565b8181036060830152612e918184612a5c565b905095945050505050565b60006020820190508181036000830152612eb681846129ef565b905092915050565b6000602082019050612ed36000830184612a4d565b92915050565b60006020820190508181036000830152612ef38184612a95565b905092915050565b60006020820190508181036000830152612f1481612aff565b9050919050565b60006020820190508181036000830152612f3481612b22565b9050919050565b60006020820190508181036000830152612f5481612b45565b9050919050565b60006020820190508181036000830152612f7481612b68565b9050919050565b60006020820190508181036000830152612f9481612b8b565b9050919050565b60006020820190508181036000830152612fb481612bae565b9050919050565b60006020820190508181036000830152612fd481612bd1565b9050919050565b60006020820190508181036000830152612ff481612bf4565b9050919050565b6000602082019050818103600083015261301481612c17565b9050919050565b6000602082019050818103600083015261303481612c3a565b9050919050565b6000602082019050818103600083015261305481612c5d565b9050919050565b6000602082019050818103600083015261307481612c80565b9050919050565b6000602082019050818103600083015261309481612ca3565b9050919050565b600060208201905081810360008301526130b481612cc6565b9050919050565b600060208201905081810360008301526130d481612ce9565b9050919050565b600060208201905081810360008301526130f481612d0c565b9050919050565b6000602082019050818103600083015261311481612d2f565b9050919050565b6000602082019050818103600083015261313481612d75565b9050919050565b6000602082019050818103600083015261315481612d98565b9050919050565b6000602082019050818103600083015261317481612dbb565b9050919050565b60006020820190506131906000830184612ded565b92915050565b60006131a06131b1565b90506131ac82826134a1565b919050565b6000604051905090565b600067ffffffffffffffff8211156131d6576131d5613608565b5b6131df8261364b565b9050602081019050919050565b600067ffffffffffffffff82111561320757613206613608565b5b6132108261364b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132af82613423565b91506132ba83613423565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132ef576132ee61354c565b5b828201905092915050565b600061330582613423565b915061331083613423565b9250826133205761331f61357b565b5b828204905092915050565b600061333682613423565b915061334183613423565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337a5761337961354c565b5b828202905092915050565b600061339082613423565b915061339b83613423565b9250828210156133ae576133ad61354c565b5b828203905092915050565b60006133c482613403565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561345a57808201518184015260208101905061343f565b83811115613469576000848401525b50505050565b6000600282049050600182168061348757607f821691505b6020821081141561349b5761349a6135aa565b5b50919050565b6134aa8261364b565b810181811067ffffffffffffffff821117156134c9576134c8613608565b5b80604052505050565b60006134dd82613423565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135105761350f61354c565b5b600182019050919050565b600061352682613423565b915061353183613423565b9250826135415761354061357b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74206973206e6f74206163746976652100000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613b64816133b9565b8114613b6f57600080fd5b50565b613b7b816133cb565b8114613b8657600080fd5b50565b613b92816133d7565b8114613b9d57600080fd5b50565b613ba981613423565b8114613bb457600080fd5b5056fea2646970667358221220485d92cdcc5fe7273620593b0cd8cb0d68fc1fbc75533fec65e2059497d9412a64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063b5bfcfa811610095578063e831574211610064578063e83157421461063f578063e985e9c51461066a578063f2fde38b146106a7578063fe60d12c146106d0576101cd565b8063b5bfcfa814610599578063b88d4fde146105b0578063c87b56dd146105d9578063ca80014414610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104fe57806395d89b4114610529578063a0712d6814610554578063a22cb46514610570576101cd565b8063715018a6146104815780637ec4a659146104985780638462151c146104c1576101cd565b806323b872dd1161016f57806344a0d68a1161013e57806344a0d68a146103b357806362b99ad4146103dc5780636352211e1461040757806370a0823114610444576101cd565b806323b872dd1461031f57806325fd90f3146103485780633ccfd60b1461037357806342842e0e1461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806309acc2cb146102a057806313faede6146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906128f8565b6106fb565b6040516102069190612ebe565b60405180910390f35b34801561021b57600080fd5b506102246107dd565b6040516102319190612ed9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061299b565b61086f565b60405161026e9190612e35565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906128b8565b6108f4565b005b3480156102ac57600080fd5b506102c760048036038101906102c2919061299b565b610a0c565b005b3480156102d557600080fd5b506102de610a92565b6040516102eb919061317b565b60405180910390f35b34801561030057600080fd5b50610309610a98565b604051610316919061317b565b60405180910390f35b34801561032b57600080fd5b50610346600480360381019061034191906127a2565b610aa9565b005b34801561035457600080fd5b5061035d610b09565b60405161036a9190612ebe565b60405180910390f35b34801561037f57600080fd5b50610388610b1c565b005b34801561039657600080fd5b506103b160048036038101906103ac91906127a2565b610c18565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061299b565b610c38565b005b3480156103e857600080fd5b506103f1610cbe565b6040516103fe9190612ed9565b60405180910390f35b34801561041357600080fd5b5061042e6004803603810190610429919061299b565b610d4c565b60405161043b9190612e35565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190612735565b610dfe565b604051610478919061317b565b60405180910390f35b34801561048d57600080fd5b50610496610eb6565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612952565b610f3e565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190612735565b610fd4565b6040516104f59190612e9c565b60405180910390f35b34801561050a57600080fd5b506105136110e9565b6040516105209190612e35565b60405180910390f35b34801561053557600080fd5b5061053e611113565b60405161054b9190612ed9565b60405180910390f35b61056e6004803603810190610569919061299b565b6111a5565b005b34801561057c57600080fd5b5061059760048036038101906105929190612878565b611311565b005b3480156105a557600080fd5b506105ae611327565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906127f5565b6113cf565b005b3480156105e557600080fd5b5061060060048036038101906105fb919061299b565b611431565b60405161060d9190612ed9565b60405180910390f35b34801561062257600080fd5b5061063d600480360381019061063891906128b8565b6114b9565b005b34801561064b57600080fd5b506106546115d8565b604051610661919061317b565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612762565b6115de565b60405161069e9190612ebe565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612735565b611672565b005b3480156106dc57600080fd5b506106e561176a565b6040516106f2919061317b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d657506107d582611770565b5b9050919050565b6060600080546107ec9061346f565b80601f01602080910402602001604051908101604052809291908181526020018280546108189061346f565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b600061087a826117da565b6108b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b09061309b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ff82610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906130fb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661098f611846565b73ffffffffffffffffffffffffffffffffffffffff1614806109be57506109bd816109b8611846565b6115de565b5b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f49061301b565b60405180910390fd5b610a07838361184e565b505050565b610a14611846565b73ffffffffffffffffffffffffffffffffffffffff16610a326110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7f906130bb565b60405180910390fd5b80600b8190555050565b60095481565b6000610aa46007611907565b905090565b610aba610ab4611846565b82611915565b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af09061313b565b60405180910390fd5b610b048383836119f3565b505050565b600c60009054906101000a900460ff1681565b610b24611846565b73ffffffffffffffffffffffffffffffffffffffff16610b426110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f906130bb565b60405180910390fd5b6000610ba26110e9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610bc590612e20565b60006040518083038185875af1925050503d8060008114610c02576040519150601f19603f3d011682016040523d82523d6000602084013e610c07565b606091505b5050905080610c1557600080fd5b50565b610c33838383604051806020016040528060008152506113cf565b505050565b610c40611846565b73ffffffffffffffffffffffffffffffffffffffff16610c5e6110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab906130bb565b60405180910390fd5b8060098190555050565b60088054610ccb9061346f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf79061346f565b8015610d445780601f10610d1957610100808354040283529160200191610d44565b820191906000526020600020905b815481529060010190602001808311610d2757829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec9061305b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e669061303b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebe611846565b73ffffffffffffffffffffffffffffffffffffffff16610edc6110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f29906130bb565b60405180910390fd5b610f3c6000611c5a565b565b610f46611846565b73ffffffffffffffffffffffffffffffffffffffff16610f646110e9565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb1906130bb565b60405180910390fd5b8060089080519060200190610fd0929190612549565b5050565b60606000610fe183610dfe565b90506000806001905060008367ffffffffffffffff81111561100657611005613608565b5b6040519080825280602002602001820160405280156110345781602001602082028036833780820191505090505b5090505b838310801561105457506001600b5461105191906132a4565b82105b156110dd57600061106483610d4c565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110c957828285815181106110ae576110ad6135d9565b5b60200260200101818152505083806110c5906134d2565b9450505b82806110d4906134d2565b93505050611038565b80945050505050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111229061346f565b80601f016020809104026020016040519081016040528092919081815260200182805461114e9061346f565b801561119b5780601f106111705761010080835404028352916020019161119b565b820191906000526020600020905b81548152906001019060200180831161117e57829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90612fdb565b60405180910390fd5b6015811080156112045750600081115b611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612f7b565b60405180910390fd5b600a546001600b5461125591906132a4565b61125f9190613385565b8161126a6007611907565b61127491906132a4565b106112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab9061311b565b60405180910390fd5b806009546112c2919061332b565b341015611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061315b565b60405180910390fd5b61130e3382611d20565b50565b61132361131c611846565b8383611d60565b5050565b61132f611846565b73ffffffffffffffffffffffffffffffffffffffff1661134d6110e9565b73ffffffffffffffffffffffffffffffffffffffff16146113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a906130bb565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6113e06113da611846565b83611915565b61141f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114169061313b565b60405180910390fd5b61142b84848484611ecd565b50505050565b606061143c826117da565b61147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906130db565b60405180910390fd5b6000611485611f29565b90508061149184611fbb565b6040516020016114a2929190612dfc565b604051602081830303815290604052915050919050565b6114c1611846565b73ffffffffffffffffffffffffffffffffffffffff166114df6110e9565b73ffffffffffffffffffffffffffffffffffffffff1614611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c906130bb565b60405180910390fd5b6001600b5461154491906132a4565b8161154f6007611907565b61155991906132a4565b10611599576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115909061311b565b60405180910390fd5b6115a38282611d20565b80600a5411156115cb5780600a60008282546115bf9190613385565b925050819055506115d4565b6000600a819055505b5050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167a611846565b73ffffffffffffffffffffffffffffffffffffffff166116986110e9565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e5906130bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590612f1b565b60405180910390fd5b61176781611c5a565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166118c183610d4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611920826117da565b61195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690612ffb565b60405180910390fd5b600061196a83610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ac57506119ab81856115de565b5b806119ea57508373ffffffffffffffffffffffffffffffffffffffff166119d28461086f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a1382610d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090612f3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad090612f9b565b60405180910390fd5b611ae483838361211c565b611aef60008261184e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b3f9190613385565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b9691906132a4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c55838383612121565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611d5b57611d356007612126565b611d4883611d436007611907565b61213c565b8080611d53906134d2565b915050611d23565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690612fbb565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ec09190612ebe565b60405180910390a3505050565b611ed88484846119f3565b611ee48484848461215a565b611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90612efb565b60405180910390fd5b50505050565b606060088054611f389061346f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f649061346f565b8015611fb15780601f10611f8657610100808354040283529160200191611fb1565b820191906000526020600020905b815481529060010190602001808311611f9457829003601f168201915b5050505050905090565b60606000821415612003576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612117565b600082905060005b6000821461203557808061201e906134d2565b915050600a8261202e91906132fa565b915061200b565b60008167ffffffffffffffff81111561205157612050613608565b5b6040519080825280601f01601f1916602001820160405280156120835781602001600182028036833780820191505090505b5090505b600085146121105760018261209c9190613385565b9150600a856120ab919061351b565b60306120b791906132a4565b60f81b8183815181106120cd576120cc6135d9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561210991906132fa565b9450612087565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6121568282604051806020016040528060008152506122f1565b5050565b600061217b8473ffffffffffffffffffffffffffffffffffffffff1661234c565b156122e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121a4611846565b8786866040518563ffffffff1660e01b81526004016121c69493929190612e50565b602060405180830381600087803b1580156121e057600080fd5b505af192505050801561221157506040513d601f19601f8201168201806040525081019061220e9190612925565b60015b612294573d8060008114612241576040519150601f19603f3d011682016040523d82523d6000602084013e612246565b606091505b5060008151141561228c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228390612efb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122e9565b600190505b949350505050565b6122fb838361236f565b612308600084848461215a565b612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e90612efb565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d69061307b565b60405180910390fd5b6123e8816117da565b15612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90612f5b565b60405180910390fd5b6124346000838361211c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461248491906132a4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461254560008383612121565b5050565b8280546125559061346f565b90600052602060002090601f01602090048101928261257757600085556125be565b82601f1061259057805160ff19168380011785556125be565b828001600101855582156125be579182015b828111156125bd5782518255916020019190600101906125a2565b5b5090506125cb91906125cf565b5090565b5b808211156125e85760008160009055506001016125d0565b5090565b60006125ff6125fa846131bb565b613196565b90508281526020810184848401111561261b5761261a61363c565b5b61262684828561342d565b509392505050565b600061264161263c846131ec565b613196565b90508281526020810184848401111561265d5761265c61363c565b5b61266884828561342d565b509392505050565b60008135905061267f81613b5b565b92915050565b60008135905061269481613b72565b92915050565b6000813590506126a981613b89565b92915050565b6000815190506126be81613b89565b92915050565b600082601f8301126126d9576126d8613637565b5b81356126e98482602086016125ec565b91505092915050565b600082601f83011261270757612706613637565b5b813561271784826020860161262e565b91505092915050565b60008135905061272f81613ba0565b92915050565b60006020828403121561274b5761274a613646565b5b600061275984828501612670565b91505092915050565b6000806040838503121561277957612778613646565b5b600061278785828601612670565b925050602061279885828601612670565b9150509250929050565b6000806000606084860312156127bb576127ba613646565b5b60006127c986828701612670565b93505060206127da86828701612670565b92505060406127eb86828701612720565b9150509250925092565b6000806000806080858703121561280f5761280e613646565b5b600061281d87828801612670565b945050602061282e87828801612670565b935050604061283f87828801612720565b925050606085013567ffffffffffffffff8111156128605761285f613641565b5b61286c878288016126c4565b91505092959194509250565b6000806040838503121561288f5761288e613646565b5b600061289d85828601612670565b92505060206128ae85828601612685565b9150509250929050565b600080604083850312156128cf576128ce613646565b5b60006128dd85828601612670565b92505060206128ee85828601612720565b9150509250929050565b60006020828403121561290e5761290d613646565b5b600061291c8482850161269a565b91505092915050565b60006020828403121561293b5761293a613646565b5b6000612949848285016126af565b91505092915050565b60006020828403121561296857612967613646565b5b600082013567ffffffffffffffff81111561298657612985613641565b5b612992848285016126f2565b91505092915050565b6000602082840312156129b1576129b0613646565b5b60006129bf84828501612720565b91505092915050565b60006129d48383612dde565b60208301905092915050565b6129e9816133b9565b82525050565b60006129fa8261322d565b612a04818561325b565b9350612a0f8361321d565b8060005b83811015612a40578151612a2788826129c8565b9750612a328361324e565b925050600181019050612a13565b5085935050505092915050565b612a56816133cb565b82525050565b6000612a6782613238565b612a71818561326c565b9350612a8181856020860161343c565b612a8a8161364b565b840191505092915050565b6000612aa082613243565b612aaa8185613288565b9350612aba81856020860161343c565b612ac38161364b565b840191505092915050565b6000612ad982613243565b612ae38185613299565b9350612af381856020860161343c565b80840191505092915050565b6000612b0c603283613288565b9150612b178261365c565b604082019050919050565b6000612b2f602683613288565b9150612b3a826136ab565b604082019050919050565b6000612b52602583613288565b9150612b5d826136fa565b604082019050919050565b6000612b75601c83613288565b9150612b8082613749565b602082019050919050565b6000612b98601483613288565b9150612ba382613772565b602082019050919050565b6000612bbb602483613288565b9150612bc68261379b565b604082019050919050565b6000612bde601983613288565b9150612be9826137ea565b602082019050919050565b6000612c01601383613288565b9150612c0c82613813565b602082019050919050565b6000612c24602c83613288565b9150612c2f8261383c565b604082019050919050565b6000612c47603883613288565b9150612c528261388b565b604082019050919050565b6000612c6a602a83613288565b9150612c75826138da565b604082019050919050565b6000612c8d602983613288565b9150612c9882613929565b604082019050919050565b6000612cb0602083613288565b9150612cbb82613978565b602082019050919050565b6000612cd3602c83613288565b9150612cde826139a1565b604082019050919050565b6000612cf6602083613288565b9150612d01826139f0565b602082019050919050565b6000612d19602f83613288565b9150612d2482613a19565b604082019050919050565b6000612d3c602183613288565b9150612d4782613a68565b604082019050919050565b6000612d5f60008361327d565b9150612d6a82613ab7565b600082019050919050565b6000612d82601483613288565b9150612d8d82613aba565b602082019050919050565b6000612da5603183613288565b9150612db082613ae3565b604082019050919050565b6000612dc8601383613288565b9150612dd382613b32565b602082019050919050565b612de781613423565b82525050565b612df681613423565b82525050565b6000612e088285612ace565b9150612e148284612ace565b91508190509392505050565b6000612e2b82612d52565b9150819050919050565b6000602082019050612e4a60008301846129e0565b92915050565b6000608082019050612e6560008301876129e0565b612e7260208301866129e0565b612e7f6040830185612ded565b8181036060830152612e918184612a5c565b905095945050505050565b60006020820190508181036000830152612eb681846129ef565b905092915050565b6000602082019050612ed36000830184612a4d565b92915050565b60006020820190508181036000830152612ef38184612a95565b905092915050565b60006020820190508181036000830152612f1481612aff565b9050919050565b60006020820190508181036000830152612f3481612b22565b9050919050565b60006020820190508181036000830152612f5481612b45565b9050919050565b60006020820190508181036000830152612f7481612b68565b9050919050565b60006020820190508181036000830152612f9481612b8b565b9050919050565b60006020820190508181036000830152612fb481612bae565b9050919050565b60006020820190508181036000830152612fd481612bd1565b9050919050565b60006020820190508181036000830152612ff481612bf4565b9050919050565b6000602082019050818103600083015261301481612c17565b9050919050565b6000602082019050818103600083015261303481612c3a565b9050919050565b6000602082019050818103600083015261305481612c5d565b9050919050565b6000602082019050818103600083015261307481612c80565b9050919050565b6000602082019050818103600083015261309481612ca3565b9050919050565b600060208201905081810360008301526130b481612cc6565b9050919050565b600060208201905081810360008301526130d481612ce9565b9050919050565b600060208201905081810360008301526130f481612d0c565b9050919050565b6000602082019050818103600083015261311481612d2f565b9050919050565b6000602082019050818103600083015261313481612d75565b9050919050565b6000602082019050818103600083015261315481612d98565b9050919050565b6000602082019050818103600083015261317481612dbb565b9050919050565b60006020820190506131906000830184612ded565b92915050565b60006131a06131b1565b90506131ac82826134a1565b919050565b6000604051905090565b600067ffffffffffffffff8211156131d6576131d5613608565b5b6131df8261364b565b9050602081019050919050565b600067ffffffffffffffff82111561320757613206613608565b5b6132108261364b565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132af82613423565b91506132ba83613423565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132ef576132ee61354c565b5b828201905092915050565b600061330582613423565b915061331083613423565b9250826133205761331f61357b565b5b828204905092915050565b600061333682613423565b915061334183613423565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561337a5761337961354c565b5b828202905092915050565b600061339082613423565b915061339b83613423565b9250828210156133ae576133ad61354c565b5b828203905092915050565b60006133c482613403565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561345a57808201518184015260208101905061343f565b83811115613469576000848401525b50505050565b6000600282049050600182168061348757607f821691505b6020821081141561349b5761349a6135aa565b5b50919050565b6134aa8261364b565b810181811067ffffffffffffffff821117156134c9576134c8613608565b5b80604052505050565b60006134dd82613423565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135105761350f61354c565b5b600182019050919050565b600061352682613423565b915061353183613423565b9250826135415761354061357b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e74206973206e6f74206163746976652100000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613b64816133b9565b8114613b6f57600080fd5b50565b613b7b816133cb565b8114613b8657600080fd5b50565b613b92816133d7565b8114613b9d57600080fd5b50565b613ba981613423565b8114613bb457600080fd5b5056fea2646970667358221220485d92cdcc5fe7273620593b0cd8cb0d68fc1fbc75533fec65e2059497d9412a64736f6c63430008070033
Deployed Bytecode Sourcemap
39488:2925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25647:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26592:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28152:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27675:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41866:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39674:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39876:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28902:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39780:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42273:137;;;;;;;;;;;;;:::i;:::-;;29312:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41680:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39641:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26286:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26016:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6230:103;;;;;;;;;;;;;:::i;:::-;;41760:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40381:546;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5579:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26761:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39971:402;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28445:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41594:80;;;;;;;;;;;;;:::i;:::-;;29568:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40933:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41965:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39744:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28671:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6488:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39711:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25647:305;25749:4;25801:25;25786:40;;;:11;:40;;;;:105;;;;25858:33;25843:48;;;:11;:48;;;;25786:105;:158;;;;25908:36;25932:11;25908:23;:36::i;:::-;25786:158;25766:178;;25647:305;;;:::o;26592:100::-;26646:13;26679:5;26672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26592:100;:::o;28152:221::-;28228:7;28256:16;28264:7;28256;:16::i;:::-;28248:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28341:15;:24;28357:7;28341:24;;;;;;;;;;;;;;;;;;;;;28334:31;;28152:221;;;:::o;27675:411::-;27756:13;27772:23;27787:7;27772:14;:23::i;:::-;27756:39;;27820:5;27814:11;;:2;:11;;;;27806:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27914:5;27898:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27923:37;27940:5;27947:12;:10;:12::i;:::-;27923:16;:37::i;:::-;27898:62;27876:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28057:21;28066:2;28070:7;28057:8;:21::i;:::-;27745:341;27675:411;;:::o;41866:93::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41943:10:::1;41931:9;:22;;;;41866:93:::0;:::o;39674:32::-;;;;:::o;39876:89::-;39920:7;39943:16;:6;:14;:16::i;:::-;39936:23;;39876:89;:::o;28902:339::-;29097:41;29116:12;:10;:12::i;:::-;29130:7;29097:18;:41::i;:::-;29089:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29205:28;29215:4;29221:2;29225:7;29205:9;:28::i;:::-;28902:339;;;:::o;39780:29::-;;;;;;;;;;;;;:::o;42273:137::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42318:7:::1;42339;:5;:7::i;:::-;42331:21;;42360;42331:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42317:69;;;42401:2;42393:11;;;::::0;::::1;;42310:100;42273:137::o:0;29312:185::-;29450:39;29467:4;29473:2;29477:7;29450:39;;;;;;;;;;;;:16;:39::i;:::-;29312:185;;;:::o;41680:74::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41743:5:::1;41736:4;:12;;;;41680:74:::0;:::o;39641:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26286:239::-;26358:7;26378:13;26394:7;:16;26402:7;26394:16;;;;;;;;;;;;;;;;;;;;;26378:32;;26446:1;26429:19;;:5;:19;;;;26421:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26512:5;26505:12;;;26286:239;;;:::o;26016:208::-;26088:7;26133:1;26116:19;;:5;:19;;;;26108:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26200:9;:16;26210:5;26200:16;;;;;;;;;;;;;;;;26193:23;;26016:208;;;:::o;6230:103::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;41760:100::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41844:10:::1;41832:9;:22;;;;;;;;;;;;:::i;:::-;;41760:100:::0;:::o;40381:546::-;40441:16;40466;40485:17;40495:6;40485:9;:17::i;:::-;40466:36;;40509:16;40536:19;40558:1;40536:23;;40566:30;40613:8;40599:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40566:56;;40631:262;40649:8;40638;:19;:50;;;;;40687:1;40675:9;;:13;;;;:::i;:::-;40661:11;:27;40638:50;40631:262;;;40699:22;40724:20;40732:11;40724:7;:20::i;:::-;40699:45;;40777:6;40759:24;;:14;:24;;;40755:109;;;40822:11;40796:13;40810:8;40796:23;;;;;;;;:::i;:::-;;;;;;;:37;;;;;40844:10;;;;;:::i;:::-;;;;40755:109;40872:13;;;;;:::i;:::-;;;;40690:203;40631:262;;;40908:13;40901:20;;;;;;40381:546;;;:::o;5579:87::-;5625:7;5652:6;;;;;;;;;;;5645:13;;5579:87;:::o;26761:104::-;26817:13;26850:7;26843:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26761:104;:::o;39971:402::-;40038:10;;;;;;;;;;;40030:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;40103:2;40087:13;:18;:39;;;;;40125:1;40109:13;:17;40087:39;40079:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;40217:8;;40213:1;40201:9;;:13;;;;:::i;:::-;:24;;;;:::i;:::-;40185:13;40166:16;:6;:14;:16::i;:::-;:32;;;;:::i;:::-;:59;40158:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;40285:13;40278:4;;:20;;;;:::i;:::-;40265:9;:33;;40257:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40331:36;40341:10;40353:13;40331:9;:36::i;:::-;39971:402;:::o;28445:155::-;28540:52;28559:12;:10;:12::i;:::-;28573:8;28583;28540:18;:52::i;:::-;28445:155;;:::o;41594:80::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41658:10:::1;;;;;;;;;;;41657:11;41644:10;;:24;;;;;;;;;;;;;;;;;;41594:80::o:0;29568:328::-;29743:41;29762:12;:10;:12::i;:::-;29776:7;29743:18;:41::i;:::-;29735:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29849:39;29863:4;29869:2;29873:7;29882:5;29849:13;:39::i;:::-;29568:328;;;;:::o;40933:304::-;41007:13;41037:17;41045:8;41037:7;:17::i;:::-;41029:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;41115:28;41146:10;:8;:10::i;:::-;41115:41;;41194:14;41210:19;:8;:17;:19::i;:::-;41177:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41163:68;;;40933:304;;;:::o;41965:302::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42094:1:::1;42082:9;;:13;;;;:::i;:::-;42070:9;42051:16;:6;:14;:16::i;:::-;:28;;;;:::i;:::-;:44;42043:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42129:25;42139:3;42144:9;42129;:25::i;:::-;42178:9;42167:8;;:20;42163:99;;;42210:9;42198:8;;:21;;;;;;;:::i;:::-;;;;;;;;42163:99;;;42253:1;42242:8;:12;;;;42163:99;41965:302:::0;;:::o;39744:31::-;;;;:::o;28671:164::-;28768:4;28792:18;:25;28811:5;28792:25;;;;;;;;;;;;;;;:35;28818:8;28792:35;;;;;;;;;;;;;;;;;;;;;;;;;28785:42;;28671:164;;;;:::o;6488:201::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6597:1:::1;6577:22;;:8;:22;;;;6569:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6653:28;6672:8;6653:18;:28::i;:::-;6488:201:::0;:::o;39711:28::-;;;;:::o;18386:157::-;18471:4;18510:25;18495:40;;;:11;:40;;;;18488:47;;18386:157;;;:::o;31406:127::-;31471:4;31523:1;31495:30;;:7;:16;31503:7;31495:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31488:37;;31406:127;;;:::o;4303:98::-;4356:7;4383:10;4376:17;;4303:98;:::o;35552:174::-;35654:2;35627:15;:24;35643:7;35627:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35710:7;35706:2;35672:46;;35681:23;35696:7;35681:14;:23::i;:::-;35672:46;;;;;;;;;;;;35552:174;;:::o;907:114::-;972:7;999;:14;;;992:21;;907:114;;;:::o;31700:348::-;31793:4;31818:16;31826:7;31818;:16::i;:::-;31810:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31894:13;31910:23;31925:7;31910:14;:23::i;:::-;31894:39;;31963:5;31952:16;;:7;:16;;;:52;;;;31972:32;31989:5;31996:7;31972:16;:32::i;:::-;31952:52;:87;;;;32032:7;32008:31;;:20;32020:7;32008:11;:20::i;:::-;:31;;;31952:87;31944:96;;;31700:348;;;;:::o;34809:625::-;34968:4;34941:31;;:23;34956:7;34941:14;:23::i;:::-;:31;;;34933:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35047:1;35033:16;;:2;:16;;;;35025:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35103:39;35124:4;35130:2;35134:7;35103:20;:39::i;:::-;35207:29;35224:1;35228:7;35207:8;:29::i;:::-;35268:1;35249:9;:15;35259:4;35249:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35297:1;35280:9;:13;35290:2;35280:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35328:2;35309:7;:16;35317:7;35309:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35367:7;35363:2;35348:27;;35357:4;35348:27;;;;;;;;;;;;35388:38;35408:4;35414:2;35418:7;35388:19;:38::i;:::-;34809:625;;;:::o;6849:191::-;6923:16;6942:6;;;;;;;;;;;6923:25;;6968:8;6959:6;;:17;;;;;;;;;;;;;;;;;;7023:8;6992:40;;7013:8;6992:40;;;;;;;;;;;;6912:128;6849:191;:::o;41243:208::-;41325:9;41320:126;41344:13;41340:1;:17;41320:126;;;41373:18;:6;:16;:18::i;:::-;41400:38;41410:9;41421:16;:6;:14;:16::i;:::-;41400:9;:38::i;:::-;41359:3;;;;;:::i;:::-;;;;41320:126;;;;41243:208;;:::o;35868:315::-;36023:8;36014:17;;:5;:17;;;;36006:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36110:8;36072:18;:25;36091:5;36072:25;;;;;;;;;;;;;;;:35;36098:8;36072:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36156:8;36134:41;;36149:5;36134:41;;;36166:8;36134:41;;;;;;:::i;:::-;;;;;;;;35868:315;;;:::o;30778:::-;30935:28;30945:4;30951:2;30955:7;30935:9;:28::i;:::-;30982:48;31005:4;31011:2;31015:7;31024:5;30982:22;:48::i;:::-;30974:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30778:315;;;;:::o;41457:104::-;41517:13;41546:9;41539:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41457:104;:::o;1865:723::-;1921:13;2151:1;2142:5;:10;2138:53;;;2169:10;;;;;;;;;;;;;;;;;;;;;2138:53;2201:12;2216:5;2201:20;;2232:14;2257:78;2272:1;2264:4;:9;2257:78;;2290:8;;;;;:::i;:::-;;;;2321:2;2313:10;;;;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2345:39;;2395:154;2411:1;2402:5;:10;2395:154;;2439:1;2429:11;;;;;:::i;:::-;;;2506:2;2498:5;:10;;;;:::i;:::-;2485:2;:24;;;;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2535:2;2526:11;;;;;:::i;:::-;;;2395:154;;;2573:6;2559:21;;;;;1865:723;;;;:::o;38119:126::-;;;;:::o;38630:125::-;;;;:::o;1029:127::-;1136:1;1118:7;:14;;;:19;;;;;;;;;;;1029:127;:::o;32390:110::-;32466:26;32476:2;32480:7;32466:26;;;;;;;;;;;;:9;:26::i;:::-;32390:110;;:::o;36748:799::-;36903:4;36924:15;:2;:13;;;:15::i;:::-;36920:620;;;36976:2;36960:36;;;36997:12;:10;:12::i;:::-;37011:4;37017:7;37026:5;36960:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36956:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37219:1;37202:6;:13;:18;37198:272;;;37245:60;;;;;;;;;;:::i;:::-;;;;;;;;37198:272;37420:6;37414:13;37405:6;37401:2;37397:15;37390:38;36956:529;37093:41;;;37083:51;;;:6;:51;;;;37076:58;;;;;36920:620;37524:4;37517:11;;36748:799;;;;;;;:::o;32727:321::-;32857:18;32863:2;32867:7;32857:5;:18::i;:::-;32908:54;32939:1;32943:2;32947:7;32956:5;32908:22;:54::i;:::-;32886:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32727:321;;;:::o;8280:326::-;8340:4;8597:1;8575:7;:19;;;:23;8568:30;;8280:326;;;:::o;33384:439::-;33478:1;33464:16;;:2;:16;;;;33456:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33537:16;33545:7;33537;:16::i;:::-;33536:17;33528:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33599:45;33628:1;33632:2;33636:7;33599:20;:45::i;:::-;33674:1;33657:9;:13;33667:2;33657:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33705:2;33686:7;:16;33694:7;33686:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33750:7;33746:2;33725:33;;33742:1;33725:33;;;;;;;;;;;;33771:44;33799:1;33803:2;33807:7;33771:19;:44::i;:::-;33384:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:179::-;7227:10;7248:46;7290:3;7282:6;7248:46;:::i;:::-;7326:4;7321:3;7317:14;7303:28;;7158:179;;;;:::o;7343:118::-;7430:24;7448:5;7430:24;:::i;:::-;7425:3;7418:37;7343:118;;:::o;7497:732::-;7616:3;7645:54;7693:5;7645:54;:::i;:::-;7715:86;7794:6;7789:3;7715:86;:::i;:::-;7708:93;;7825:56;7875:5;7825:56;:::i;:::-;7904:7;7935:1;7920:284;7945:6;7942:1;7939:13;7920:284;;;8021:6;8015:13;8048:63;8107:3;8092:13;8048:63;:::i;:::-;8041:70;;8134:60;8187:6;8134:60;:::i;:::-;8124:70;;7980:224;7967:1;7964;7960:9;7955:14;;7920:284;;;7924:14;8220:3;8213:10;;7621:608;;;7497:732;;;;:::o;8235:109::-;8316:21;8331:5;8316:21;:::i;:::-;8311:3;8304:34;8235:109;;:::o;8350:360::-;8436:3;8464:38;8496:5;8464:38;:::i;:::-;8518:70;8581:6;8576:3;8518:70;:::i;:::-;8511:77;;8597:52;8642:6;8637:3;8630:4;8623:5;8619:16;8597:52;:::i;:::-;8674:29;8696:6;8674:29;:::i;:::-;8669:3;8665:39;8658:46;;8440:270;8350:360;;;;:::o;8716:364::-;8804:3;8832:39;8865:5;8832:39;:::i;:::-;8887:71;8951:6;8946:3;8887:71;:::i;:::-;8880:78;;8967:52;9012:6;9007:3;9000:4;8993:5;8989:16;8967:52;:::i;:::-;9044:29;9066:6;9044:29;:::i;:::-;9039:3;9035:39;9028:46;;8808:272;8716:364;;;;:::o;9086:377::-;9192:3;9220:39;9253:5;9220:39;:::i;:::-;9275:89;9357:6;9352:3;9275:89;:::i;:::-;9268:96;;9373:52;9418:6;9413:3;9406:4;9399:5;9395:16;9373:52;:::i;:::-;9450:6;9445:3;9441:16;9434:23;;9196:267;9086:377;;;;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:::-;9983:3;10004:67;10068:2;10063:3;10004:67;:::i;:::-;9997:74;;10080:93;10169:3;10080:93;:::i;:::-;10198:2;10193:3;10189:12;10182:19;;9841:366;;;:::o;10213:::-;10355:3;10376:67;10440:2;10435:3;10376:67;:::i;:::-;10369:74;;10452:93;10541:3;10452:93;:::i;:::-;10570:2;10565:3;10561:12;10554:19;;10213:366;;;:::o;10585:::-;10727:3;10748:67;10812:2;10807:3;10748:67;:::i;:::-;10741:74;;10824:93;10913:3;10824:93;:::i;:::-;10942:2;10937:3;10933:12;10926:19;;10585:366;;;:::o;10957:::-;11099:3;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11196:93;11285:3;11196:93;:::i;:::-;11314:2;11309:3;11305:12;11298:19;;10957:366;;;:::o;11329:::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:::-;12215:3;12236:67;12300:2;12295:3;12236:67;:::i;:::-;12229:74;;12312:93;12401:3;12312:93;:::i;:::-;12430:2;12425:3;12421:12;12414:19;;12073:366;;;:::o;12445:::-;12587:3;12608:67;12672:2;12667:3;12608:67;:::i;:::-;12601:74;;12684:93;12773:3;12684:93;:::i;:::-;12802:2;12797:3;12793:12;12786:19;;12445:366;;;:::o;12817:::-;12959:3;12980:67;13044:2;13039:3;12980:67;:::i;:::-;12973:74;;13056:93;13145:3;13056:93;:::i;:::-;13174:2;13169:3;13165:12;13158:19;;12817:366;;;:::o;13189:::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:::-;13703:3;13724:67;13788:2;13783:3;13724:67;:::i;:::-;13717:74;;13800:93;13889:3;13800:93;:::i;:::-;13918:2;13913:3;13909:12;13902:19;;13561:366;;;:::o;13933:::-;14075:3;14096:67;14160:2;14155:3;14096:67;:::i;:::-;14089:74;;14172:93;14261:3;14172:93;:::i;:::-;14290:2;14285:3;14281:12;14274:19;;13933:366;;;:::o;14305:::-;14447:3;14468:67;14532:2;14527:3;14468:67;:::i;:::-;14461:74;;14544:93;14633:3;14544:93;:::i;:::-;14662:2;14657:3;14653:12;14646:19;;14305:366;;;:::o;14677:::-;14819:3;14840:67;14904:2;14899:3;14840:67;:::i;:::-;14833:74;;14916:93;15005:3;14916:93;:::i;:::-;15034:2;15029:3;15025:12;15018:19;;14677:366;;;:::o;15049:::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:::-;15563:3;15584:67;15648:2;15643:3;15584:67;:::i;:::-;15577:74;;15660:93;15749:3;15660:93;:::i;:::-;15778:2;15773:3;15769:12;15762:19;;15421:366;;;:::o;15793:398::-;15952:3;15973:83;16054:1;16049:3;15973:83;:::i;:::-;15966:90;;16065:93;16154:3;16065:93;:::i;:::-;16183:1;16178:3;16174:11;16167:18;;15793:398;;;:::o;16197:366::-;16339:3;16360:67;16424:2;16419:3;16360:67;:::i;:::-;16353:74;;16436:93;16525:3;16436:93;:::i;:::-;16554:2;16549:3;16545:12;16538:19;;16197:366;;;:::o;16569:::-;16711:3;16732:67;16796:2;16791:3;16732:67;:::i;:::-;16725:74;;16808:93;16897:3;16808:93;:::i;:::-;16926:2;16921:3;16917:12;16910:19;;16569:366;;;:::o;16941:::-;17083:3;17104:67;17168:2;17163:3;17104:67;:::i;:::-;17097:74;;17180:93;17269:3;17180:93;:::i;:::-;17298:2;17293:3;17289:12;17282:19;;16941:366;;;:::o;17313:108::-;17390:24;17408:5;17390:24;:::i;:::-;17385:3;17378:37;17313:108;;:::o;17427:118::-;17514:24;17532:5;17514:24;:::i;:::-;17509:3;17502:37;17427:118;;:::o;17551:435::-;17731:3;17753:95;17844:3;17835:6;17753:95;:::i;:::-;17746:102;;17865:95;17956:3;17947:6;17865:95;:::i;:::-;17858:102;;17977:3;17970:10;;17551:435;;;;;:::o;17992:379::-;18176:3;18198:147;18341:3;18198:147;:::i;:::-;18191:154;;18362:3;18355:10;;17992:379;;;:::o;18377:222::-;18470:4;18508:2;18497:9;18493:18;18485:26;;18521:71;18589:1;18578:9;18574:17;18565:6;18521:71;:::i;:::-;18377:222;;;;:::o;18605:640::-;18800:4;18838:3;18827:9;18823:19;18815:27;;18852:71;18920:1;18909:9;18905:17;18896:6;18852:71;:::i;:::-;18933:72;19001:2;18990:9;18986:18;18977:6;18933:72;:::i;:::-;19015;19083:2;19072:9;19068:18;19059:6;19015:72;:::i;:::-;19134:9;19128:4;19124:20;19119:2;19108:9;19104:18;19097:48;19162:76;19233:4;19224:6;19162:76;:::i;:::-;19154:84;;18605:640;;;;;;;:::o;19251:373::-;19394:4;19432:2;19421:9;19417:18;19409:26;;19481:9;19475:4;19471:20;19467:1;19456:9;19452:17;19445:47;19509:108;19612:4;19603:6;19509:108;:::i;:::-;19501:116;;19251:373;;;;:::o;19630:210::-;19717:4;19755:2;19744:9;19740:18;19732:26;;19768:65;19830:1;19819:9;19815:17;19806:6;19768:65;:::i;:::-;19630:210;;;;:::o;19846:313::-;19959:4;19997:2;19986:9;19982:18;19974:26;;20046:9;20040:4;20036:20;20032:1;20021:9;20017:17;20010:47;20074:78;20147:4;20138:6;20074:78;:::i;:::-;20066:86;;19846:313;;;;:::o;20165:419::-;20331:4;20369:2;20358:9;20354:18;20346:26;;20418:9;20412:4;20408:20;20404:1;20393:9;20389:17;20382:47;20446:131;20572:4;20446:131;:::i;:::-;20438:139;;20165:419;;;:::o;20590:::-;20756:4;20794:2;20783:9;20779:18;20771:26;;20843:9;20837:4;20833:20;20829:1;20818:9;20814:17;20807:47;20871:131;20997:4;20871:131;:::i;:::-;20863:139;;20590:419;;;:::o;21015:::-;21181:4;21219:2;21208:9;21204:18;21196:26;;21268:9;21262:4;21258:20;21254:1;21243:9;21239:17;21232:47;21296:131;21422:4;21296:131;:::i;:::-;21288:139;;21015:419;;;:::o;21440:::-;21606:4;21644:2;21633:9;21629:18;21621:26;;21693:9;21687:4;21683:20;21679:1;21668:9;21664:17;21657:47;21721:131;21847:4;21721:131;:::i;:::-;21713:139;;21440:419;;;:::o;21865:::-;22031:4;22069:2;22058:9;22054:18;22046:26;;22118:9;22112:4;22108:20;22104:1;22093:9;22089:17;22082:47;22146:131;22272:4;22146:131;:::i;:::-;22138:139;;21865:419;;;:::o;22290:::-;22456:4;22494:2;22483:9;22479:18;22471:26;;22543:9;22537:4;22533:20;22529:1;22518:9;22514:17;22507:47;22571:131;22697:4;22571:131;:::i;:::-;22563:139;;22290:419;;;:::o;22715:::-;22881:4;22919:2;22908:9;22904:18;22896:26;;22968:9;22962:4;22958:20;22954:1;22943:9;22939:17;22932:47;22996:131;23122:4;22996:131;:::i;:::-;22988:139;;22715:419;;;:::o;23140:::-;23306:4;23344:2;23333:9;23329:18;23321:26;;23393:9;23387:4;23383:20;23379:1;23368:9;23364:17;23357:47;23421:131;23547:4;23421:131;:::i;:::-;23413:139;;23140:419;;;:::o;23565:::-;23731:4;23769:2;23758:9;23754:18;23746:26;;23818:9;23812:4;23808:20;23804:1;23793:9;23789:17;23782:47;23846:131;23972:4;23846:131;:::i;:::-;23838:139;;23565:419;;;:::o;23990:::-;24156:4;24194:2;24183:9;24179:18;24171:26;;24243:9;24237:4;24233:20;24229:1;24218:9;24214:17;24207:47;24271:131;24397:4;24271:131;:::i;:::-;24263:139;;23990:419;;;:::o;24415:::-;24581:4;24619:2;24608:9;24604:18;24596:26;;24668:9;24662:4;24658:20;24654:1;24643:9;24639:17;24632:47;24696:131;24822:4;24696:131;:::i;:::-;24688:139;;24415:419;;;:::o;24840:::-;25006:4;25044:2;25033:9;25029:18;25021:26;;25093:9;25087:4;25083:20;25079:1;25068:9;25064:17;25057:47;25121:131;25247:4;25121:131;:::i;:::-;25113:139;;24840:419;;;:::o;25265:::-;25431:4;25469:2;25458:9;25454:18;25446:26;;25518:9;25512:4;25508:20;25504:1;25493:9;25489:17;25482:47;25546:131;25672:4;25546:131;:::i;:::-;25538:139;;25265:419;;;:::o;25690:::-;25856:4;25894:2;25883:9;25879:18;25871:26;;25943:9;25937:4;25933:20;25929:1;25918:9;25914:17;25907:47;25971:131;26097:4;25971:131;:::i;:::-;25963:139;;25690:419;;;:::o;26115:::-;26281:4;26319:2;26308:9;26304:18;26296:26;;26368:9;26362:4;26358:20;26354:1;26343:9;26339:17;26332:47;26396:131;26522:4;26396:131;:::i;:::-;26388:139;;26115:419;;;:::o;26540:::-;26706:4;26744:2;26733:9;26729:18;26721:26;;26793:9;26787:4;26783:20;26779:1;26768:9;26764:17;26757:47;26821:131;26947:4;26821:131;:::i;:::-;26813:139;;26540:419;;;:::o;26965:::-;27131:4;27169:2;27158:9;27154:18;27146:26;;27218:9;27212:4;27208:20;27204:1;27193:9;27189:17;27182:47;27246:131;27372:4;27246:131;:::i;:::-;27238:139;;26965:419;;;:::o;27390:::-;27556:4;27594:2;27583:9;27579:18;27571:26;;27643:9;27637:4;27633:20;27629:1;27618:9;27614:17;27607:47;27671:131;27797:4;27671:131;:::i;:::-;27663:139;;27390:419;;;:::o;27815:::-;27981:4;28019:2;28008:9;28004:18;27996:26;;28068:9;28062:4;28058:20;28054:1;28043:9;28039:17;28032:47;28096:131;28222:4;28096:131;:::i;:::-;28088:139;;27815:419;;;:::o;28240:::-;28406:4;28444:2;28433:9;28429:18;28421:26;;28493:9;28487:4;28483:20;28479:1;28468:9;28464:17;28457:47;28521:131;28647:4;28521:131;:::i;:::-;28513:139;;28240:419;;;:::o;28665:222::-;28758:4;28796:2;28785:9;28781:18;28773:26;;28809:71;28877:1;28866:9;28862:17;28853:6;28809:71;:::i;:::-;28665:222;;;;:::o;28893:129::-;28927:6;28954:20;;:::i;:::-;28944:30;;28983:33;29011:4;29003:6;28983:33;:::i;:::-;28893:129;;;:::o;29028:75::-;29061:6;29094:2;29088:9;29078:19;;29028:75;:::o;29109:307::-;29170:4;29260:18;29252:6;29249:30;29246:56;;;29282:18;;:::i;:::-;29246:56;29320:29;29342:6;29320:29;:::i;:::-;29312:37;;29404:4;29398;29394:15;29386:23;;29109:307;;;:::o;29422:308::-;29484:4;29574:18;29566:6;29563:30;29560:56;;;29596:18;;:::i;:::-;29560:56;29634:29;29656:6;29634:29;:::i;:::-;29626:37;;29718:4;29712;29708:15;29700:23;;29422:308;;;:::o;29736:132::-;29803:4;29826:3;29818:11;;29856:4;29851:3;29847:14;29839:22;;29736:132;;;:::o;29874:114::-;29941:6;29975:5;29969:12;29959:22;;29874:114;;;:::o;29994:98::-;30045:6;30079:5;30073:12;30063:22;;29994:98;;;:::o;30098:99::-;30150:6;30184:5;30178:12;30168:22;;30098:99;;;:::o;30203:113::-;30273:4;30305;30300:3;30296:14;30288:22;;30203:113;;;:::o;30322:184::-;30421:11;30455:6;30450:3;30443:19;30495:4;30490:3;30486:14;30471:29;;30322:184;;;;:::o;30512:168::-;30595:11;30629:6;30624:3;30617:19;30669:4;30664:3;30660:14;30645:29;;30512:168;;;;:::o;30686:147::-;30787:11;30824:3;30809:18;;30686:147;;;;:::o;30839:169::-;30923:11;30957:6;30952:3;30945:19;30997:4;30992:3;30988:14;30973:29;;30839:169;;;;:::o;31014:148::-;31116:11;31153:3;31138:18;;31014:148;;;;:::o;31168:305::-;31208:3;31227:20;31245:1;31227:20;:::i;:::-;31222:25;;31261:20;31279:1;31261:20;:::i;:::-;31256:25;;31415:1;31347:66;31343:74;31340:1;31337:81;31334:107;;;31421:18;;:::i;:::-;31334:107;31465:1;31462;31458:9;31451:16;;31168:305;;;;:::o;31479:185::-;31519:1;31536:20;31554:1;31536:20;:::i;:::-;31531:25;;31570:20;31588:1;31570:20;:::i;:::-;31565:25;;31609:1;31599:35;;31614:18;;:::i;:::-;31599:35;31656:1;31653;31649:9;31644:14;;31479:185;;;;:::o;31670:348::-;31710:7;31733:20;31751:1;31733:20;:::i;:::-;31728:25;;31767:20;31785:1;31767:20;:::i;:::-;31762:25;;31955:1;31887:66;31883:74;31880:1;31877:81;31872:1;31865:9;31858:17;31854:105;31851:131;;;31962:18;;:::i;:::-;31851:131;32010:1;32007;32003:9;31992:20;;31670:348;;;;:::o;32024:191::-;32064:4;32084:20;32102:1;32084:20;:::i;:::-;32079:25;;32118:20;32136:1;32118:20;:::i;:::-;32113:25;;32157:1;32154;32151:8;32148:34;;;32162:18;;:::i;:::-;32148:34;32207:1;32204;32200:9;32192:17;;32024:191;;;;:::o;32221:96::-;32258:7;32287:24;32305:5;32287:24;:::i;:::-;32276:35;;32221:96;;;:::o;32323:90::-;32357:7;32400:5;32393:13;32386:21;32375:32;;32323:90;;;:::o;32419:149::-;32455:7;32495:66;32488:5;32484:78;32473:89;;32419:149;;;:::o;32574:126::-;32611:7;32651:42;32644:5;32640:54;32629:65;;32574:126;;;:::o;32706:77::-;32743:7;32772:5;32761:16;;32706:77;;;:::o;32789:154::-;32873:6;32868:3;32863;32850:30;32935:1;32926:6;32921:3;32917:16;32910:27;32789:154;;;:::o;32949:307::-;33017:1;33027:113;33041:6;33038:1;33035:13;33027:113;;;33126:1;33121:3;33117:11;33111:18;33107:1;33102:3;33098:11;33091:39;33063:2;33060:1;33056:10;33051:15;;33027:113;;;33158:6;33155:1;33152:13;33149:101;;;33238:1;33229:6;33224:3;33220:16;33213:27;33149:101;32998:258;32949:307;;;:::o;33262:320::-;33306:6;33343:1;33337:4;33333:12;33323:22;;33390:1;33384:4;33380:12;33411:18;33401:81;;33467:4;33459:6;33455:17;33445:27;;33401:81;33529:2;33521:6;33518:14;33498:18;33495:38;33492:84;;;33548:18;;:::i;:::-;33492:84;33313:269;33262:320;;;:::o;33588:281::-;33671:27;33693:4;33671:27;:::i;:::-;33663:6;33659:40;33801:6;33789:10;33786:22;33765:18;33753:10;33750:34;33747:62;33744:88;;;33812:18;;:::i;:::-;33744:88;33852:10;33848:2;33841:22;33631:238;33588:281;;:::o;33875:233::-;33914:3;33937:24;33955:5;33937:24;:::i;:::-;33928:33;;33983:66;33976:5;33973:77;33970:103;;;34053:18;;:::i;:::-;33970:103;34100:1;34093:5;34089:13;34082:20;;33875:233;;;:::o;34114:176::-;34146:1;34163:20;34181:1;34163:20;:::i;:::-;34158:25;;34197:20;34215:1;34197:20;:::i;:::-;34192:25;;34236:1;34226:35;;34241:18;;:::i;:::-;34226:35;34282:1;34279;34275:9;34270:14;;34114:176;;;;:::o;34296:180::-;34344:77;34341:1;34334:88;34441:4;34438:1;34431:15;34465:4;34462:1;34455:15;34482:180;34530:77;34527:1;34520:88;34627:4;34624:1;34617:15;34651:4;34648:1;34641:15;34668:180;34716:77;34713:1;34706:88;34813:4;34810:1;34803:15;34837:4;34834:1;34827:15;34854:180;34902:77;34899:1;34892:88;34999:4;34996:1;34989:15;35023:4;35020:1;35013:15;35040:180;35088:77;35085:1;35078:88;35185:4;35182:1;35175:15;35209:4;35206:1;35199:15;35226:117;35335:1;35332;35325:12;35349:117;35458:1;35455;35448:12;35472:117;35581:1;35578;35571:12;35595:117;35704:1;35701;35694:12;35718:102;35759:6;35810:2;35806:7;35801:2;35794:5;35790:14;35786:28;35776:38;;35718:102;;;:::o;35826:237::-;35966:34;35962:1;35954:6;35950:14;35943:58;36035:20;36030:2;36022:6;36018:15;36011:45;35826:237;:::o;36069:225::-;36209:34;36205:1;36197:6;36193:14;36186:58;36278:8;36273:2;36265:6;36261:15;36254:33;36069:225;:::o;36300:224::-;36440:34;36436:1;36428:6;36424:14;36417:58;36509:7;36504:2;36496:6;36492:15;36485:32;36300:224;:::o;36530:178::-;36670:30;36666:1;36658:6;36654:14;36647:54;36530:178;:::o;36714:170::-;36854:22;36850:1;36842:6;36838:14;36831:46;36714:170;:::o;36890:223::-;37030:34;37026:1;37018:6;37014:14;37007:58;37099:6;37094:2;37086:6;37082:15;37075:31;36890:223;:::o;37119:175::-;37259:27;37255:1;37247:6;37243:14;37236:51;37119:175;:::o;37300:169::-;37440:21;37436:1;37428:6;37424:14;37417:45;37300:169;:::o;37475:231::-;37615:34;37611:1;37603:6;37599:14;37592:58;37684:14;37679:2;37671:6;37667:15;37660:39;37475:231;:::o;37712:243::-;37852:34;37848:1;37840:6;37836:14;37829:58;37921:26;37916:2;37908:6;37904:15;37897:51;37712:243;:::o;37961:229::-;38101:34;38097:1;38089:6;38085:14;38078:58;38170:12;38165:2;38157:6;38153:15;38146:37;37961:229;:::o;38196:228::-;38336:34;38332:1;38324:6;38320:14;38313:58;38405:11;38400:2;38392:6;38388:15;38381:36;38196:228;:::o;38430:182::-;38570:34;38566:1;38558:6;38554:14;38547:58;38430:182;:::o;38618:231::-;38758:34;38754:1;38746:6;38742:14;38735:58;38827:14;38822:2;38814:6;38810:15;38803:39;38618:231;:::o;38855:182::-;38995:34;38991:1;38983:6;38979:14;38972:58;38855:182;:::o;39043:234::-;39183:34;39179:1;39171:6;39167:14;39160:58;39252:17;39247:2;39239:6;39235:15;39228:42;39043:234;:::o;39283:220::-;39423:34;39419:1;39411:6;39407:14;39400:58;39492:3;39487:2;39479:6;39475:15;39468:28;39283:220;:::o;39509:114::-;;:::o;39629:170::-;39769:22;39765:1;39757:6;39753:14;39746:46;39629:170;:::o;39805:236::-;39945:34;39941:1;39933:6;39929:14;39922:58;40014:19;40009:2;40001:6;39997:15;39990:44;39805:236;:::o;40047:169::-;40187:21;40183:1;40175:6;40171:14;40164:45;40047:169;:::o;40222:122::-;40295:24;40313:5;40295:24;:::i;:::-;40288:5;40285:35;40275:63;;40334:1;40331;40324:12;40275:63;40222:122;:::o;40350:116::-;40420:21;40435:5;40420:21;:::i;:::-;40413:5;40410:32;40400:60;;40456:1;40453;40446:12;40400:60;40350:116;:::o;40472:120::-;40544:23;40561:5;40544:23;:::i;:::-;40537:5;40534:34;40524:62;;40582:1;40579;40572:12;40524:62;40472:120;:::o;40598:122::-;40671:24;40689:5;40671:24;:::i;:::-;40664:5;40661:35;40651:63;;40710:1;40707;40700:12;40651:63;40598:122;:::o
Swarm Source
ipfs://485d92cdcc5fe7273620593b0cd8cb0d68fc1fbc75533fec65e2059497d9412a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.