ERC-721
Source Code
Overview
Max Total Supply
21 KOD4
Holders
7
Transfers
-
0 (0%)
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
WTFisKod4
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-05-09
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
/**
* @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);
}
}
/**
* @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;
}
}
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
/**
* @dev 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;
}
}
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*
* Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct StakingInfo {
bool staked;
bool usedForMint;
uint duration;
}
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 internal currentIndex = 1;
// Token name
string private _name;
// Token symbol
string private _symbol;
string internal uri;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
mapping(uint => StakingInfo) public _stakedTokens;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return currentIndex - 1;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view override returns (uint256) {
require(index < totalSupply(), 'ERC721A: global index out of bounds');
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx;
address currOwnershipAddr;
// Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
unchecked {
for (uint256 i; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
}
revert('ERC721A: unable to get token of owner by index');
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), 'ERC721A: balance query for the zero address');
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(owner != address(0), 'ERC721A: number minted query for the zero address');
return uint256(_addressData[owner].numberMinted);
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');
unchecked {
for (uint256 curr = tokenId; curr >= 0; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
revert('ERC721A: unable to determine the owner of token');
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), "")) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return uri;
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, 'ERC721A: approval to current owner');
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
'ERC721A: approve caller is not owner nor approved for all'
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public override {
require(operator != _msgSender(), 'ERC721A: approve to caller');
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public override {
require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
require(!_stakedTokens[tokenId].staked, "TOKEN_STAKED!");
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
'ERC721A: transfer to non ERC721Receiver implementer'
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return tokenId < currentIndex && tokenId > 0;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), 'ERC721A: mint to the zero address');
require(quantity != 0, 'ERC721A: quantity must be greater than 0');
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
// updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint128(quantity);
_addressData[to].numberMinted += uint128(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
for (uint256 i; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
if (safe) {
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
'ERC721A: transfer to non ERC721Receiver implementer'
);
}
updatedIndex++;
}
currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');
require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
require(to != address(0), 'ERC721A: transfer to the zero address');
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId].addr = to;
_ownerships[tokenId].startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId].addr = prevOwnership.addr;
_ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert('ERC721A: transfer to non ERC721Receiver implementer');
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
contract WTFisKod4 is ERC721A, Ownable {
constructor() ERC721A("WTF is Kod4", "KOD4") {}
// ---------------------------------------------------------------------------------------------
// CONSTANTS
// ---------------------------------------------------------------------------------------------
uint256 private constant MAX_SUPPLY = 3333;
bool public saleStatus;
uint256 public price;
uint256 public freeMintPrice = 0;
uint256 public maxPerTx = 20;
uint256 public maxPerWallet = 41;
uint256 public maxFreePerTx = 1;
uint256 public maxFreePerWallet = 1;
// ---------------------------------------------------------------------------------------------
// MAPPINGS
// ---------------------------------------------------------------------------------------------
mapping(address => uint) public _minted;
// ---------------------------------------------------------------------------------------------
// OWNER SETTERS
// ---------------------------------------------------------------------------------------------
function withdraw() external onlyOwner {
payable(msg.sender).transfer(address(this).balance);
}
function setSaleStatus() external onlyOwner {
saleStatus = !saleStatus;
}
function setPrice(uint amount) external onlyOwner {
price = amount;
}
function setMaxPerTx(uint amount) external onlyOwner {
maxPerTx = amount;
}
function setMaxPerWallet(uint amount) external onlyOwner {
maxPerWallet = amount;
}
function setMaxFreePerTx(uint amount) external onlyOwner {
maxFreePerTx = amount;
}
function setMaxFreePerWallet(uint amount) external onlyOwner {
maxFreePerWallet = amount;
}
function setBaseURI(string calldata _uri) external onlyOwner {
uri = _uri;
}
// ---------------------------------------------------------------------------------------------
// PUBLIC SETTERS
// ---------------------------------------------------------------------------------------------
function ownerMint(uint256 amount) external onlyOwner {
require(currentIndex <= MAX_SUPPLY + 1, "NOT_ALLOWED!");
_safeMint(msg.sender, amount);
}
function mint(uint amount) external payable {
require(saleStatus, "SALE_NOT_ACTIVE!");
if(currentIndex <= 333){
require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
require(_minted[msg.sender] + amount <= maxFreePerWallet, "EXCEEDS_MAX_PER_WALLET!");
require(msg.value == freeMintPrice * amount, "INCORRECT_AMOUNT!");
_safeMint(msg.sender, amount);
_minted[msg.sender] += amount;
}
else{
require(amount * price == msg.value, "NOT_ENOUGH_MONEY!");
require(amount <= maxPerTx, "EXCEEDS_MAX_PER_TX!");
require(currentIndex <= MAX_SUPPLY + 1, "NOT_ENOUGH_TOKENS!");
require(_minted[msg.sender] + amount <= maxPerWallet, "EXCEEDS_MAX_PER_WALLET!");
_safeMint(msg.sender, amount);
_minted[msg.sender] += amount;
}
}
}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":"","type":"address"}],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_stakedTokens","outputs":[{"internalType":"bool","name":"staked","type":"bool"},{"internalType":"bool","name":"usedForMint","type":"bool"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260016000556000600b556014600c556029600d556001600e556001600f553480156200002f57600080fd5b506040518060400160405280600b81526020017f575446206973204b6f64340000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4f4434000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b4929190620001c4565b508060029080519060200190620000cd929190620001c4565b505050620000f0620000e4620000f660201b60201c565b620000fe60201b60201c565b620002d9565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d290620002a3565b90600052602060002090601f016020900481019282620001f6576000855562000242565b82601f106200021157805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024157825182559160200191906001019062000224565b5b50905062000251919062000255565b5090565b5b808211156200027057600081600090555060010162000256565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d262000274565b5b50919050565b6149e480620002e96000396000f3fe6080604052600436106102255760003560e01c80637dc949b211610123578063b88d4fde116100ab578063f19e75d41161006f578063f19e75d41461080a578063f2fde38b14610833578063f737c47a1461085c578063f9020e3314610887578063f968adbe146108b257610225565b8063b88d4fde14610715578063c6f6f2161461073e578063c87b56dd14610767578063e268e4d3146107a4578063e985e9c5146107cd57610225565b806395d89b41116100f257806395d89b411461064f578063a035b1fe1461067a578063a0712d68146106a5578063a22cb465146106c1578063a7027357146106ea57610225565b80637dc949b2146105935780637de77ecc146105be5780638da5cb5b146105fb57806391b7f5ed1461062657610225565b806340f070a8116101b157806355f804b31161017557806355f804b3146104b05780636352211e146104d95780636d7c4a4b1461051657806370a082311461053f578063715018a61461057c57610225565b806340f070a8146103df57806342842e0e14610408578063453c2310146104315780634f6ccce71461045c578063502b33af1461049957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd146103625780632f745c591461038b5780633ccfd60b146103c857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613198565b6108dd565b60405161025e91906131e0565b60405180910390f35b34801561027357600080fd5b5061027c610a27565b6040516102899190613294565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132ec565b610ab9565b6040516102c6919061335a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133a1565b610b3e565b005b34801561030457600080fd5b5061030d610c57565b60405161031a91906133f0565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906132ec565b610c6d565b6040516103599392919061340b565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613442565b610cb1565b005b34801561039757600080fd5b506103b260048036038101906103ad91906133a1565b610d25565b6040516103bf91906133f0565b60405180910390f35b3480156103d457600080fd5b506103dd610f17565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132ec565b610fdc565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613442565b611062565b005b34801561043d57600080fd5b506104466110e6565b60405161045391906133f0565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906132ec565b6110ec565b60405161049091906133f0565b60405180910390f35b3480156104a557600080fd5b506104ae61113f565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906134fa565b6111e7565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906132ec565b611279565b60405161050d919061335a565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906132ec565b61128f565b005b34801561054b57600080fd5b5061056660048036038101906105619190613547565b611315565b60405161057391906133f0565b60405180910390f35b34801561058857600080fd5b506105916113fe565b005b34801561059f57600080fd5b506105a8611486565b6040516105b591906133f0565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613547565b61148c565b6040516105f291906133f0565b60405180910390f35b34801561060757600080fd5b506106106114a4565b60405161061d919061335a565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906132ec565b6114ce565b005b34801561065b57600080fd5b50610664611554565b6040516106719190613294565b60405180910390f35b34801561068657600080fd5b5061068f6115e6565b60405161069c91906133f0565b60405180910390f35b6106bf60048036038101906106ba91906132ec565b6115ec565b005b3480156106cd57600080fd5b506106e860048036038101906106e391906135a0565b6119a8565b005b3480156106f657600080fd5b506106ff611b29565b60405161070c91906133f0565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613710565b611b2f565b005b34801561074a57600080fd5b50610765600480360381019061076091906132ec565b611bef565b005b34801561077357600080fd5b5061078e600480360381019061078991906132ec565b611c75565b60405161079b9190613294565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906132ec565b611d1d565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613793565b611da3565b60405161080191906131e0565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906132ec565b611e37565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613547565b611f13565b005b34801561086857600080fd5b5061087161200b565b60405161087e91906133f0565b60405180910390f35b34801561089357600080fd5b5061089c612011565b6040516108a991906131e0565b60405180910390f35b3480156108be57600080fd5b506108c7612024565b6040516108d491906133f0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f8261202a565b5b9050919050565b606060018054610a3690613802565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290613802565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612094565b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906138a6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4982611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613938565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd96120ad565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c026120ad565b611da3565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906139ca565b60405180910390fd5b610c528383836120b5565b505050565b60006001600054610c689190613a19565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a99565b60405180910390fd5b610d20838383612167565b505050565b6000610d3083611315565b8210610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613b2b565b60405180910390fd5b6000610d7b610c57565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec75786841415610ebe578195505050505050610f11565b83806001019450505b508080600101915050610d83565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613bbd565b60405180910390fd5b92915050565b610f1f6120ad565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613c29565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fd9573d6000803e3d6000fd5b50565b610fe46120ad565b73ffffffffffffffffffffffffffffffffffffffff166110026114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613c29565b60405180910390fd5b80600e8190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613a99565b60405180910390fd5b6110e183838360405180602001604052806000815250611b2f565b505050565b600d5481565b60006110f6610c57565b8210611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613cbb565b60405180910390fd5b819050919050565b6111476120ad565b73ffffffffffffffffffffffffffffffffffffffff166111656114a4565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613c29565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b6111ef6120ad565b73ffffffffffffffffffffffffffffffffffffffff1661120d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613c29565b60405180910390fd5b81816003919061127492919061304f565b505050565b6000611284826126a7565b600001519050919050565b6112976120ad565b73ffffffffffffffffffffffffffffffffffffffff166112b56114a4565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613c29565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613d4d565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114066120ad565b73ffffffffffffffffffffffffffffffffffffffff166114246114a4565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613c29565b60405180910390fd5b6114846000612841565b565b600e5481565b60106020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d66120ad565b73ffffffffffffffffffffffffffffffffffffffff166114f46114a4565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613c29565b60405180910390fd5b80600a8190555050565b60606002805461156390613802565b80601f016020809104026020016040519081016040528092919081815260200182805461158f90613802565b80156115dc5780601f106115b1576101008083540402835291602001916115dc565b820191906000526020600020905b8154815290600101906020018083116115bf57829003601f168201915b5050505050905090565b600a5481565b600960149054906101000a900460ff1661163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613db9565b60405180910390fd5b61014d600054116117ce57600e5481111561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613e25565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d99190613e45565b111561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613ee7565b60405180910390fd5b80600b546117289190613f07565b3414611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613fad565b60405180910390fd5b6117733382612907565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c29190613e45565b925050819055506119a5565b34600a54826117dd9190613f07565b1461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614019565b60405180910390fd5b600c54811115611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613e25565b60405180910390fd5b6001610d056118719190613e45565b60005411156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614085565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119039190613e45565b1115611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613ee7565b60405180910390fd5b61194e3382612907565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199d9190613e45565b925050819055505b50565b6119b06120ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a15906140f1565b60405180910390fd5b8060076000611a2b6120ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad86120ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1d91906131e0565b60405180910390a35050565b600f5481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613a99565b60405180910390fd5b611b9e848484612167565b611baa84848484612925565b611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090614183565b60405180910390fd5b50505050565b611bf76120ad565b73ffffffffffffffffffffffffffffffffffffffff16611c156114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613c29565b60405180910390fd5b80600c8190555050565b6060611c8082612094565b611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690614215565b60405180910390fd5b6000611cc9612aad565b9050600081511415611cea5760405180602001604052806000815250611d15565b80611cf484612b3f565b604051602001611d05929190614297565b6040516020818303038152906040525b915050919050565b611d256120ad565b73ffffffffffffffffffffffffffffffffffffffff16611d436114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090613c29565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3f6120ad565b73ffffffffffffffffffffffffffffffffffffffff16611e5d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90613c29565b60405180910390fd5b6001610d05611ec29190613e45565b6000541115611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614312565b60405180910390fd5b611f103382612907565b50565b611f1b6120ad565b73ffffffffffffffffffffffffffffffffffffffff16611f396114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690613c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff6906143a4565b60405180910390fd5b61200881612841565b50565b600b5481565b600960149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156120a65750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612172826126a7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121996120ad565b73ffffffffffffffffffffffffffffffffffffffff1614806121f557506121be6120ad565b73ffffffffffffffffffffffffffffffffffffffff166121dd84610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b806122115750612210826000015161220b6120ad565b611da3565b5b905080612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a90614436565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc906144c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c9061455a565b60405180910390fd5b6123428585856001612ca0565b61235260008484600001516120b5565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126375761259681612094565b156126365782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126a08585856001612ca6565b5050505050565b6126af6130d5565b6126b882612094565b6126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee906145ec565b60405180910390fd5b60008290505b60008110612800576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f157809250505061283c565b508080600190039150506126fd565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128339061467e565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612921828260405180602001604052806000815250612cac565b5050565b60006129468473ffffffffffffffffffffffffffffffffffffffff16612cbe565b15612aa0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296f6120ad565b8786866040518563ffffffff1660e01b815260040161299194939291906146f3565b6020604051808303816000875af19250505080156129cd57506040513d601f19601f820116820180604052508101906129ca9190614754565b60015b612a50573d80600081146129fd576040519150601f19603f3d011682016040523d82523d6000602084013e612a02565b606091505b50600081511415612a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3f90614183565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa5565b600190505b949350505050565b606060038054612abc90613802565b80601f0160208091040260200160405190810160405280929190818152602001828054612ae890613802565b8015612b355780601f10612b0a57610100808354040283529160200191612b35565b820191906000526020600020905b815481529060010190602001808311612b1857829003601f168201915b5050505050905090565b60606000821415612b87576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c9b565b600082905060005b60008214612bb9578080612ba290614781565b915050600a82612bb291906147f9565b9150612b8f565b60008167ffffffffffffffff811115612bd557612bd46135e5565b5b6040519080825280601f01601f191660200182016040528015612c075781602001600182028036833780820191505090505b5090505b60008514612c9457600182612c209190613a19565b9150600a85612c2f919061482a565b6030612c3b9190613e45565b60f81b818381518110612c5157612c5061485b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c8d91906147f9565b9450612c0b565b8093505050505b919050565b50505050565b50505050565b612cb98383836001612cd1565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e906148fc565b60405180910390fd5b6000841415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d829061498e565b60405180910390fd5b612d986000868387612ca0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561303257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561301d57612fdd6000888488612925565b61301c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301390614183565b60405180910390fd5b5b81806001019250508080600101915050612f66565b5080600081905550506130486000868387612ca6565b5050505050565b82805461305b90613802565b90600052602060002090601f01602090048101928261307d57600085556130c4565b82601f1061309657803560ff19168380011785556130c4565b828001600101855582156130c4579182015b828111156130c35782358255916020019190600101906130a8565b5b5090506130d1919061310f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613128576000816000905550600101613110565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61317581613140565b811461318057600080fd5b50565b6000813590506131928161316c565b92915050565b6000602082840312156131ae576131ad613136565b5b60006131bc84828501613183565b91505092915050565b60008115159050919050565b6131da816131c5565b82525050565b60006020820190506131f560008301846131d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561323557808201518184015260208101905061321a565b83811115613244576000848401525b50505050565b6000601f19601f8301169050919050565b6000613266826131fb565b6132708185613206565b9350613280818560208601613217565b6132898161324a565b840191505092915050565b600060208201905081810360008301526132ae818461325b565b905092915050565b6000819050919050565b6132c9816132b6565b81146132d457600080fd5b50565b6000813590506132e6816132c0565b92915050565b60006020828403121561330257613301613136565b5b6000613310848285016132d7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334482613319565b9050919050565b61335481613339565b82525050565b600060208201905061336f600083018461334b565b92915050565b61337e81613339565b811461338957600080fd5b50565b60008135905061339b81613375565b92915050565b600080604083850312156133b8576133b7613136565b5b60006133c68582860161338c565b92505060206133d7858286016132d7565b9150509250929050565b6133ea816132b6565b82525050565b600060208201905061340560008301846133e1565b92915050565b600060608201905061342060008301866131d1565b61342d60208301856131d1565b61343a60408301846133e1565b949350505050565b60008060006060848603121561345b5761345a613136565b5b60006134698682870161338c565b935050602061347a8682870161338c565b925050604061348b868287016132d7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126134ba576134b9613495565b5b8235905067ffffffffffffffff8111156134d7576134d661349a565b5b6020830191508360018202830111156134f3576134f261349f565b5b9250929050565b6000806020838503121561351157613510613136565b5b600083013567ffffffffffffffff81111561352f5761352e61313b565b5b61353b858286016134a4565b92509250509250929050565b60006020828403121561355d5761355c613136565b5b600061356b8482850161338c565b91505092915050565b61357d816131c5565b811461358857600080fd5b50565b60008135905061359a81613574565b92915050565b600080604083850312156135b7576135b6613136565b5b60006135c58582860161338c565b92505060206135d68582860161358b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61361d8261324a565b810181811067ffffffffffffffff8211171561363c5761363b6135e5565b5b80604052505050565b600061364f61312c565b905061365b8282613614565b919050565b600067ffffffffffffffff82111561367b5761367a6135e5565b5b6136848261324a565b9050602081019050919050565b82818337600083830152505050565b60006136b36136ae84613660565b613645565b9050828152602081018484840111156136cf576136ce6135e0565b5b6136da848285613691565b509392505050565b600082601f8301126136f7576136f6613495565b5b81356137078482602086016136a0565b91505092915050565b6000806000806080858703121561372a57613729613136565b5b60006137388782880161338c565b94505060206137498782880161338c565b935050604061375a878288016132d7565b925050606085013567ffffffffffffffff81111561377b5761377a61313b565b5b613787878288016136e2565b91505092959194509250565b600080604083850312156137aa576137a9613136565b5b60006137b88582860161338c565b92505060206137c98582860161338c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381a57607f821691505b6020821081141561382e5761382d6137d3565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613890602d83613206565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613922602283613206565b915061392d826138c6565b604082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139b4603983613206565b91506139bf82613958565b604082019050919050565b600060208201905081810360008301526139e3816139a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a24826132b6565b9150613a2f836132b6565b925082821015613a4257613a416139ea565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613a83600d83613206565b9150613a8e82613a4d565b602082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b15602283613206565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613ba7602e83613206565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c13602083613206565b9150613c1e82613bdd565b602082019050919050565b60006020820190508181036000830152613c4281613c06565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca5602383613206565b9150613cb082613c49565b604082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613d37602b83613206565b9150613d4282613cdb565b604082019050919050565b60006020820190508181036000830152613d6681613d2a565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613da3601083613206565b9150613dae82613d6d565b602082019050919050565b60006020820190508181036000830152613dd281613d96565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613e0f601383613206565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b6000613e50826132b6565b9150613e5b836132b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9057613e8f6139ea565b5b828201905092915050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613ed1601783613206565b9150613edc82613e9b565b602082019050919050565b60006020820190508181036000830152613f0081613ec4565b9050919050565b6000613f12826132b6565b9150613f1d836132b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5657613f556139ea565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613f97601183613206565b9150613fa282613f61565b602082019050919050565b60006020820190508181036000830152613fc681613f8a565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000614003601183613206565b915061400e82613fcd565b602082019050919050565b6000602082019050818103600083015261403281613ff6565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b600061406f601283613206565b915061407a82614039565b602082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006140db601a83613206565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061416d603383613206565b915061417882614111565b604082019050919050565b6000602082019050818103600083015261419c81614160565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006141ff602f83613206565b915061420a826141a3565b604082019050919050565b6000602082019050818103600083015261422e816141f2565b9050919050565b600081905092915050565b600061424b826131fb565b6142558185614235565b9350614265818560208601613217565b80840191505092915050565b50565b6000614281600083614235565b915061428c82614271565b600082019050919050565b60006142a38285614240565b91506142af8284614240565b91506142ba82614274565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b60006142fc600c83613206565b9150614307826142c6565b602082019050919050565b6000602082019050818103600083015261432b816142ef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061438e602683613206565b915061439982614332565b604082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614420603283613206565b915061442b826143c4565b604082019050919050565b6000602082019050818103600083015261444f81614413565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006144b2602683613206565b91506144bd82614456565b604082019050919050565b600060208201905081810360008301526144e1816144a5565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614544602583613206565b915061454f826144e8565b604082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006145d6602a83613206565b91506145e18261457a565b604082019050919050565b60006020820190508181036000830152614605816145c9565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614668602f83613206565b91506146738261460c565b604082019050919050565b600060208201905081810360008301526146978161465b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006146c58261469e565b6146cf81856146a9565b93506146df818560208601613217565b6146e88161324a565b840191505092915050565b6000608082019050614708600083018761334b565b614715602083018661334b565b61472260408301856133e1565b818103606083015261473481846146ba565b905095945050505050565b60008151905061474e8161316c565b92915050565b60006020828403121561476a57614769613136565b5b60006147788482850161473f565b91505092915050565b600061478c826132b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147bf576147be6139ea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614804826132b6565b915061480f836132b6565b92508261481f5761481e6147ca565b5b828204905092915050565b6000614835826132b6565b9150614840836132b6565b9250826148505761484f6147ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148e6602183613206565b91506148f18261488a565b604082019050919050565b60006020820190508181036000830152614915816148d9565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614978602883613206565b91506149838261491c565b604082019050919050565b600060208201905081810360008301526149a78161496b565b905091905056fea26469706673582212202fde33c24e8813fc714e311b1815dcbfd60c879503f6ee8ad1ad0a469fba7ed664736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102255760003560e01c80637dc949b211610123578063b88d4fde116100ab578063f19e75d41161006f578063f19e75d41461080a578063f2fde38b14610833578063f737c47a1461085c578063f9020e3314610887578063f968adbe146108b257610225565b8063b88d4fde14610715578063c6f6f2161461073e578063c87b56dd14610767578063e268e4d3146107a4578063e985e9c5146107cd57610225565b806395d89b41116100f257806395d89b411461064f578063a035b1fe1461067a578063a0712d68146106a5578063a22cb465146106c1578063a7027357146106ea57610225565b80637dc949b2146105935780637de77ecc146105be5780638da5cb5b146105fb57806391b7f5ed1461062657610225565b806340f070a8116101b157806355f804b31161017557806355f804b3146104b05780636352211e146104d95780636d7c4a4b1461051657806370a082311461053f578063715018a61461057c57610225565b806340f070a8146103df57806342842e0e14610408578063453c2310146104315780634f6ccce71461045c578063502b33af1461049957610225565b806318160ddd116101f857806318160ddd146102f8578063204f490c1461032357806323b872dd146103625780632f745c591461038b5780633ccfd60b146103c857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613198565b6108dd565b60405161025e91906131e0565b60405180910390f35b34801561027357600080fd5b5061027c610a27565b6040516102899190613294565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132ec565b610ab9565b6040516102c6919061335a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f191906133a1565b610b3e565b005b34801561030457600080fd5b5061030d610c57565b60405161031a91906133f0565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906132ec565b610c6d565b6040516103599392919061340b565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613442565b610cb1565b005b34801561039757600080fd5b506103b260048036038101906103ad91906133a1565b610d25565b6040516103bf91906133f0565b60405180910390f35b3480156103d457600080fd5b506103dd610f17565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132ec565b610fdc565b005b34801561041457600080fd5b5061042f600480360381019061042a9190613442565b611062565b005b34801561043d57600080fd5b506104466110e6565b60405161045391906133f0565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906132ec565b6110ec565b60405161049091906133f0565b60405180910390f35b3480156104a557600080fd5b506104ae61113f565b005b3480156104bc57600080fd5b506104d760048036038101906104d291906134fa565b6111e7565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906132ec565b611279565b60405161050d919061335a565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906132ec565b61128f565b005b34801561054b57600080fd5b5061056660048036038101906105619190613547565b611315565b60405161057391906133f0565b60405180910390f35b34801561058857600080fd5b506105916113fe565b005b34801561059f57600080fd5b506105a8611486565b6040516105b591906133f0565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190613547565b61148c565b6040516105f291906133f0565b60405180910390f35b34801561060757600080fd5b506106106114a4565b60405161061d919061335a565b60405180910390f35b34801561063257600080fd5b5061064d600480360381019061064891906132ec565b6114ce565b005b34801561065b57600080fd5b50610664611554565b6040516106719190613294565b60405180910390f35b34801561068657600080fd5b5061068f6115e6565b60405161069c91906133f0565b60405180910390f35b6106bf60048036038101906106ba91906132ec565b6115ec565b005b3480156106cd57600080fd5b506106e860048036038101906106e391906135a0565b6119a8565b005b3480156106f657600080fd5b506106ff611b29565b60405161070c91906133f0565b60405180910390f35b34801561072157600080fd5b5061073c60048036038101906107379190613710565b611b2f565b005b34801561074a57600080fd5b50610765600480360381019061076091906132ec565b611bef565b005b34801561077357600080fd5b5061078e600480360381019061078991906132ec565b611c75565b60405161079b9190613294565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906132ec565b611d1d565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613793565b611da3565b60405161080191906131e0565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c91906132ec565b611e37565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613547565b611f13565b005b34801561086857600080fd5b5061087161200b565b60405161087e91906133f0565b60405180910390f35b34801561089357600080fd5b5061089c612011565b6040516108a991906131e0565b60405180910390f35b3480156108be57600080fd5b506108c7612024565b6040516108d491906133f0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a205750610a1f8261202a565b5b9050919050565b606060018054610a3690613802565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290613802565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac482612094565b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa906138a6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4982611279565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb190613938565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd96120ad565b73ffffffffffffffffffffffffffffffffffffffff161480610c085750610c0781610c026120ad565b611da3565b5b610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906139ca565b60405180910390fd5b610c528383836120b5565b505050565b60006001600054610c689190613a19565b905090565b60086020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060010154905083565b6008600082815260200190815260200160002060000160009054906101000a900460ff1615610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a99565b60405180910390fd5b610d20838383612167565b505050565b6000610d3083611315565b8210610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890613b2b565b60405180910390fd5b6000610d7b610c57565b905060008060005b83811015610ed5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e7557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec75786841415610ebe578195505050505050610f11565b83806001019450505b508080600101915050610d83565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613bbd565b60405180910390fd5b92915050565b610f1f6120ad565b73ffffffffffffffffffffffffffffffffffffffff16610f3d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613c29565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fd9573d6000803e3d6000fd5b50565b610fe46120ad565b73ffffffffffffffffffffffffffffffffffffffff166110026114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90613c29565b60405180910390fd5b80600e8190555050565b6008600082815260200190815260200160002060000160009054906101000a900460ff16156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613a99565b60405180910390fd5b6110e183838360405180602001604052806000815250611b2f565b505050565b600d5481565b60006110f6610c57565b8210611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613cbb565b60405180910390fd5b819050919050565b6111476120ad565b73ffffffffffffffffffffffffffffffffffffffff166111656114a4565b73ffffffffffffffffffffffffffffffffffffffff16146111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290613c29565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b6111ef6120ad565b73ffffffffffffffffffffffffffffffffffffffff1661120d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613c29565b60405180910390fd5b81816003919061127492919061304f565b505050565b6000611284826126a7565b600001519050919050565b6112976120ad565b73ffffffffffffffffffffffffffffffffffffffff166112b56114a4565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613c29565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613d4d565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114066120ad565b73ffffffffffffffffffffffffffffffffffffffff166114246114a4565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147190613c29565b60405180910390fd5b6114846000612841565b565b600e5481565b60106020528060005260406000206000915090505481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d66120ad565b73ffffffffffffffffffffffffffffffffffffffff166114f46114a4565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613c29565b60405180910390fd5b80600a8190555050565b60606002805461156390613802565b80601f016020809104026020016040519081016040528092919081815260200182805461158f90613802565b80156115dc5780601f106115b1576101008083540402835291602001916115dc565b820191906000526020600020905b8154815290600101906020018083116115bf57829003601f168201915b5050505050905090565b600a5481565b600960149054906101000a900460ff1661163b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163290613db9565b60405180910390fd5b61014d600054116117ce57600e5481111561168b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168290613e25565b60405180910390fd5b600f5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116d99190613e45565b111561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613ee7565b60405180910390fd5b80600b546117289190613f07565b3414611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613fad565b60405180910390fd5b6117733382612907565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c29190613e45565b925050819055506119a5565b34600a54826117dd9190613f07565b1461181d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181490614019565b60405180910390fd5b600c54811115611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613e25565b60405180910390fd5b6001610d056118719190613e45565b60005411156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614085565b60405180910390fd5b600d5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119039190613e45565b1115611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613ee7565b60405180910390fd5b61194e3382612907565b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199d9190613e45565b925050819055505b50565b6119b06120ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a15906140f1565b60405180910390fd5b8060076000611a2b6120ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ad86120ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b1d91906131e0565b60405180910390a35050565b600f5481565b6008600083815260200190815260200160002060000160009054906101000a900460ff1615611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613a99565b60405180910390fd5b611b9e848484612167565b611baa84848484612925565b611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090614183565b60405180910390fd5b50505050565b611bf76120ad565b73ffffffffffffffffffffffffffffffffffffffff16611c156114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6290613c29565b60405180910390fd5b80600c8190555050565b6060611c8082612094565b611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb690614215565b60405180910390fd5b6000611cc9612aad565b9050600081511415611cea5760405180602001604052806000815250611d15565b80611cf484612b3f565b604051602001611d05929190614297565b6040516020818303038152906040525b915050919050565b611d256120ad565b73ffffffffffffffffffffffffffffffffffffffff16611d436114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9090613c29565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e3f6120ad565b73ffffffffffffffffffffffffffffffffffffffff16611e5d6114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eaa90613c29565b60405180910390fd5b6001610d05611ec29190613e45565b6000541115611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614312565b60405180910390fd5b611f103382612907565b50565b611f1b6120ad565b73ffffffffffffffffffffffffffffffffffffffff16611f396114a4565b73ffffffffffffffffffffffffffffffffffffffff1614611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690613c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff6906143a4565b60405180910390fd5b61200881612841565b50565b600b5481565b600960149054906101000a900460ff1681565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156120a65750600082115b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612172826126a7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121996120ad565b73ffffffffffffffffffffffffffffffffffffffff1614806121f557506121be6120ad565b73ffffffffffffffffffffffffffffffffffffffff166121dd84610ab9565b73ffffffffffffffffffffffffffffffffffffffff16145b806122115750612210826000015161220b6120ad565b611da3565b5b905080612253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224a90614436565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc906144c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c9061455a565b60405180910390fd5b6123428585856001612ca0565b61235260008484600001516120b5565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126375761259681612094565b156126365782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126a08585856001612ca6565b5050505050565b6126af6130d5565b6126b882612094565b6126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee906145ec565b60405180910390fd5b60008290505b60008110612800576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f157809250505061283c565b508080600190039150506126fd565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128339061467e565b60405180910390fd5b919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612921828260405180602001604052806000815250612cac565b5050565b60006129468473ffffffffffffffffffffffffffffffffffffffff16612cbe565b15612aa0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261296f6120ad565b8786866040518563ffffffff1660e01b815260040161299194939291906146f3565b6020604051808303816000875af19250505080156129cd57506040513d601f19601f820116820180604052508101906129ca9190614754565b60015b612a50573d80600081146129fd576040519150601f19603f3d011682016040523d82523d6000602084013e612a02565b606091505b50600081511415612a48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3f90614183565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa5565b600190505b949350505050565b606060038054612abc90613802565b80601f0160208091040260200160405190810160405280929190818152602001828054612ae890613802565b8015612b355780601f10612b0a57610100808354040283529160200191612b35565b820191906000526020600020905b815481529060010190602001808311612b1857829003601f168201915b5050505050905090565b60606000821415612b87576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c9b565b600082905060005b60008214612bb9578080612ba290614781565b915050600a82612bb291906147f9565b9150612b8f565b60008167ffffffffffffffff811115612bd557612bd46135e5565b5b6040519080825280601f01601f191660200182016040528015612c075781602001600182028036833780820191505090505b5090505b60008514612c9457600182612c209190613a19565b9150600a85612c2f919061482a565b6030612c3b9190613e45565b60f81b818381518110612c5157612c5061485b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c8d91906147f9565b9450612c0b565b8093505050505b919050565b50505050565b50505050565b612cb98383836001612cd1565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e906148fc565b60405180910390fd5b6000841415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d829061498e565b60405180910390fd5b612d986000868387612ca0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561303257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561301d57612fdd6000888488612925565b61301c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301390614183565b60405180910390fd5b5b81806001019250508080600101915050612f66565b5080600081905550506130486000868387612ca6565b5050505050565b82805461305b90613802565b90600052602060002090601f01602090048101928261307d57600085556130c4565b82601f1061309657803560ff19168380011785556130c4565b828001600101855582156130c4579182015b828111156130c35782358255916020019190600101906130a8565b5b5090506130d1919061310f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613128576000816000905550600101613110565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61317581613140565b811461318057600080fd5b50565b6000813590506131928161316c565b92915050565b6000602082840312156131ae576131ad613136565b5b60006131bc84828501613183565b91505092915050565b60008115159050919050565b6131da816131c5565b82525050565b60006020820190506131f560008301846131d1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561323557808201518184015260208101905061321a565b83811115613244576000848401525b50505050565b6000601f19601f8301169050919050565b6000613266826131fb565b6132708185613206565b9350613280818560208601613217565b6132898161324a565b840191505092915050565b600060208201905081810360008301526132ae818461325b565b905092915050565b6000819050919050565b6132c9816132b6565b81146132d457600080fd5b50565b6000813590506132e6816132c0565b92915050565b60006020828403121561330257613301613136565b5b6000613310848285016132d7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334482613319565b9050919050565b61335481613339565b82525050565b600060208201905061336f600083018461334b565b92915050565b61337e81613339565b811461338957600080fd5b50565b60008135905061339b81613375565b92915050565b600080604083850312156133b8576133b7613136565b5b60006133c68582860161338c565b92505060206133d7858286016132d7565b9150509250929050565b6133ea816132b6565b82525050565b600060208201905061340560008301846133e1565b92915050565b600060608201905061342060008301866131d1565b61342d60208301856131d1565b61343a60408301846133e1565b949350505050565b60008060006060848603121561345b5761345a613136565b5b60006134698682870161338c565b935050602061347a8682870161338c565b925050604061348b868287016132d7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126134ba576134b9613495565b5b8235905067ffffffffffffffff8111156134d7576134d661349a565b5b6020830191508360018202830111156134f3576134f261349f565b5b9250929050565b6000806020838503121561351157613510613136565b5b600083013567ffffffffffffffff81111561352f5761352e61313b565b5b61353b858286016134a4565b92509250509250929050565b60006020828403121561355d5761355c613136565b5b600061356b8482850161338c565b91505092915050565b61357d816131c5565b811461358857600080fd5b50565b60008135905061359a81613574565b92915050565b600080604083850312156135b7576135b6613136565b5b60006135c58582860161338c565b92505060206135d68582860161358b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61361d8261324a565b810181811067ffffffffffffffff8211171561363c5761363b6135e5565b5b80604052505050565b600061364f61312c565b905061365b8282613614565b919050565b600067ffffffffffffffff82111561367b5761367a6135e5565b5b6136848261324a565b9050602081019050919050565b82818337600083830152505050565b60006136b36136ae84613660565b613645565b9050828152602081018484840111156136cf576136ce6135e0565b5b6136da848285613691565b509392505050565b600082601f8301126136f7576136f6613495565b5b81356137078482602086016136a0565b91505092915050565b6000806000806080858703121561372a57613729613136565b5b60006137388782880161338c565b94505060206137498782880161338c565b935050604061375a878288016132d7565b925050606085013567ffffffffffffffff81111561377b5761377a61313b565b5b613787878288016136e2565b91505092959194509250565b600080604083850312156137aa576137a9613136565b5b60006137b88582860161338c565b92505060206137c98582860161338c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381a57607f821691505b6020821081141561382e5761382d6137d3565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613890602d83613206565b915061389b82613834565b604082019050919050565b600060208201905081810360008301526138bf81613883565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613922602283613206565b915061392d826138c6565b604082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006139b4603983613206565b91506139bf82613958565b604082019050919050565b600060208201905081810360008301526139e3816139a7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a24826132b6565b9150613a2f836132b6565b925082821015613a4257613a416139ea565b5b828203905092915050565b7f544f4b454e5f5354414b45442100000000000000000000000000000000000000600082015250565b6000613a83600d83613206565b9150613a8e82613a4d565b602082019050919050565b60006020820190508181036000830152613ab281613a76565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b15602283613206565b9150613b2082613ab9565b604082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613ba7602e83613206565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c13602083613206565b9150613c1e82613bdd565b602082019050919050565b60006020820190508181036000830152613c4281613c06565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613ca5602383613206565b9150613cb082613c49565b604082019050919050565b60006020820190508181036000830152613cd481613c98565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613d37602b83613206565b9150613d4282613cdb565b604082019050919050565b60006020820190508181036000830152613d6681613d2a565b9050919050565b7f53414c455f4e4f545f4143544956452100000000000000000000000000000000600082015250565b6000613da3601083613206565b9150613dae82613d6d565b602082019050919050565b60006020820190508181036000830152613dd281613d96565b9050919050565b7f455843454544535f4d41585f5045525f54582100000000000000000000000000600082015250565b6000613e0f601383613206565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b6000613e50826132b6565b9150613e5b836132b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9057613e8f6139ea565b5b828201905092915050565b7f455843454544535f4d41585f5045525f57414c4c455421000000000000000000600082015250565b6000613ed1601783613206565b9150613edc82613e9b565b602082019050919050565b60006020820190508181036000830152613f0081613ec4565b9050919050565b6000613f12826132b6565b9150613f1d836132b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f5657613f556139ea565b5b828202905092915050565b7f494e434f52524543545f414d4f554e5421000000000000000000000000000000600082015250565b6000613f97601183613206565b9150613fa282613f61565b602082019050919050565b60006020820190508181036000830152613fc681613f8a565b9050919050565b7f4e4f545f454e4f5547485f4d4f4e455921000000000000000000000000000000600082015250565b6000614003601183613206565b915061400e82613fcd565b602082019050919050565b6000602082019050818103600083015261403281613ff6565b9050919050565b7f4e4f545f454e4f5547485f544f4b454e53210000000000000000000000000000600082015250565b600061406f601283613206565b915061407a82614039565b602082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006140db601a83613206565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061416d603383613206565b915061417882614111565b604082019050919050565b6000602082019050818103600083015261419c81614160565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006141ff602f83613206565b915061420a826141a3565b604082019050919050565b6000602082019050818103600083015261422e816141f2565b9050919050565b600081905092915050565b600061424b826131fb565b6142558185614235565b9350614265818560208601613217565b80840191505092915050565b50565b6000614281600083614235565b915061428c82614271565b600082019050919050565b60006142a38285614240565b91506142af8284614240565b91506142ba82614274565b91508190509392505050565b7f4e4f545f414c4c4f574544210000000000000000000000000000000000000000600082015250565b60006142fc600c83613206565b9150614307826142c6565b602082019050919050565b6000602082019050818103600083015261432b816142ef565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061438e602683613206565b915061439982614332565b604082019050919050565b600060208201905081810360008301526143bd81614381565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614420603283613206565b915061442b826143c4565b604082019050919050565b6000602082019050818103600083015261444f81614413565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b60006144b2602683613206565b91506144bd82614456565b604082019050919050565b600060208201905081810360008301526144e1816144a5565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614544602583613206565b915061454f826144e8565b604082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b60006145d6602a83613206565b91506145e18261457a565b604082019050919050565b60006020820190508181036000830152614605816145c9565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614668602f83613206565b91506146738261460c565b604082019050919050565b600060208201905081810360008301526146978161465b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006146c58261469e565b6146cf81856146a9565b93506146df818560208601613217565b6146e88161324a565b840191505092915050565b6000608082019050614708600083018761334b565b614715602083018661334b565b61472260408301856133e1565b818103606083015261473481846146ba565b905095945050505050565b60008151905061474e8161316c565b92915050565b60006020828403121561476a57614769613136565b5b60006147788482850161473f565b91505092915050565b600061478c826132b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147bf576147be6139ea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614804826132b6565b915061480f836132b6565b92508261481f5761481e6147ca565b5b828204905092915050565b6000614835826132b6565b9150614840836132b6565b9250826148505761484f6147ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006148e6602183613206565b91506148f18261488a565b604082019050919050565b60006020820190508181036000830152614915816148d9565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000614978602883613206565b91506149838261491c565b604082019050919050565b600060208201905081810360008301526149a78161496b565b905091905056fea26469706673582212202fde33c24e8813fc714e311b1815dcbfd60c879503f6ee8ad1ad0a469fba7ed664736f6c634300080c0033
Deployed Bytecode Sourcemap
38683:3299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25338:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27224:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28791:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28312:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23591:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23341:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;29667:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24259:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39836:109;;;;;;;;;;;;;:::i;:::-;;40349:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29967:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39204:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23772:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39953:87;;;;;;;;;;;;;:::i;:::-;;40571:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27033:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40458:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25774:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4365:94;;;;;;;;;;;;;:::i;:::-;;39245:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39559:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40048:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27393:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39095:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41074:905;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29077:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39287:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30282:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40143:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27568:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40244:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29436:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40898:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4614:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39124:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39066:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39165:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25338:372;25440:4;25492:25;25477:40;;;:11;:40;;;;:105;;;;25549:33;25534:48;;;:11;:48;;;;25477:105;:172;;;;25614:35;25599:50;;;:11;:50;;;;25477:172;:225;;;;25666:36;25690:11;25666:23;:36::i;:::-;25477:225;25457:245;;25338:372;;;:::o;27224:100::-;27278:13;27311:5;27304:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27224:100;:::o;28791:214::-;28859:7;28887:16;28895:7;28887;:16::i;:::-;28879:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28973:15;:24;28989:7;28973:24;;;;;;;;;;;;;;;;;;;;;28966:31;;28791:214;;;:::o;28312:413::-;28385:13;28401:24;28417:7;28401:15;:24::i;:::-;28385:40;;28450:5;28444:11;;:2;:11;;;;28436:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28545:5;28529:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28554:37;28571:5;28578:12;:10;:12::i;:::-;28554:16;:37::i;:::-;28529:62;28507:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;28689:28;28698:2;28702:7;28711:5;28689:8;:28::i;:::-;28374:351;28312:413;;:::o;23591:104::-;23644:7;23686:1;23671:12;;:16;;;;:::i;:::-;23664:23;;23591:104;:::o;23341:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29667:229::-;29802:13;:22;29816:7;29802:22;;;;;;;;;;;:29;;;;;;;;;;;;29801:30;29793:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;29860:28;29870:4;29876:2;29880:7;29860:9;:28::i;:::-;29667:229;;;:::o;24259:1007::-;24348:7;24384:16;24394:5;24384:9;:16::i;:::-;24376:5;:24;24368:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24450:22;24475:13;:11;:13::i;:::-;24450:38;;24499:19;24529:25;24718:9;24713:466;24733:14;24729:1;:18;24713:466;;;24773:31;24807:11;:14;24819:1;24807:14;;;;;;;;;;;24773:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24870:1;24844:28;;:9;:14;;;:28;;;24840:111;;24917:9;:14;;;24897:34;;24840:111;24994:5;24973:26;;:17;:26;;;24969:195;;;25043:5;25028:11;:20;25024:85;;;25084:1;25077:8;;;;;;;;;25024:85;25131:13;;;;;;;24969:195;24754:425;24749:3;;;;;;;24713:466;;;;25202:56;;;;;;;;;;:::i;:::-;;;;;;;;24259:1007;;;;;:::o;39836:109::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39894:10:::1;39886:28;;:51;39915:21;39886:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39836:109::o:0;40349:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40432:6:::1;40417:12;:21;;;;40349:97:::0;:::o;29967:244::-;30106:13;:22;30120:7;30106:22;;;;;;;;;;;:29;;;;;;;;;;;;30105:30;30097:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30164:39;30181:4;30187:2;30191:7;30164:39;;;;;;;;;;;;:16;:39::i;:::-;29967:244;;;:::o;39204:32::-;;;;:::o;23772:187::-;23839:7;23875:13;:11;:13::i;:::-;23867:5;:21;23859:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23946:5;23939:12;;23772:187;;;:::o;39953:87::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40022:10:::1;;;;;;;;;;;40021:11;40008:10;;:24;;;;;;;;;;;;;;;;;;39953:87::o:0;40571:90::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40649:4:::1;;40643:3;:10;;;;;;;:::i;:::-;;40571:90:::0;;:::o;27033:124::-;27097:7;27124:20;27136:7;27124:11;:20::i;:::-;:25;;;27117:32;;27033:124;;;:::o;40458:105::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40549:6:::1;40530:16;:25;;;;40458:105:::0;:::o;25774:221::-;25838:7;25883:1;25866:19;;:5;:19;;;;25858:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25959:12;:19;25972:5;25959:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25951:36;;25944:43;;25774:221;;;:::o;4365:94::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4430:21:::1;4448:1;4430:9;:21::i;:::-;4365:94::o:0;39245:31::-;;;;:::o;39559:39::-;;;;;;;;;;;;;;;;;:::o;3714:87::-;3760:7;3787:6;;;;;;;;;;;3780:13;;3714:87;:::o;40048:83::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40117:6:::1;40109:5;:14;;;;40048:83:::0;:::o;27393:104::-;27449:13;27482:7;27475:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27393:104;:::o;39095:20::-;;;;:::o;41074:905::-;41137:10;;;;;;;;;;;41129:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;41198:3;41182:12;;:19;41179:793;;41235:12;;41225:6;:22;;41217:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41326:16;;41316:6;41294:7;:19;41302:10;41294:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:48;;41286:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41422:6;41406:13;;:22;;;;:::i;:::-;41393:9;:35;41385:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41465:29;41475:10;41487:6;41465:9;:29::i;:::-;41532:6;41509:7;:19;41517:10;41509:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41179:793;;;41605:9;41596:5;;41587:6;:14;;;;:::i;:::-;:27;41579:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41669:8;;41659:6;:18;;41651:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;41753:1;39048:4;41740:14;;;;:::i;:::-;41724:12;;:30;;41716:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41832:12;;41822:6;41800:7;:19;41808:10;41800:19;;;;;;;;;;;;;;;;:28;;;;:::i;:::-;:44;;41792:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41887:29;41897:10;41909:6;41887:9;:29::i;:::-;41954:6;41931:7;:19;41939:10;41931:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;41179:793;41074:905;:::o;29077:288::-;29184:12;:10;:12::i;:::-;29172:24;;:8;:24;;;;29164:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29285:8;29240:18;:32;29259:12;:10;:12::i;:::-;29240:32;;;;;;;;;;;;;;;:42;29273:8;29240:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29338:8;29309:48;;29324:12;:10;:12::i;:::-;29309:48;;;29348:8;29309:48;;;;;;:::i;:::-;;;;;;;;29077:288;;:::o;39287:35::-;;;;:::o;30282:422::-;30450:13;:22;30464:7;30450:22;;;;;;;;;;;:29;;;;;;;;;;;;30449:30;30441:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30508:28;30518:4;30524:2;30528:7;30508:9;:28::i;:::-;30569:48;30592:4;30598:2;30602:7;30611:5;30569:22;:48::i;:::-;30547:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;30282:422;;;;:::o;40143:89::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40218:6:::1;40207:8;:17;;;;40143:89:::0;:::o;27568:339::-;27641:13;27675:16;27683:7;27675;:16::i;:::-;27667:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27756:21;27780:10;:8;:10::i;:::-;27756:34;;27833:1;27814:7;27808:21;:26;;:91;;;;;;;;;;;;;;;;;27861:7;27870:18;:7;:16;:18::i;:::-;27844:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27808:91;27801:98;;;27568:339;;;:::o;40244:97::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40327:6:::1;40312:12;:21;;;;40244:97:::0;:::o;29436:164::-;29533:4;29557:18;:25;29576:5;29557:25;;;;;;;;;;;;;;;:35;29583:8;29557:35;;;;;;;;;;;;;;;;;;;;;;;;;29550:42;;29436:164;;;;:::o;40898:168::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41000:1:::1;39048:4;40987:14;;;;:::i;:::-;40971:12;;:30;;40963:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;41029:29;41039:10;41051:6;41029:9;:29::i;:::-;40898:168:::0;:::o;4614:192::-;3945:12;:10;:12::i;:::-;3934:23;;:7;:5;:7::i;:::-;:23;;;3926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4723:1:::1;4703:22;;:8;:22;;;;4695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4779:19;4789:8;4779:9;:19::i;:::-;4614:192:::0;:::o;39124:32::-;;;;:::o;39066:22::-;;;;;;;;;;;;;:::o;39165:28::-;;;;:::o;15316:157::-;15401:4;15440:25;15425:40;;;:11;:40;;;;15418:47;;15316:157;;;:::o;30959:126::-;31016:4;31050:12;;31040:7;:22;:37;;;;;31076:1;31066:7;:11;31040:37;31033:44;;30959:126;;;:::o;2590:98::-;2643:7;2670:10;2663:17;;2590:98;:::o;35894:196::-;36036:2;36009:15;:24;36025:7;36009:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36074:7;36070:2;36054:28;;36063:5;36054:28;;;;;;;;;;;;35894:196;;;:::o;33774:2002::-;33889:35;33927:20;33939:7;33927:11;:20::i;:::-;33889:58;;33960:22;34002:13;:18;;;33986:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34061:12;:10;:12::i;:::-;34037:36;;:20;34049:7;34037:11;:20::i;:::-;:36;;;33986:87;:154;;;;34090:50;34107:13;:18;;;34127:12;:10;:12::i;:::-;34090:16;:50::i;:::-;33986:154;33960:181;;34162:17;34154:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34277:4;34255:26;;:13;:18;;;:26;;;34247:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34357:1;34343:16;;:2;:16;;;;34335:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34414:43;34436:4;34442:2;34446:7;34455:1;34414:21;:43::i;:::-;34522:49;34539:1;34543:7;34552:13;:18;;;34522:8;:49::i;:::-;34897:1;34867:12;:18;34880:4;34867:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34941:1;34913:12;:16;34926:2;34913:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34987:2;34959:11;:20;34971:7;34959:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35049:15;35004:11;:20;35016:7;35004:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;35317:19;35349:1;35339:7;:11;35317:33;;35410:1;35369:43;;:11;:24;35381:11;35369:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35365:295;;;35437:20;35445:11;35437:7;:20::i;:::-;35433:212;;;35514:13;:18;;;35482:11;:24;35494:11;35482:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35597:13;:28;;;35555:11;:24;35567:11;35555:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35433:212;35365:295;34842:829;35707:7;35703:2;35688:27;;35697:4;35688:27;;;;;;;;;;;;35726:42;35747:4;35753:2;35757:7;35766:1;35726:20;:42::i;:::-;33878:1898;;33774:2002;;;:::o;26434:537::-;26495:21;;:::i;:::-;26537:16;26545:7;26537;:16::i;:::-;26529:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26643:12;26658:7;26643:22;;26638:245;26675:1;26667:4;:9;26638:245;;26705:31;26739:11;:17;26751:4;26739:17;;;;;;;;;;;26705:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26805:1;26779:28;;:9;:14;;;:28;;;26775:93;;26839:9;26832:16;;;;;;26775:93;26686:197;26678:6;;;;;;;;26638:245;;;;26906:57;;;;;;;;;;:::i;:::-;;;;;;;;26434:537;;;;:::o;4814:173::-;4870:16;4889:6;;;;;;;;;;;4870:25;;4915:8;4906:6;;:17;;;;;;;;;;;;;;;;;;4970:8;4939:40;;4960:8;4939:40;;;;;;;;;;;;4859:128;4814:173;:::o;31093:104::-;31162:27;31172:2;31176:8;31162:27;;;;;;;;;;;;:9;:27::i;:::-;31093:104;;:::o;36655:804::-;36810:4;36831:15;:2;:13;;;:15::i;:::-;36827:625;;;36883:2;36867:36;;;36904:12;:10;:12::i;:::-;36918:4;36924:7;36933:5;36867:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36863:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37130:1;37113:6;:13;:18;37109:273;;;37156:61;;;;;;;;;;:::i;:::-;;;;;;;;37109:273;37332:6;37326:13;37317:6;37313:2;37309:15;37302:38;36863:534;37000:45;;;36990:55;;;:6;:55;;;;36983:62;;;;;36827:625;37436:4;37429:11;;36655:804;;;;;;;:::o;28155:95::-;28206:13;28239:3;28232:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28155:95;:::o;289:723::-;345:13;575:1;566:5;:10;562:53;;;593:10;;;;;;;;;;;;;;;;;;;;;562:53;625:12;640:5;625:20;;656:14;681:78;696:1;688:4;:9;681:78;;714:8;;;;;:::i;:::-;;;;745:2;737:10;;;;;:::i;:::-;;;681:78;;;769:19;801:6;791:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;769:39;;819:154;835:1;826:5;:10;819:154;;863:1;853:11;;;;;:::i;:::-;;;930:2;922:5;:10;;;;:::i;:::-;909:2;:24;;;;:::i;:::-;896:39;;879:6;886;879:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;959:2;950:11;;;;;:::i;:::-;;;819:154;;;997:6;983:21;;;;;289:723;;;;:::o;37947:159::-;;;;;:::o;38518:158::-;;;;;:::o;31560:163::-;31683:32;31689:2;31693:8;31703:5;31710:4;31683:5;:32::i;:::-;31560:163;;;:::o;5675:387::-;5735:4;5943:12;6010:7;5998:20;5990:28;;6053:1;6046:4;:8;6039:15;;;5675:387;;;:::o;31982:1538::-;32121:20;32144:12;;32121:35;;32189:1;32175:16;;:2;:16;;;;32167:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32260:1;32248:8;:13;;32240:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32319:61;32349:1;32353:2;32357:12;32371:8;32319:21;:61::i;:::-;32694:8;32658:12;:16;32671:2;32658:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32759:8;32718:12;:16;32731:2;32718:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32818:2;32785:11;:25;32797:12;32785:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32885:15;32835:11;:25;32847:12;32835:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32918:20;32941:12;32918:35;;32975:9;32970:415;32990:8;32986:1;:12;32970:415;;;33054:12;33050:2;33029:38;;33046:1;33029:38;;;;;;;;;;;;33090:4;33086:249;;;33153:59;33184:1;33188:2;33192:12;33206:5;33153:22;:59::i;:::-;33119:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;33086:249;33355:14;;;;;;;33000:3;;;;;;;32970:415;;;;33416:12;33401;:27;;;;32633:807;33452:60;33481:1;33485:2;33489:12;33503:8;33452:20;:60::i;:::-;32110:1410;31982:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:418::-;5427:4;5465:2;5454:9;5450:18;5442:26;;5478:65;5540:1;5529:9;5525:17;5516:6;5478:65;:::i;:::-;5553:66;5615:2;5604:9;5600:18;5591:6;5553:66;:::i;:::-;5629:72;5697:2;5686:9;5682:18;5673:6;5629:72;:::i;:::-;5290:418;;;;;;:::o;5714:619::-;5791:6;5799;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;6237:2;6263:53;6308:7;6299:6;6288:9;6284:22;6263:53;:::i;:::-;6253:63;;6208:118;5714:619;;;;;:::o;6339:117::-;6448:1;6445;6438:12;6462:117;6571:1;6568;6561:12;6585:117;6694:1;6691;6684:12;6722:553;6780:8;6790:6;6840:3;6833:4;6825:6;6821:17;6817:27;6807:122;;6848:79;;:::i;:::-;6807:122;6961:6;6948:20;6938:30;;6991:18;6983:6;6980:30;6977:117;;;7013:79;;:::i;:::-;6977:117;7127:4;7119:6;7115:17;7103:29;;7181:3;7173:4;7165:6;7161:17;7151:8;7147:32;7144:41;7141:128;;;7188:79;;:::i;:::-;7141:128;6722:553;;;;;:::o;7281:529::-;7352:6;7360;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7563:1;7552:9;7548:17;7535:31;7593:18;7585:6;7582:30;7579:117;;;7615:79;;:::i;:::-;7579:117;7728:65;7785:7;7776:6;7765:9;7761:22;7728:65;:::i;:::-;7710:83;;;;7506:297;7281:529;;;;;:::o;7816:329::-;7875:6;7924:2;7912:9;7903:7;7899:23;7895:32;7892:119;;;7930:79;;:::i;:::-;7892:119;8050:1;8075:53;8120:7;8111:6;8100:9;8096:22;8075:53;:::i;:::-;8065:63;;8021:117;7816:329;;;;:::o;8151:116::-;8221:21;8236:5;8221:21;:::i;:::-;8214:5;8211:32;8201:60;;8257:1;8254;8247:12;8201:60;8151:116;:::o;8273:133::-;8316:5;8354:6;8341:20;8332:29;;8370:30;8394:5;8370:30;:::i;:::-;8273:133;;;;:::o;8412:468::-;8477:6;8485;8534:2;8522:9;8513:7;8509:23;8505:32;8502:119;;;8540:79;;:::i;:::-;8502:119;8660:1;8685:53;8730:7;8721:6;8710:9;8706:22;8685:53;:::i;:::-;8675:63;;8631:117;8787:2;8813:50;8855:7;8846:6;8835:9;8831:22;8813:50;:::i;:::-;8803:60;;8758:115;8412:468;;;;;:::o;8886:117::-;8995:1;8992;8985:12;9009:180;9057:77;9054:1;9047:88;9154:4;9151:1;9144:15;9178:4;9175:1;9168:15;9195:281;9278:27;9300:4;9278:27;:::i;:::-;9270:6;9266:40;9408:6;9396:10;9393:22;9372:18;9360:10;9357:34;9354:62;9351:88;;;9419:18;;:::i;:::-;9351:88;9459:10;9455:2;9448:22;9238:238;9195:281;;:::o;9482:129::-;9516:6;9543:20;;:::i;:::-;9533:30;;9572:33;9600:4;9592:6;9572:33;:::i;:::-;9482:129;;;:::o;9617:307::-;9678:4;9768:18;9760:6;9757:30;9754:56;;;9790:18;;:::i;:::-;9754:56;9828:29;9850:6;9828:29;:::i;:::-;9820:37;;9912:4;9906;9902:15;9894:23;;9617:307;;;:::o;9930:154::-;10014:6;10009:3;10004;9991:30;10076:1;10067:6;10062:3;10058:16;10051:27;9930:154;;;:::o;10090:410::-;10167:5;10192:65;10208:48;10249:6;10208:48;:::i;:::-;10192:65;:::i;:::-;10183:74;;10280:6;10273:5;10266:21;10318:4;10311:5;10307:16;10356:3;10347:6;10342:3;10338:16;10335:25;10332:112;;;10363:79;;:::i;:::-;10332:112;10453:41;10487:6;10482:3;10477;10453:41;:::i;:::-;10173:327;10090:410;;;;;:::o;10519:338::-;10574:5;10623:3;10616:4;10608:6;10604:17;10600:27;10590:122;;10631:79;;:::i;:::-;10590:122;10748:6;10735:20;10773:78;10847:3;10839:6;10832:4;10824:6;10820:17;10773:78;:::i;:::-;10764:87;;10580:277;10519:338;;;;:::o;10863:943::-;10958:6;10966;10974;10982;11031:3;11019:9;11010:7;11006:23;11002:33;10999:120;;;11038:79;;:::i;:::-;10999:120;11158:1;11183:53;11228:7;11219:6;11208:9;11204:22;11183:53;:::i;:::-;11173:63;;11129:117;11285:2;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11256:118;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11569:2;11558:9;11554:18;11541:32;11600:18;11592:6;11589:30;11586:117;;;11622:79;;:::i;:::-;11586:117;11727:62;11781:7;11772:6;11761:9;11757:22;11727:62;:::i;:::-;11717:72;;11512:287;10863:943;;;;;;;:::o;11812:474::-;11880:6;11888;11937:2;11925:9;11916:7;11912:23;11908:32;11905:119;;;11943:79;;:::i;:::-;11905:119;12063:1;12088:53;12133:7;12124:6;12113:9;12109:22;12088:53;:::i;:::-;12078:63;;12034:117;12190:2;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12161:118;11812:474;;;;;:::o;12292:180::-;12340:77;12337:1;12330:88;12437:4;12434:1;12427:15;12461:4;12458:1;12451:15;12478:320;12522:6;12559:1;12553:4;12549:12;12539:22;;12606:1;12600:4;12596:12;12627:18;12617:81;;12683:4;12675:6;12671:17;12661:27;;12617:81;12745:2;12737:6;12734:14;12714:18;12711:38;12708:84;;;12764:18;;:::i;:::-;12708:84;12529:269;12478:320;;;:::o;12804:232::-;12944:34;12940:1;12932:6;12928:14;12921:58;13013:15;13008:2;13000:6;12996:15;12989:40;12804:232;:::o;13042:366::-;13184:3;13205:67;13269:2;13264:3;13205:67;:::i;:::-;13198:74;;13281:93;13370:3;13281:93;:::i;:::-;13399:2;13394:3;13390:12;13383:19;;13042:366;;;:::o;13414:419::-;13580:4;13618:2;13607:9;13603:18;13595:26;;13667:9;13661:4;13657:20;13653:1;13642:9;13638:17;13631:47;13695:131;13821:4;13695:131;:::i;:::-;13687:139;;13414:419;;;:::o;13839:221::-;13979:34;13975:1;13967:6;13963:14;13956:58;14048:4;14043:2;14035:6;14031:15;14024:29;13839:221;:::o;14066:366::-;14208:3;14229:67;14293:2;14288:3;14229:67;:::i;:::-;14222:74;;14305:93;14394:3;14305:93;:::i;:::-;14423:2;14418:3;14414:12;14407:19;;14066:366;;;:::o;14438:419::-;14604:4;14642:2;14631:9;14627:18;14619:26;;14691:9;14685:4;14681:20;14677:1;14666:9;14662:17;14655:47;14719:131;14845:4;14719:131;:::i;:::-;14711:139;;14438:419;;;:::o;14863:244::-;15003:34;14999:1;14991:6;14987:14;14980:58;15072:27;15067:2;15059:6;15055:15;15048:52;14863:244;:::o;15113:366::-;15255:3;15276:67;15340:2;15335:3;15276:67;:::i;:::-;15269:74;;15352:93;15441:3;15352:93;:::i;:::-;15470:2;15465:3;15461:12;15454:19;;15113:366;;;:::o;15485:419::-;15651:4;15689:2;15678:9;15674:18;15666:26;;15738:9;15732:4;15728:20;15724:1;15713:9;15709:17;15702:47;15766:131;15892:4;15766:131;:::i;:::-;15758:139;;15485:419;;;:::o;15910:180::-;15958:77;15955:1;15948:88;16055:4;16052:1;16045:15;16079:4;16076:1;16069:15;16096:191;16136:4;16156:20;16174:1;16156:20;:::i;:::-;16151:25;;16190:20;16208:1;16190:20;:::i;:::-;16185:25;;16229:1;16226;16223:8;16220:34;;;16234:18;;:::i;:::-;16220:34;16279:1;16276;16272:9;16264:17;;16096:191;;;;:::o;16293:163::-;16433:15;16429:1;16421:6;16417:14;16410:39;16293:163;:::o;16462:366::-;16604:3;16625:67;16689:2;16684:3;16625:67;:::i;:::-;16618:74;;16701:93;16790:3;16701:93;:::i;:::-;16819:2;16814:3;16810:12;16803:19;;16462:366;;;:::o;16834:419::-;17000:4;17038:2;17027:9;17023:18;17015:26;;17087:9;17081:4;17077:20;17073:1;17062:9;17058:17;17051:47;17115:131;17241:4;17115:131;:::i;:::-;17107:139;;16834:419;;;:::o;17259:221::-;17399:34;17395:1;17387:6;17383:14;17376:58;17468:4;17463:2;17455:6;17451:15;17444:29;17259:221;:::o;17486:366::-;17628:3;17649:67;17713:2;17708:3;17649:67;:::i;:::-;17642:74;;17725:93;17814:3;17725:93;:::i;:::-;17843:2;17838:3;17834:12;17827:19;;17486:366;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:233::-;18423:34;18419:1;18411:6;18407:14;18400:58;18492:16;18487:2;18479:6;18475:15;18468:41;18283:233;:::o;18522:366::-;18664:3;18685:67;18749:2;18744:3;18685:67;:::i;:::-;18678:74;;18761:93;18850:3;18761:93;:::i;:::-;18879:2;18874:3;18870:12;18863:19;;18522:366;;;:::o;18894:419::-;19060:4;19098:2;19087:9;19083:18;19075:26;;19147:9;19141:4;19137:20;19133:1;19122:9;19118:17;19111:47;19175:131;19301:4;19175:131;:::i;:::-;19167:139;;18894:419;;;:::o;19319:182::-;19459:34;19455:1;19447:6;19443:14;19436:58;19319:182;:::o;19507:366::-;19649:3;19670:67;19734:2;19729:3;19670:67;:::i;:::-;19663:74;;19746:93;19835:3;19746:93;:::i;:::-;19864:2;19859:3;19855:12;19848:19;;19507:366;;;:::o;19879:419::-;20045:4;20083:2;20072:9;20068:18;20060:26;;20132:9;20126:4;20122:20;20118:1;20107:9;20103:17;20096:47;20160:131;20286:4;20160:131;:::i;:::-;20152:139;;19879:419;;;:::o;20304:222::-;20444:34;20440:1;20432:6;20428:14;20421:58;20513:5;20508:2;20500:6;20496:15;20489:30;20304:222;:::o;20532:366::-;20674:3;20695:67;20759:2;20754:3;20695:67;:::i;:::-;20688:74;;20771:93;20860:3;20771:93;:::i;:::-;20889:2;20884:3;20880:12;20873:19;;20532:366;;;:::o;20904:419::-;21070:4;21108:2;21097:9;21093:18;21085:26;;21157:9;21151:4;21147:20;21143:1;21132:9;21128:17;21121:47;21185:131;21311:4;21185:131;:::i;:::-;21177:139;;20904:419;;;:::o;21329:230::-;21469:34;21465:1;21457:6;21453:14;21446:58;21538:13;21533:2;21525:6;21521:15;21514:38;21329:230;:::o;21565:366::-;21707:3;21728:67;21792:2;21787:3;21728:67;:::i;:::-;21721:74;;21804:93;21893:3;21804:93;:::i;:::-;21922:2;21917:3;21913:12;21906:19;;21565:366;;;:::o;21937:419::-;22103:4;22141:2;22130:9;22126:18;22118:26;;22190:9;22184:4;22180:20;22176:1;22165:9;22161:17;22154:47;22218:131;22344:4;22218:131;:::i;:::-;22210:139;;21937:419;;;:::o;22362:166::-;22502:18;22498:1;22490:6;22486:14;22479:42;22362:166;:::o;22534:366::-;22676:3;22697:67;22761:2;22756:3;22697:67;:::i;:::-;22690:74;;22773:93;22862:3;22773:93;:::i;:::-;22891:2;22886:3;22882:12;22875:19;;22534:366;;;:::o;22906:419::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:169::-;23471:21;23467:1;23459:6;23455:14;23448:45;23331:169;:::o;23506:366::-;23648:3;23669:67;23733:2;23728:3;23669:67;:::i;:::-;23662:74;;23745:93;23834:3;23745:93;:::i;:::-;23863:2;23858:3;23854:12;23847:19;;23506:366;;;:::o;23878:419::-;24044:4;24082:2;24071:9;24067:18;24059:26;;24131:9;24125:4;24121:20;24117:1;24106:9;24102:17;24095:47;24159:131;24285:4;24159:131;:::i;:::-;24151:139;;23878:419;;;:::o;24303:305::-;24343:3;24362:20;24380:1;24362:20;:::i;:::-;24357:25;;24396:20;24414:1;24396:20;:::i;:::-;24391:25;;24550:1;24482:66;24478:74;24475:1;24472:81;24469:107;;;24556:18;;:::i;:::-;24469:107;24600:1;24597;24593:9;24586:16;;24303:305;;;;:::o;24614:173::-;24754:25;24750:1;24742:6;24738:14;24731:49;24614:173;:::o;24793:366::-;24935:3;24956:67;25020:2;25015:3;24956:67;:::i;:::-;24949:74;;25032:93;25121:3;25032:93;:::i;:::-;25150:2;25145:3;25141:12;25134:19;;24793:366;;;:::o;25165:419::-;25331:4;25369:2;25358:9;25354:18;25346:26;;25418:9;25412:4;25408:20;25404:1;25393:9;25389:17;25382:47;25446:131;25572:4;25446:131;:::i;:::-;25438:139;;25165:419;;;:::o;25590:348::-;25630:7;25653:20;25671:1;25653:20;:::i;:::-;25648:25;;25687:20;25705:1;25687:20;:::i;:::-;25682:25;;25875:1;25807:66;25803:74;25800:1;25797:81;25792:1;25785:9;25778:17;25774:105;25771:131;;;25882:18;;:::i;:::-;25771:131;25930:1;25927;25923:9;25912:20;;25590:348;;;;:::o;25944:167::-;26084:19;26080:1;26072:6;26068:14;26061:43;25944:167;:::o;26117:366::-;26259:3;26280:67;26344:2;26339:3;26280:67;:::i;:::-;26273:74;;26356:93;26445:3;26356:93;:::i;:::-;26474:2;26469:3;26465:12;26458:19;;26117:366;;;:::o;26489:419::-;26655:4;26693:2;26682:9;26678:18;26670:26;;26742:9;26736:4;26732:20;26728:1;26717:9;26713:17;26706:47;26770:131;26896:4;26770:131;:::i;:::-;26762:139;;26489:419;;;:::o;26914:167::-;27054:19;27050:1;27042:6;27038:14;27031:43;26914:167;:::o;27087:366::-;27229:3;27250:67;27314:2;27309:3;27250:67;:::i;:::-;27243:74;;27326:93;27415:3;27326:93;:::i;:::-;27444:2;27439:3;27435:12;27428:19;;27087:366;;;:::o;27459:419::-;27625:4;27663:2;27652:9;27648:18;27640:26;;27712:9;27706:4;27702:20;27698:1;27687:9;27683:17;27676:47;27740:131;27866:4;27740:131;:::i;:::-;27732:139;;27459:419;;;:::o;27884:168::-;28024:20;28020:1;28012:6;28008:14;28001:44;27884:168;:::o;28058:366::-;28200:3;28221:67;28285:2;28280:3;28221:67;:::i;:::-;28214:74;;28297:93;28386:3;28297:93;:::i;:::-;28415:2;28410:3;28406:12;28399:19;;28058:366;;;:::o;28430:419::-;28596:4;28634:2;28623:9;28619:18;28611:26;;28683:9;28677:4;28673:20;28669:1;28658:9;28654:17;28647:47;28711:131;28837:4;28711:131;:::i;:::-;28703:139;;28430:419;;;:::o;28855:176::-;28995:28;28991:1;28983:6;28979:14;28972:52;28855:176;:::o;29037:366::-;29179:3;29200:67;29264:2;29259:3;29200:67;:::i;:::-;29193:74;;29276:93;29365:3;29276:93;:::i;:::-;29394:2;29389:3;29385:12;29378:19;;29037:366;;;:::o;29409:419::-;29575:4;29613:2;29602:9;29598:18;29590:26;;29662:9;29656:4;29652:20;29648:1;29637:9;29633:17;29626:47;29690:131;29816:4;29690:131;:::i;:::-;29682:139;;29409:419;;;:::o;29834:238::-;29974:34;29970:1;29962:6;29958:14;29951:58;30043:21;30038:2;30030:6;30026:15;30019:46;29834:238;:::o;30078:366::-;30220:3;30241:67;30305:2;30300:3;30241:67;:::i;:::-;30234:74;;30317:93;30406:3;30317:93;:::i;:::-;30435:2;30430:3;30426:12;30419:19;;30078:366;;;:::o;30450:419::-;30616:4;30654:2;30643:9;30639:18;30631:26;;30703:9;30697:4;30693:20;30689:1;30678:9;30674:17;30667:47;30731:131;30857:4;30731:131;:::i;:::-;30723:139;;30450:419;;;:::o;30875:234::-;31015:34;31011:1;31003:6;30999:14;30992:58;31084:17;31079:2;31071:6;31067:15;31060:42;30875:234;:::o;31115:366::-;31257:3;31278:67;31342:2;31337:3;31278:67;:::i;:::-;31271:74;;31354:93;31443:3;31354:93;:::i;:::-;31472:2;31467:3;31463:12;31456:19;;31115:366;;;:::o;31487:419::-;31653:4;31691:2;31680:9;31676:18;31668:26;;31740:9;31734:4;31730:20;31726:1;31715:9;31711:17;31704:47;31768:131;31894:4;31768:131;:::i;:::-;31760:139;;31487:419;;;:::o;31912:148::-;32014:11;32051:3;32036:18;;31912:148;;;;:::o;32066:377::-;32172:3;32200:39;32233:5;32200:39;:::i;:::-;32255:89;32337:6;32332:3;32255:89;:::i;:::-;32248:96;;32353:52;32398:6;32393:3;32386:4;32379:5;32375:16;32353:52;:::i;:::-;32430:6;32425:3;32421:16;32414:23;;32176:267;32066:377;;;;:::o;32449:114::-;;:::o;32569:400::-;32729:3;32750:84;32832:1;32827:3;32750:84;:::i;:::-;32743:91;;32843:93;32932:3;32843:93;:::i;:::-;32961:1;32956:3;32952:11;32945:18;;32569:400;;;:::o;32975:701::-;33256:3;33278:95;33369:3;33360:6;33278:95;:::i;:::-;33271:102;;33390:95;33481:3;33472:6;33390:95;:::i;:::-;33383:102;;33502:148;33646:3;33502:148;:::i;:::-;33495:155;;33667:3;33660:10;;32975:701;;;;;:::o;33682:162::-;33822:14;33818:1;33810:6;33806:14;33799:38;33682:162;:::o;33850:366::-;33992:3;34013:67;34077:2;34072:3;34013:67;:::i;:::-;34006:74;;34089:93;34178:3;34089:93;:::i;:::-;34207:2;34202:3;34198:12;34191:19;;33850:366;;;:::o;34222:419::-;34388:4;34426:2;34415:9;34411:18;34403:26;;34475:9;34469:4;34465:20;34461:1;34450:9;34446:17;34439:47;34503:131;34629:4;34503:131;:::i;:::-;34495:139;;34222:419;;;:::o;34647:225::-;34787:34;34783:1;34775:6;34771:14;34764:58;34856:8;34851:2;34843:6;34839:15;34832:33;34647:225;:::o;34878:366::-;35020:3;35041:67;35105:2;35100:3;35041:67;:::i;:::-;35034:74;;35117:93;35206:3;35117:93;:::i;:::-;35235:2;35230:3;35226:12;35219:19;;34878:366;;;:::o;35250:419::-;35416:4;35454:2;35443:9;35439:18;35431:26;;35503:9;35497:4;35493:20;35489:1;35478:9;35474:17;35467:47;35531:131;35657:4;35531:131;:::i;:::-;35523:139;;35250:419;;;:::o;35675:237::-;35815:34;35811:1;35803:6;35799:14;35792:58;35884:20;35879:2;35871:6;35867:15;35860:45;35675:237;:::o;35918:366::-;36060:3;36081:67;36145:2;36140:3;36081:67;:::i;:::-;36074:74;;36157:93;36246:3;36157:93;:::i;:::-;36275:2;36270:3;36266:12;36259:19;;35918:366;;;:::o;36290:419::-;36456:4;36494:2;36483:9;36479:18;36471:26;;36543:9;36537:4;36533:20;36529:1;36518:9;36514:17;36507:47;36571:131;36697:4;36571:131;:::i;:::-;36563:139;;36290:419;;;:::o;36715:225::-;36855:34;36851:1;36843:6;36839:14;36832:58;36924:8;36919:2;36911:6;36907:15;36900:33;36715:225;:::o;36946:366::-;37088:3;37109:67;37173:2;37168:3;37109:67;:::i;:::-;37102:74;;37185:93;37274:3;37185:93;:::i;:::-;37303:2;37298:3;37294:12;37287:19;;36946:366;;;:::o;37318:419::-;37484:4;37522:2;37511:9;37507:18;37499:26;;37571:9;37565:4;37561:20;37557:1;37546:9;37542:17;37535:47;37599:131;37725:4;37599:131;:::i;:::-;37591:139;;37318:419;;;:::o;37743:224::-;37883:34;37879:1;37871:6;37867:14;37860:58;37952:7;37947:2;37939:6;37935:15;37928:32;37743:224;:::o;37973:366::-;38115:3;38136:67;38200:2;38195:3;38136:67;:::i;:::-;38129:74;;38212:93;38301:3;38212:93;:::i;:::-;38330:2;38325:3;38321:12;38314:19;;37973:366;;;:::o;38345:419::-;38511:4;38549:2;38538:9;38534:18;38526:26;;38598:9;38592:4;38588:20;38584:1;38573:9;38569:17;38562:47;38626:131;38752:4;38626:131;:::i;:::-;38618:139;;38345:419;;;:::o;38770:229::-;38910:34;38906:1;38898:6;38894:14;38887:58;38979:12;38974:2;38966:6;38962:15;38955:37;38770:229;:::o;39005:366::-;39147:3;39168:67;39232:2;39227:3;39168:67;:::i;:::-;39161:74;;39244:93;39333:3;39244:93;:::i;:::-;39362:2;39357:3;39353:12;39346:19;;39005:366;;;:::o;39377:419::-;39543:4;39581:2;39570:9;39566:18;39558:26;;39630:9;39624:4;39620:20;39616:1;39605:9;39601:17;39594:47;39658:131;39784:4;39658:131;:::i;:::-;39650:139;;39377:419;;;:::o;39802:234::-;39942:34;39938:1;39930:6;39926:14;39919:58;40011:17;40006:2;39998:6;39994:15;39987:42;39802:234;:::o;40042:366::-;40184:3;40205:67;40269:2;40264:3;40205:67;:::i;:::-;40198:74;;40281:93;40370:3;40281:93;:::i;:::-;40399:2;40394:3;40390:12;40383:19;;40042:366;;;:::o;40414:419::-;40580:4;40618:2;40607:9;40603:18;40595:26;;40667:9;40661:4;40657:20;40653:1;40642:9;40638:17;40631:47;40695:131;40821:4;40695:131;:::i;:::-;40687:139;;40414:419;;;:::o;40839:98::-;40890:6;40924:5;40918:12;40908:22;;40839:98;;;:::o;40943:168::-;41026:11;41060:6;41055:3;41048:19;41100:4;41095:3;41091:14;41076:29;;40943:168;;;;:::o;41117:360::-;41203:3;41231:38;41263:5;41231:38;:::i;:::-;41285:70;41348:6;41343:3;41285:70;:::i;:::-;41278:77;;41364:52;41409:6;41404:3;41397:4;41390:5;41386:16;41364:52;:::i;:::-;41441:29;41463:6;41441:29;:::i;:::-;41436:3;41432:39;41425:46;;41207:270;41117:360;;;;:::o;41483:640::-;41678:4;41716:3;41705:9;41701:19;41693:27;;41730:71;41798:1;41787:9;41783:17;41774:6;41730:71;:::i;:::-;41811:72;41879:2;41868:9;41864:18;41855:6;41811:72;:::i;:::-;41893;41961:2;41950:9;41946:18;41937:6;41893:72;:::i;:::-;42012:9;42006:4;42002:20;41997:2;41986:9;41982:18;41975:48;42040:76;42111:4;42102:6;42040:76;:::i;:::-;42032:84;;41483:640;;;;;;;:::o;42129:141::-;42185:5;42216:6;42210:13;42201:22;;42232:32;42258:5;42232:32;:::i;:::-;42129:141;;;;:::o;42276:349::-;42345:6;42394:2;42382:9;42373:7;42369:23;42365:32;42362:119;;;42400:79;;:::i;:::-;42362:119;42520:1;42545:63;42600:7;42591:6;42580:9;42576:22;42545:63;:::i;:::-;42535:73;;42491:127;42276:349;;;;:::o;42631:233::-;42670:3;42693:24;42711:5;42693:24;:::i;:::-;42684:33;;42739:66;42732:5;42729:77;42726:103;;;42809:18;;:::i;:::-;42726:103;42856:1;42849:5;42845:13;42838:20;;42631:233;;;:::o;42870:180::-;42918:77;42915:1;42908:88;43015:4;43012:1;43005:15;43039:4;43036:1;43029:15;43056:185;43096:1;43113:20;43131:1;43113:20;:::i;:::-;43108:25;;43147:20;43165:1;43147:20;:::i;:::-;43142:25;;43186:1;43176:35;;43191:18;;:::i;:::-;43176:35;43233:1;43230;43226:9;43221:14;;43056:185;;;;:::o;43247:176::-;43279:1;43296:20;43314:1;43296:20;:::i;:::-;43291:25;;43330:20;43348:1;43330:20;:::i;:::-;43325:25;;43369:1;43359:35;;43374:18;;:::i;:::-;43359:35;43415:1;43412;43408:9;43403:14;;43247:176;;;;:::o;43429:180::-;43477:77;43474:1;43467:88;43574:4;43571:1;43564:15;43598:4;43595:1;43588:15;43615:220;43755:34;43751:1;43743:6;43739:14;43732:58;43824:3;43819:2;43811:6;43807:15;43800:28;43615:220;:::o;43841:366::-;43983:3;44004:67;44068:2;44063:3;44004:67;:::i;:::-;43997:74;;44080:93;44169:3;44080:93;:::i;:::-;44198:2;44193:3;44189:12;44182:19;;43841:366;;;:::o;44213:419::-;44379:4;44417:2;44406:9;44402:18;44394:26;;44466:9;44460:4;44456:20;44452:1;44441:9;44437:17;44430:47;44494:131;44620:4;44494:131;:::i;:::-;44486:139;;44213:419;;;:::o;44638:227::-;44778:34;44774:1;44766:6;44762:14;44755:58;44847:10;44842:2;44834:6;44830:15;44823:35;44638:227;:::o;44871:366::-;45013:3;45034:67;45098:2;45093:3;45034:67;:::i;:::-;45027:74;;45110:93;45199:3;45110:93;:::i;:::-;45228:2;45223:3;45219:12;45212:19;;44871:366;;;:::o;45243:419::-;45409:4;45447:2;45436:9;45432:18;45424:26;;45496:9;45490:4;45486:20;45482:1;45471:9;45467:17;45460:47;45524:131;45650:4;45524:131;:::i;:::-;45516:139;;45243:419;;;:::o
Swarm Source
ipfs://2fde33c24e8813fc714e311b1815dcbfd60c879503f6ee8ad1ad0a469fba7ed6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.