ERC-721
Overview
Max Total Supply
8,801 Pudgy Pandas
Holders
3,467
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Pudgy PandasLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PudgyPandas
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: //'########::'##::::'##:'########:::'######:::'##:::'##::::'########:::::'###::::'##::: ##:'########:::::'###:::: // ##.... ##: ##:::: ##: ##.... ##:'##... ##::. ##:'##::::: ##.... ##:::'## ##::: ###:: ##: ##.... ##:::'## ##::: // ##:::: ##: ##:::: ##: ##:::: ##: ##:::..::::. ####:::::: ##:::: ##::'##:. ##:: ####: ##: ##:::: ##::'##:. ##:: // ########:: ##:::: ##: ##:::: ##: ##::'####:::. ##::::::: ########::'##:::. ##: ## ## ##: ##:::: ##:'##:::. ##: // ##.....::: ##:::: ##: ##:::: ##: ##::: ##::::: ##::::::: ##.....::: #########: ##. ####: ##:::: ##: #########: // ##:::::::: ##:::: ##: ##:::: ##: ##::: ##::::: ##::::::: ##:::::::: ##.... ##: ##:. ###: ##:::: ##: ##.... ##: // ##::::::::. #######:: ########::. ######:::::: ##::::::: ##:::::::: ##:::: ##: ##::. ##: ########:: ##:::: ##: //::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: //:::::::::::::::::::::::::::::::::^^^^:::::::::::::::::::::^~!~::::::::::^^^:::::::::::::::::::::::::::::::::::: //::::::::::::::::::::::::::::::75B###B5~:::::::::::::::^7YP5P@J:::::::~5B###B57::::::::::::::::::::::::::::::::: //::::::::::::::::::::::::::::~G&&#####@B::::^~!?JJYY555PY7^7&#??777!~^B@#####&&B~::::::::::::::::::::::::::::::: //::::::::::::::::::::::::::::5@BBBBBBB&@JY555YJ?7!~~^^:....!?7Y&#YJY55#&&&##BBB@P::::::::::::::::::::::::::::::: //::::::::::::::::::::::::::::!#&####&#GY?!^:..................?&B~....:^!JG#&#::::::::::::::::::::::::::::::: //:::::::::::::::::::::::::::::^7P@#57^........................!J5?.........^?#&!:::::::::::::::::::::::::::::::: //:::::::::::::::::::::::::::::^YBJ^......... .................. .?#Y::::::::::::::::::::::::::::::: //::::::::::::::::::::::::::::7#5:........ .......... :GG^::::::::::::::::::::::::::::: //:::::::::::::::::::::::::::J&7........ .:^~7??7~:. .... :!J555YJ7!BB^:::::::::::::::::::::::::::: //::::::::::::::::::::::::::J&~........ .~J5GB###&&##BGJ~ !5B&#GB#####B@P:::::::::::::::::::::::::::: //:::::::::::::::::::::::::!@7........ ~YB#######PJJPB&###Y. ?##B7^??PB&#BB#@!::::::::::::::::::::::::::: //:::::::::::::::::::::::::PB........ .Y####BBB##! ?J7BB####~ P#&~ JP7#&G&BB#@?::::::::::::::::::::::::::: //::::::::::::::::::::::::~&?........ 5##BBBBBB#B 55G&B#&#P. ~G&Y :YPGG#&BB#@J::::::::::::::::::::::::::: //::::::::::::::::::::::::J#:........ :##BBBBBBBB#P~:7J5B&G?. ..:.:^:7PPJ7J5B#####&&7:::::::::::::::::::::::::: //::::::::::::::::::::::::#Y......... ?B#########&&B5YJ?^ .::^::^::..^~7J5PGBBGP5GP~:::::::::::::::::::::::: //:::::::::::::::::::::::!@~:......... :7YPGBBBGPY7~: .... ?#7::::::::::::::::::::::: //:::::::::::::::::::::::?&:!:......... .:::. ~JJ7!!77?JPY. :. !#@!:::::::::::::::::::::: //:::::::::::::::::::::::?@?~~......... :!: ~G@@@@@@@@G! ~J? .^ ?@5~:::::::::::::::::::::: //:::::::::::::::::::::::~G#G::.......... ~JJ7^:. :!JP@GY7^~?J7: ^~?Y&:::::::::::::::::::::::: //:::::::::::::::::::::::::^#Y~7:^^....... .^!7???77?Y7!!!^: ^##@5:::::::::::::::::::::::: //::::::::::::::::::::::::::~GGGB!~:........ ~#Y^!::::::::::::::::::::::::: //::::::::::::::::::::::::::::::?55Y?~:...... :. .:~JB?:::::::::::::::::::::::::::: //::::::::::::::::::::::::::::::::^~?JYYJ?7!~^:. .::~!^::^~7?JYYJ?7^::::::::::::::::::::::::::::: //:::::::::::::::::::::::::::::::::::::^~!7?JJJJJJ??77777777777??JJJJJJJJ?7!~^^:::::::::::::::::::::::::::::::::: //::::::::::::::::::::::::::::::::::::::::::::::^^^^~~~~!!!!!!!~~^^^::::::::::::::::::::::::::::::::::::::::::::: pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; contract PudgyPandas is ERC721A, Ownable, ReentrancyGuard { mapping (address => uint256) public ListWallet; bool public mintStatus = false; uint public MintPrice = 3300000000000000; //0.0033 ETH string public baseURI; uint public batchThreeFreeMint = 1; uint public batchTwoFreeMint = 2; uint public batchOneFreeMint = 3; uint public maxMintPerTx = 20; uint public maxSupply = 8888; uint public publicSupply = 8800; uint public devSupply = 88; uint public supplyBatchOne = 5555; uint public supplyBatchTwo = 6666; uint public supplyBatchThree = 7777; constructor() ERC721A("Pudgy Pandas", "Pudgy Pandas",maxMintPerTx,maxSupply){} function mint(uint256 qty) external payable { uint freeMint = FreeMintBatch(totalSupply()); require(mintStatus , "Pudgy Pandas Minting Pause"); require(qty <= maxMintPerTx, "Pudgy Pandas Max Per Transaction"); require(totalSupply() + qty <= publicSupply,"Pudgy Pandas Soldout"); if(ListWallet[msg.sender] < freeMint) { if(qty < freeMint) qty = freeMint; require(msg.value >= (qty - freeMint) * MintPrice,"Pudgy Pandas Insufficient Funds"); ListWallet[msg.sender] += qty; _safeMint(msg.sender, qty); } else { require(msg.value >= qty * MintPrice,"Pudgy Pandas Insufficient Funds"); ListWallet[msg.sender] += qty; _safeMint(msg.sender, qty); } } function FreeMintBatch(uint qty) public view returns (uint256) { if(qty < supplyBatchOne) { return batchOneFreeMint; } else if (qty < supplyBatchTwo) { return batchTwoFreeMint; } else if (qty < supplyBatchThree) { return batchThreeFreeMint; } else { return 0; } } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function airdrop(address[] calldata listedAirdrop ,uint256 qty) external onlyOwner { for (uint256 i = 0; i < listedAirdrop.length; i++) { _safeMint(listedAirdrop[i], qty); } } function OwnerBatchMint(uint256 qty) external onlyOwner { _safeMint(msg.sender, qty); } function setPublicMinting() external onlyOwner { mintStatus = !mintStatus ; } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 price_) external onlyOwner { MintPrice = price_; } function setmaxMintPerTx(uint256 maxMintPerTx_) external onlyOwner { maxMintPerTx = maxMintPerTx_; } function setSupplyBatchFreeMintOne(uint256 qty_) external onlyOwner { supplyBatchOne = qty_; } function setSupplyBatchFreeMintTwo(uint256 qty_) external onlyOwner { supplyBatchTwo = qty_; } function setSupplyBatchFreeMintThree(uint256 qty_) external onlyOwner { supplyBatchThree = qty_; } function setBatchFreeMintOne(uint256 qty_) external onlyOwner { batchOneFreeMint = qty_; } function setBatchFreeMintTwo(uint256 qty_) external onlyOwner { batchTwoFreeMint = qty_; } function setBatchMintThree(uint256 qty_) external onlyOwner { batchThreeFreeMint = qty_; } function setPublicSupply(uint256 maxMint_) external onlyOwner { publicSupply = maxMint_; } function setMaxSupply(uint256 maxMint_) external onlyOwner { maxSupply = maxMint_; } function withdraw() public onlyOwner { payable(msg.sender).transfer(payable(address(this)).balance); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @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..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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 Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"FreeMintBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ListWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchOneFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchThreeFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchTwoFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSupply","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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setBatchFreeMintOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setBatchFreeMintTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setBatchMintThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setSupplyBatchFreeMintOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setSupplyBatchFreeMintThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setSupplyBatchFreeMintTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyBatchOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyBatchThree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyBatchTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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
60c06040526000805560006007556000600b60006101000a81548160ff021916908315150217905550660bb9551fc24000600c556001600e556002600f55600360105560146011556122b860125561226060135560586014556115b3601555611a0a601655611e616017553480156200007757600080fd5b506040518060400160405280600c81526020017f50756467792050616e64617300000000000000000000000000000000000000008152506040518060400160405280600c81526020017f50756467792050616e64617300000000000000000000000000000000000000008152506011546012546000811162000130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012790620003d8565b60405180910390fd5b6000821162000176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016d90620003b6565b60405180910390fd5b83600190805190602001906200018e929190620002b8565b508260029080519060200190620001a7929190620002b8565b508160a08181525050806080818152505050505050620001dc620001d0620001ea60201b60201c565b620001f260201b60201c565b60016009819055506200050e565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c6906200040b565b90600052602060002090601f016020900481019282620002ea576000855562000336565b82601f106200030557805160ff191683800117855562000336565b8280016001018555821562000336579182015b828111156200033557825182559160200191906001019062000318565b5b50905062000345919062000349565b5090565b5b80821115620003645760008160009055506001016200034a565b5090565b600062000377602783620003fa565b9150620003848262000470565b604082019050919050565b60006200039e602e83620003fa565b9150620003ab82620004bf565b604082019050919050565b60006020820190508181036000830152620003d18162000368565b9050919050565b60006020820190508181036000830152620003f3816200038f565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200042457607f821691505b602082108114156200043b576200043a62000441565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614b4a6200053f600039600081816125450152818161256e0152612d18015260005050614b4a6000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063c204642c116100dc578063dc33e68111610095578063e985e9c51161006f578063e985e9c514610b59578063f2fde38b14610b96578063fc44834314610bbf578063fdbf9ef214610bea576102ff565b8063dc33e68114610ac8578063de0808c314610b05578063de7fcb1d14610b2e576102ff565b8063c204642c146109ba578063c27ffd2d146109e3578063c87b56dd14610a0c578063d4b6baab14610a49578063d5abeb0114610a72578063d7224ba014610a9d576102ff565b80639da3f8fd11610149578063ac915c0611610123578063ac915c0614610900578063ae8f517d14610917578063b88d4fde14610954578063ba7b82a91461097d576102ff565b80639da3f8fd14610890578063a0712d68146108bb578063a22cb465146108d7576102ff565b8063715018a6146107a857806379f34a10146107bf5780638171609b146107e85780638da5cb5b1461081157806391b7f5ed1461083c57806395d89b4114610865576102ff565b806341c66d0a1161024f5780636352211e116102085780636c0360eb116101e25780636c0360eb146106ec5780636f8b44b01461071757806370a082311461074057806370c43ef51461077d576102ff565b80636352211e1461065957806369090e3b146106965780636955e78a146106c1576102ff565b806341c66d0a1461054b57806342842e0e146105765780634f6ccce71461059f57806355f804b3146105dc578063568d987c146106055780635e84d7231461062e576102ff565b806318160ddd116102bc57806326aa420a1161029657806326aa420a146104a55780632f745c59146104ce5780633ccfd60b1461050b5780634142691e14610522576102ff565b806318160ddd14610426578063192086371461045157806323b872dd1461047c576102ff565b806301ffc9a714610304578063063440f01461034157806306fdde031461036c578063081812fc14610397578063095ea7b3146103d457806314a71836146103fd575b600080fd5b34801561031057600080fd5b5061032b600480360381019061032691906135de565b610c15565b6040516103389190613b78565b60405180910390f35b34801561034d57600080fd5b50610356610d5f565b6040516103639190613ed5565b60405180910390f35b34801561037857600080fd5b50610381610d65565b60405161038e9190613b93565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613685565b610df7565b6040516103cb9190613b11565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061353e565b610e7c565b005b34801561040957600080fd5b50610424600480360381019061041f9190613685565b610f95565b005b34801561043257600080fd5b5061043b610fa7565b6040516104489190613ed5565b60405180910390f35b34801561045d57600080fd5b50610466610fb0565b6040516104739190613ed5565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613428565b610fb6565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613685565b610fc6565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061353e565b610fd8565b6040516105029190613ed5565b60405180910390f35b34801561051757600080fd5b506105206111d6565b005b34801561052e57600080fd5b5061054960048036038101906105449190613685565b61123e565b005b34801561055757600080fd5b50610560611250565b60405161056d9190613ed5565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613428565b611256565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613685565b611276565b6040516105d39190613ed5565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613638565b6112c9565b005b34801561061157600080fd5b5061062c60048036038101906106279190613685565b6112e7565b005b34801561063a57600080fd5b506106436112f9565b6040516106509190613ed5565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613685565b6112ff565b60405161068d9190613b11565b60405180910390f35b3480156106a257600080fd5b506106ab611315565b6040516106b89190613ed5565b60405180910390f35b3480156106cd57600080fd5b506106d661131b565b6040516106e39190613ed5565b60405180910390f35b3480156106f857600080fd5b50610701611321565b60405161070e9190613b93565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613685565b6113af565b005b34801561074c57600080fd5b50610767600480360381019061076291906133bb565b6113c1565b6040516107749190613ed5565b60405180910390f35b34801561078957600080fd5b506107926114aa565b60405161079f9190613ed5565b60405180910390f35b3480156107b457600080fd5b506107bd6114b0565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613685565b6114c4565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190613685565b6114d6565b005b34801561081d57600080fd5b506108266114eb565b6040516108339190613b11565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190613685565b611515565b005b34801561087157600080fd5b5061087a611527565b6040516108879190613b93565b60405180910390f35b34801561089c57600080fd5b506108a56115b9565b6040516108b29190613b78565b60405180910390f35b6108d560048036038101906108d09190613685565b6115cc565b005b3480156108e357600080fd5b506108fe60048036038101906108f991906134fe565b611893565b005b34801561090c57600080fd5b50610915611a14565b005b34801561092357600080fd5b5061093e600480360381019061093991906133bb565b611a48565b60405161094b9190613ed5565b60405180910390f35b34801561096057600080fd5b5061097b6004803603810190610976919061347b565b611a60565b005b34801561098957600080fd5b506109a4600480360381019061099f9190613685565b611abc565b6040516109b19190613ed5565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc919061357e565b611b04565b005b3480156109ef57600080fd5b50610a0a6004803603810190610a059190613685565b611b64565b005b348015610a1857600080fd5b50610a336004803603810190610a2e9190613685565b611b76565b604051610a409190613b93565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b9190613685565b611c1d565b005b348015610a7e57600080fd5b50610a87611c2f565b604051610a949190613ed5565b60405180910390f35b348015610aa957600080fd5b50610ab2611c35565b604051610abf9190613ed5565b60405180910390f35b348015610ad457600080fd5b50610aef6004803603810190610aea91906133bb565b611c3b565b604051610afc9190613ed5565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613685565b611c4d565b005b348015610b3a57600080fd5b50610b43611c5f565b604051610b509190613ed5565b60405180910390f35b348015610b6557600080fd5b50610b806004803603810190610b7b91906133e8565b611c65565b604051610b8d9190613b78565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb891906133bb565b611cf9565b005b348015610bcb57600080fd5b50610bd4611d7d565b604051610be19190613ed5565b60405180910390f35b348015610bf657600080fd5b50610bff611d83565b604051610c0c9190613ed5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ce057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d4857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d585750610d5782611d89565b5b9050919050565b60155481565b606060018054610d7490614214565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090614214565b8015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b5050505050905090565b6000610e0282611df3565b610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613e95565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e87826112ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613dd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f17611e00565b73ffffffffffffffffffffffffffffffffffffffff161480610f465750610f4581610f40611e00565b611c65565b5b610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613c95565b60405180910390fd5b610f90838383611e08565b505050565b610f9d611eba565b8060108190555050565b60008054905090565b600f5481565b610fc1838383611f38565b505050565b610fce611eba565b8060138190555050565b6000610fe3836113c1565b8210611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613bb5565b60405180910390fd5b600061102e610fa7565b905060008060005b83811015611194576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461112857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561118057868414156111715781955050505050506111d0565b838061117c90614277565b9450505b50808061118c90614277565b915050611036565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613e55565b60405180910390fd5b92915050565b6111de611eba565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561123b573d6000803e3d6000fd5b50565b611246611eba565b8060168190555050565b60145481565b61127183838360405180602001604052806000815250611a60565b505050565b6000611280610fa7565b82106112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613c35565b60405180910390fd5b819050919050565b6112d1611eba565b8181600d91906112e2929190613159565b505050565b6112ef611eba565b80600f8190555050565b60135481565b600061130a826124f1565b600001519050919050565b60175481565b60105481565b600d805461132e90614214565b80601f016020809104026020016040519081016040528092919081815260200182805461135a90614214565b80156113a75780601f1061137c576101008083540402835291602001916113a7565b820191906000526020600020905b81548152906001019060200180831161138a57829003601f168201915b505050505081565b6113b7611eba565b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613cb5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600e5481565b6114b8611eba565b6114c260006126f4565b565b6114cc611eba565b8060118190555050565b6114de611eba565b6114e833826127ba565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61151d611eba565b80600c8190555050565b60606002805461153690614214565b80601f016020809104026020016040519081016040528092919081815260200182805461156290614214565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b60006115de6115d9610fa7565b611abc565b9050600b60009054906101000a900460ff1661162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690613db5565b60405180910390fd5b601154821115611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613d35565b60405180910390fd5b60135482611680610fa7565b61168a9190613fcf565b11156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290613cf5565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117de578082101561171e578091505b600c54818361172d91906140e4565b6117379190614056565b341015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613bd5565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c89190613fcf565b925050819055506117d933836127ba565b61188f565b600c54826117ec9190614056565b34101561182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613bd5565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187d9190613fcf565b9250508190555061188e33836127ba565b5b5050565b61189b611e00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613d75565b60405180910390fd5b8060066000611916611e00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c3611e00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a089190613b78565b60405180910390a35050565b611a1c611eba565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600a6020528060005260406000206000915090505481565b611a6b848484611f38565b611a77848484846127d8565b611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613df5565b60405180910390fd5b50505050565b6000601554821015611ad2576010549050611aff565b601654821015611ae657600f549050611aff565b601754821015611afa57600e549050611aff565b600090505b919050565b611b0c611eba565b60005b83839050811015611b5e57611b4b848483818110611b3057611b2f61437e565b5b9050602002016020810190611b4591906133bb565b836127ba565b8080611b5690614277565b915050611b0f565b50505050565b611b6c611eba565b80600e8190555050565b6060611b8182611df3565b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613d55565b60405180910390fd5b6000611bca61296f565b90506000815111611bea5760405180602001604052806000815250611c15565b80611bf484612a01565b604051602001611c05929190613aed565b6040516020818303038152906040525b915050919050565b611c25611eba565b8060178190555050565b60125481565b60075481565b6000611c4682612b62565b9050919050565b611c55611eba565b8060158190555050565b60115481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d01611eba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613bf5565b60405180910390fd5b611d7a816126f4565b50565b60165481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ec2611e00565b73ffffffffffffffffffffffffffffffffffffffff16611ee06114eb565b73ffffffffffffffffffffffffffffffffffffffff1614611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d90613d15565b60405180910390fd5b565b6000611f43826124f1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f6a611e00565b73ffffffffffffffffffffffffffffffffffffffff161480611fc65750611f8f611e00565b73ffffffffffffffffffffffffffffffffffffffff16611fae84610df7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe25750611fe18260000151611fdc611e00565b611c65565b5b905080612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613d95565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90613cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90613c55565b60405180910390fd5b6121138585856001612c4b565b6121236000848460000151611e08565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661219191906140b0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122359190613f89565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461233b9190613fcf565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612481576123b181611df3565b15612480576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e98686866001612c51565b505050505050565b6124f96131df565b61250282611df3565b612541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253890613c15565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106125a55760017f00000000000000000000000000000000000000000000000000000000000000008461259891906140e4565b6125a29190613fcf565b90505b60008390505b8181106126b3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461269f578093505050506126ef565b5080806126ab906141ea565b9150506125ab565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e690613e75565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127d4828260405180602001604052806000815250612c57565b5050565b60006127f98473ffffffffffffffffffffffffffffffffffffffff16613136565b15612962578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612822611e00565b8786866040518563ffffffff1660e01b81526004016128449493929190613b2c565b602060405180830381600087803b15801561285e57600080fd5b505af192505050801561288f57506040513d601f19601f8201168201806040525081019061288c919061360b565b60015b612912573d80600081146128bf576040519150601f19603f3d011682016040523d82523d6000602084013e6128c4565b606091505b5060008151141561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190613df5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612967565b600190505b949350505050565b6060600d805461297e90614214565b80601f01602080910402602001604051908101604052809291908181526020018280546129aa90614214565b80156129f75780601f106129cc576101008083540402835291602001916129f7565b820191906000526020600020905b8154815290600101906020018083116129da57829003601f168201915b5050505050905090565b60606000821415612a49576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b5d565b600082905060005b60008214612a7b578080612a6490614277565b915050600a82612a749190614025565b9150612a51565b60008167ffffffffffffffff811115612a9757612a966143ad565b5b6040519080825280601f01601f191660200182016040528015612ac95781602001600182028036833780820191505090505b5090505b60008514612b5657600182612ae291906140e4565b9150600a85612af191906142c0565b6030612afd9190613fcf565b60f81b818381518110612b1357612b1261437e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b4f9190614025565b9450612acd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bca90613c75565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc490613e35565b60405180910390fd5b612cd681611df3565b15612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90613e15565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7090613eb5565b60405180910390fd5b612d866000858386612c4b565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612e839190613f89565b6fffffffffffffffffffffffffffffffff168152602001858360200151612eaa9190613f89565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561311957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b960008884886127d8565b6130f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ef90613df5565b60405180910390fd5b818061310390614277565b925050808061311190614277565b915050613048565b508060008190555061312e6000878588612c51565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461316590614214565b90600052602060002090601f01602090048101928261318757600085556131ce565b82601f106131a057803560ff19168380011785556131ce565b828001600101855582156131ce579182015b828111156131cd5782358255916020019190600101906131b2565b5b5090506131db9190613219565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561323257600081600090555060010161321a565b5090565b600061324961324484613f15565b613ef0565b905082815260208101848484011115613265576132646143eb565b5b6132708482856141a8565b509392505050565b60008135905061328781614ab8565b92915050565b60008083601f8401126132a3576132a26143e1565b5b8235905067ffffffffffffffff8111156132c0576132bf6143dc565b5b6020830191508360208202830111156132dc576132db6143e6565b5b9250929050565b6000813590506132f281614acf565b92915050565b60008135905061330781614ae6565b92915050565b60008151905061331c81614ae6565b92915050565b600082601f830112613337576133366143e1565b5b8135613347848260208601613236565b91505092915050565b60008083601f840112613366576133656143e1565b5b8235905067ffffffffffffffff811115613383576133826143dc565b5b60208301915083600182028301111561339f5761339e6143e6565b5b9250929050565b6000813590506133b581614afd565b92915050565b6000602082840312156133d1576133d06143f5565b5b60006133df84828501613278565b91505092915050565b600080604083850312156133ff576133fe6143f5565b5b600061340d85828601613278565b925050602061341e85828601613278565b9150509250929050565b600080600060608486031215613441576134406143f5565b5b600061344f86828701613278565b935050602061346086828701613278565b9250506040613471868287016133a6565b9150509250925092565b60008060008060808587031215613495576134946143f5565b5b60006134a387828801613278565b94505060206134b487828801613278565b93505060406134c5878288016133a6565b925050606085013567ffffffffffffffff8111156134e6576134e56143f0565b5b6134f287828801613322565b91505092959194509250565b60008060408385031215613515576135146143f5565b5b600061352385828601613278565b9250506020613534858286016132e3565b9150509250929050565b60008060408385031215613555576135546143f5565b5b600061356385828601613278565b9250506020613574858286016133a6565b9150509250929050565b600080600060408486031215613597576135966143f5565b5b600084013567ffffffffffffffff8111156135b5576135b46143f0565b5b6135c18682870161328d565b935093505060206135d4868287016133a6565b9150509250925092565b6000602082840312156135f4576135f36143f5565b5b6000613602848285016132f8565b91505092915050565b600060208284031215613621576136206143f5565b5b600061362f8482850161330d565b91505092915050565b6000806020838503121561364f5761364e6143f5565b5b600083013567ffffffffffffffff81111561366d5761366c6143f0565b5b61367985828601613350565b92509250509250929050565b60006020828403121561369b5761369a6143f5565b5b60006136a9848285016133a6565b91505092915050565b6136bb81614118565b82525050565b6136ca8161412a565b82525050565b60006136db82613f46565b6136e58185613f5c565b93506136f58185602086016141b7565b6136fe816143fa565b840191505092915050565b600061371482613f51565b61371e8185613f6d565b935061372e8185602086016141b7565b613737816143fa565b840191505092915050565b600061374d82613f51565b6137578185613f7e565b93506137678185602086016141b7565b80840191505092915050565b6000613780602283613f6d565b915061378b8261440b565b604082019050919050565b60006137a3601f83613f6d565b91506137ae8261445a565b602082019050919050565b60006137c6602683613f6d565b91506137d182614483565b604082019050919050565b60006137e9602a83613f6d565b91506137f4826144d2565b604082019050919050565b600061380c602383613f6d565b915061381782614521565b604082019050919050565b600061382f602583613f6d565b915061383a82614570565b604082019050919050565b6000613852603183613f6d565b915061385d826145bf565b604082019050919050565b6000613875603983613f6d565b91506138808261460e565b604082019050919050565b6000613898602b83613f6d565b91506138a38261465d565b604082019050919050565b60006138bb602683613f6d565b91506138c6826146ac565b604082019050919050565b60006138de601483613f6d565b91506138e9826146fb565b602082019050919050565b6000613901602083613f6d565b915061390c82614724565b602082019050919050565b6000613924602083613f6d565b915061392f8261474d565b602082019050919050565b6000613947602f83613f6d565b915061395282614776565b604082019050919050565b600061396a601a83613f6d565b9150613975826147c5565b602082019050919050565b600061398d603283613f6d565b9150613998826147ee565b604082019050919050565b60006139b0601a83613f6d565b91506139bb8261483d565b602082019050919050565b60006139d3602283613f6d565b91506139de82614866565b604082019050919050565b60006139f6603383613f6d565b9150613a01826148b5565b604082019050919050565b6000613a19601d83613f6d565b9150613a2482614904565b602082019050919050565b6000613a3c602183613f6d565b9150613a478261492d565b604082019050919050565b6000613a5f602e83613f6d565b9150613a6a8261497c565b604082019050919050565b6000613a82602f83613f6d565b9150613a8d826149cb565b604082019050919050565b6000613aa5602d83613f6d565b9150613ab082614a1a565b604082019050919050565b6000613ac8602283613f6d565b9150613ad382614a69565b604082019050919050565b613ae78161419e565b82525050565b6000613af98285613742565b9150613b058284613742565b91508190509392505050565b6000602082019050613b2660008301846136b2565b92915050565b6000608082019050613b4160008301876136b2565b613b4e60208301866136b2565b613b5b6040830185613ade565b8181036060830152613b6d81846136d0565b905095945050505050565b6000602082019050613b8d60008301846136c1565b92915050565b60006020820190508181036000830152613bad8184613709565b905092915050565b60006020820190508181036000830152613bce81613773565b9050919050565b60006020820190508181036000830152613bee81613796565b9050919050565b60006020820190508181036000830152613c0e816137b9565b9050919050565b60006020820190508181036000830152613c2e816137dc565b9050919050565b60006020820190508181036000830152613c4e816137ff565b9050919050565b60006020820190508181036000830152613c6e81613822565b9050919050565b60006020820190508181036000830152613c8e81613845565b9050919050565b60006020820190508181036000830152613cae81613868565b9050919050565b60006020820190508181036000830152613cce8161388b565b9050919050565b60006020820190508181036000830152613cee816138ae565b9050919050565b60006020820190508181036000830152613d0e816138d1565b9050919050565b60006020820190508181036000830152613d2e816138f4565b9050919050565b60006020820190508181036000830152613d4e81613917565b9050919050565b60006020820190508181036000830152613d6e8161393a565b9050919050565b60006020820190508181036000830152613d8e8161395d565b9050919050565b60006020820190508181036000830152613dae81613980565b9050919050565b60006020820190508181036000830152613dce816139a3565b9050919050565b60006020820190508181036000830152613dee816139c6565b9050919050565b60006020820190508181036000830152613e0e816139e9565b9050919050565b60006020820190508181036000830152613e2e81613a0c565b9050919050565b60006020820190508181036000830152613e4e81613a2f565b9050919050565b60006020820190508181036000830152613e6e81613a52565b9050919050565b60006020820190508181036000830152613e8e81613a75565b9050919050565b60006020820190508181036000830152613eae81613a98565b9050919050565b60006020820190508181036000830152613ece81613abb565b9050919050565b6000602082019050613eea6000830184613ade565b92915050565b6000613efa613f0b565b9050613f068282614246565b919050565b6000604051905090565b600067ffffffffffffffff821115613f3057613f2f6143ad565b5b613f39826143fa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f9482614162565b9150613f9f83614162565b9250826fffffffffffffffffffffffffffffffff03821115613fc457613fc36142f1565b5b828201905092915050565b6000613fda8261419e565b9150613fe58361419e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561401a576140196142f1565b5b828201905092915050565b60006140308261419e565b915061403b8361419e565b92508261404b5761404a614320565b5b828204905092915050565b60006140618261419e565b915061406c8361419e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140a5576140a46142f1565b5b828202905092915050565b60006140bb82614162565b91506140c683614162565b9250828210156140d9576140d86142f1565b5b828203905092915050565b60006140ef8261419e565b91506140fa8361419e565b92508282101561410d5761410c6142f1565b5b828203905092915050565b60006141238261417e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d55780820151818401526020810190506141ba565b838111156141e4576000848401525b50505050565b60006141f58261419e565b91506000821415614209576142086142f1565b5b600182039050919050565b6000600282049050600182168061422c57607f821691505b602082108114156142405761423f61434f565b5b50919050565b61424f826143fa565b810181811067ffffffffffffffff8211171561426e5761426d6143ad565b5b80604052505050565b60006142828261419e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142b5576142b46142f1565b5b600182019050919050565b60006142cb8261419e565b91506142d68361419e565b9250826142e6576142e5614320565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f50756467792050616e64617320496e73756666696369656e742046756e647300600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f50756467792050616e64617320536f6c646f7574000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50756467792050616e646173204d617820506572205472616e73616374696f6e600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f50756467792050616e646173204d696e74696e67205061757365000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614ac181614118565b8114614acc57600080fd5b50565b614ad88161412a565b8114614ae357600080fd5b50565b614aef81614136565b8114614afa57600080fd5b50565b614b068161419e565b8114614b1157600080fd5b5056fea26469706673582212202760fb3d06fc2a5c3e59313ca025c19208f659b4f46fa5a0f10909da1999bfd064736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102ff5760003560e01c8063715018a611610190578063c204642c116100dc578063dc33e68111610095578063e985e9c51161006f578063e985e9c514610b59578063f2fde38b14610b96578063fc44834314610bbf578063fdbf9ef214610bea576102ff565b8063dc33e68114610ac8578063de0808c314610b05578063de7fcb1d14610b2e576102ff565b8063c204642c146109ba578063c27ffd2d146109e3578063c87b56dd14610a0c578063d4b6baab14610a49578063d5abeb0114610a72578063d7224ba014610a9d576102ff565b80639da3f8fd11610149578063ac915c0611610123578063ac915c0614610900578063ae8f517d14610917578063b88d4fde14610954578063ba7b82a91461097d576102ff565b80639da3f8fd14610890578063a0712d68146108bb578063a22cb465146108d7576102ff565b8063715018a6146107a857806379f34a10146107bf5780638171609b146107e85780638da5cb5b1461081157806391b7f5ed1461083c57806395d89b4114610865576102ff565b806341c66d0a1161024f5780636352211e116102085780636c0360eb116101e25780636c0360eb146106ec5780636f8b44b01461071757806370a082311461074057806370c43ef51461077d576102ff565b80636352211e1461065957806369090e3b146106965780636955e78a146106c1576102ff565b806341c66d0a1461054b57806342842e0e146105765780634f6ccce71461059f57806355f804b3146105dc578063568d987c146106055780635e84d7231461062e576102ff565b806318160ddd116102bc57806326aa420a1161029657806326aa420a146104a55780632f745c59146104ce5780633ccfd60b1461050b5780634142691e14610522576102ff565b806318160ddd14610426578063192086371461045157806323b872dd1461047c576102ff565b806301ffc9a714610304578063063440f01461034157806306fdde031461036c578063081812fc14610397578063095ea7b3146103d457806314a71836146103fd575b600080fd5b34801561031057600080fd5b5061032b600480360381019061032691906135de565b610c15565b6040516103389190613b78565b60405180910390f35b34801561034d57600080fd5b50610356610d5f565b6040516103639190613ed5565b60405180910390f35b34801561037857600080fd5b50610381610d65565b60405161038e9190613b93565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190613685565b610df7565b6040516103cb9190613b11565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061353e565b610e7c565b005b34801561040957600080fd5b50610424600480360381019061041f9190613685565b610f95565b005b34801561043257600080fd5b5061043b610fa7565b6040516104489190613ed5565b60405180910390f35b34801561045d57600080fd5b50610466610fb0565b6040516104739190613ed5565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613428565b610fb6565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613685565b610fc6565b005b3480156104da57600080fd5b506104f560048036038101906104f0919061353e565b610fd8565b6040516105029190613ed5565b60405180910390f35b34801561051757600080fd5b506105206111d6565b005b34801561052e57600080fd5b5061054960048036038101906105449190613685565b61123e565b005b34801561055757600080fd5b50610560611250565b60405161056d9190613ed5565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613428565b611256565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613685565b611276565b6040516105d39190613ed5565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613638565b6112c9565b005b34801561061157600080fd5b5061062c60048036038101906106279190613685565b6112e7565b005b34801561063a57600080fd5b506106436112f9565b6040516106509190613ed5565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190613685565b6112ff565b60405161068d9190613b11565b60405180910390f35b3480156106a257600080fd5b506106ab611315565b6040516106b89190613ed5565b60405180910390f35b3480156106cd57600080fd5b506106d661131b565b6040516106e39190613ed5565b60405180910390f35b3480156106f857600080fd5b50610701611321565b60405161070e9190613b93565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613685565b6113af565b005b34801561074c57600080fd5b50610767600480360381019061076291906133bb565b6113c1565b6040516107749190613ed5565b60405180910390f35b34801561078957600080fd5b506107926114aa565b60405161079f9190613ed5565b60405180910390f35b3480156107b457600080fd5b506107bd6114b0565b005b3480156107cb57600080fd5b506107e660048036038101906107e19190613685565b6114c4565b005b3480156107f457600080fd5b5061080f600480360381019061080a9190613685565b6114d6565b005b34801561081d57600080fd5b506108266114eb565b6040516108339190613b11565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190613685565b611515565b005b34801561087157600080fd5b5061087a611527565b6040516108879190613b93565b60405180910390f35b34801561089c57600080fd5b506108a56115b9565b6040516108b29190613b78565b60405180910390f35b6108d560048036038101906108d09190613685565b6115cc565b005b3480156108e357600080fd5b506108fe60048036038101906108f991906134fe565b611893565b005b34801561090c57600080fd5b50610915611a14565b005b34801561092357600080fd5b5061093e600480360381019061093991906133bb565b611a48565b60405161094b9190613ed5565b60405180910390f35b34801561096057600080fd5b5061097b6004803603810190610976919061347b565b611a60565b005b34801561098957600080fd5b506109a4600480360381019061099f9190613685565b611abc565b6040516109b19190613ed5565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc919061357e565b611b04565b005b3480156109ef57600080fd5b50610a0a6004803603810190610a059190613685565b611b64565b005b348015610a1857600080fd5b50610a336004803603810190610a2e9190613685565b611b76565b604051610a409190613b93565b60405180910390f35b348015610a5557600080fd5b50610a706004803603810190610a6b9190613685565b611c1d565b005b348015610a7e57600080fd5b50610a87611c2f565b604051610a949190613ed5565b60405180910390f35b348015610aa957600080fd5b50610ab2611c35565b604051610abf9190613ed5565b60405180910390f35b348015610ad457600080fd5b50610aef6004803603810190610aea91906133bb565b611c3b565b604051610afc9190613ed5565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613685565b611c4d565b005b348015610b3a57600080fd5b50610b43611c5f565b604051610b509190613ed5565b60405180910390f35b348015610b6557600080fd5b50610b806004803603810190610b7b91906133e8565b611c65565b604051610b8d9190613b78565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb891906133bb565b611cf9565b005b348015610bcb57600080fd5b50610bd4611d7d565b604051610be19190613ed5565b60405180910390f35b348015610bf657600080fd5b50610bff611d83565b604051610c0c9190613ed5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ce057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d4857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d585750610d5782611d89565b5b9050919050565b60155481565b606060018054610d7490614214565b80601f0160208091040260200160405190810160405280929190818152602001828054610da090614214565b8015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b5050505050905090565b6000610e0282611df3565b610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613e95565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e87826112ff565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613dd5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f17611e00565b73ffffffffffffffffffffffffffffffffffffffff161480610f465750610f4581610f40611e00565b611c65565b5b610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90613c95565b60405180910390fd5b610f90838383611e08565b505050565b610f9d611eba565b8060108190555050565b60008054905090565b600f5481565b610fc1838383611f38565b505050565b610fce611eba565b8060138190555050565b6000610fe3836113c1565b8210611024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101b90613bb5565b60405180910390fd5b600061102e610fa7565b905060008060005b83811015611194576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461112857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561118057868414156111715781955050505050506111d0565b838061117c90614277565b9450505b50808061118c90614277565b915050611036565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613e55565b60405180910390fd5b92915050565b6111de611eba565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561123b573d6000803e3d6000fd5b50565b611246611eba565b8060168190555050565b60145481565b61127183838360405180602001604052806000815250611a60565b505050565b6000611280610fa7565b82106112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613c35565b60405180910390fd5b819050919050565b6112d1611eba565b8181600d91906112e2929190613159565b505050565b6112ef611eba565b80600f8190555050565b60135481565b600061130a826124f1565b600001519050919050565b60175481565b60105481565b600d805461132e90614214565b80601f016020809104026020016040519081016040528092919081815260200182805461135a90614214565b80156113a75780601f1061137c576101008083540402835291602001916113a7565b820191906000526020600020905b81548152906001019060200180831161138a57829003601f168201915b505050505081565b6113b7611eba565b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613cb5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600e5481565b6114b8611eba565b6114c260006126f4565b565b6114cc611eba565b8060118190555050565b6114de611eba565b6114e833826127ba565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61151d611eba565b80600c8190555050565b60606002805461153690614214565b80601f016020809104026020016040519081016040528092919081815260200182805461156290614214565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b60006115de6115d9610fa7565b611abc565b9050600b60009054906101000a900460ff1661162f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162690613db5565b60405180910390fd5b601154821115611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613d35565b60405180910390fd5b60135482611680610fa7565b61168a9190613fcf565b11156116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290613cf5565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156117de578082101561171e578091505b600c54818361172d91906140e4565b6117379190614056565b341015611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613bd5565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117c89190613fcf565b925050819055506117d933836127ba565b61188f565b600c54826117ec9190614056565b34101561182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613bd5565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461187d9190613fcf565b9250508190555061188e33836127ba565b5b5050565b61189b611e00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613d75565b60405180910390fd5b8060066000611916611e00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c3611e00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a089190613b78565b60405180910390a35050565b611a1c611eba565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600a6020528060005260406000206000915090505481565b611a6b848484611f38565b611a77848484846127d8565b611ab6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aad90613df5565b60405180910390fd5b50505050565b6000601554821015611ad2576010549050611aff565b601654821015611ae657600f549050611aff565b601754821015611afa57600e549050611aff565b600090505b919050565b611b0c611eba565b60005b83839050811015611b5e57611b4b848483818110611b3057611b2f61437e565b5b9050602002016020810190611b4591906133bb565b836127ba565b8080611b5690614277565b915050611b0f565b50505050565b611b6c611eba565b80600e8190555050565b6060611b8182611df3565b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613d55565b60405180910390fd5b6000611bca61296f565b90506000815111611bea5760405180602001604052806000815250611c15565b80611bf484612a01565b604051602001611c05929190613aed565b6040516020818303038152906040525b915050919050565b611c25611eba565b8060178190555050565b60125481565b60075481565b6000611c4682612b62565b9050919050565b611c55611eba565b8060158190555050565b60115481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d01611eba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613bf5565b60405180910390fd5b611d7a816126f4565b50565b60165481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611ec2611e00565b73ffffffffffffffffffffffffffffffffffffffff16611ee06114eb565b73ffffffffffffffffffffffffffffffffffffffff1614611f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2d90613d15565b60405180910390fd5b565b6000611f43826124f1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f6a611e00565b73ffffffffffffffffffffffffffffffffffffffff161480611fc65750611f8f611e00565b73ffffffffffffffffffffffffffffffffffffffff16611fae84610df7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe25750611fe18260000151611fdc611e00565b611c65565b5b905080612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613d95565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90613cd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fd90613c55565b60405180910390fd5b6121138585856001612c4b565b6121236000848460000151611e08565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661219191906140b0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122359190613f89565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461233b9190613fcf565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612481576123b181611df3565b15612480576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124e98686866001612c51565b505050505050565b6124f96131df565b61250282611df3565b612541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253890613c15565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106125a55760017f00000000000000000000000000000000000000000000000000000000000000148461259891906140e4565b6125a29190613fcf565b90505b60008390505b8181106126b3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461269f578093505050506126ef565b5080806126ab906141ea565b9150506125ab565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e690613e75565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127d4828260405180602001604052806000815250612c57565b5050565b60006127f98473ffffffffffffffffffffffffffffffffffffffff16613136565b15612962578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612822611e00565b8786866040518563ffffffff1660e01b81526004016128449493929190613b2c565b602060405180830381600087803b15801561285e57600080fd5b505af192505050801561288f57506040513d601f19601f8201168201806040525081019061288c919061360b565b60015b612912573d80600081146128bf576040519150601f19603f3d011682016040523d82523d6000602084013e6128c4565b606091505b5060008151141561290a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290190613df5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612967565b600190505b949350505050565b6060600d805461297e90614214565b80601f01602080910402602001604051908101604052809291908181526020018280546129aa90614214565b80156129f75780601f106129cc576101008083540402835291602001916129f7565b820191906000526020600020905b8154815290600101906020018083116129da57829003601f168201915b5050505050905090565b60606000821415612a49576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b5d565b600082905060005b60008214612a7b578080612a6490614277565b915050600a82612a749190614025565b9150612a51565b60008167ffffffffffffffff811115612a9757612a966143ad565b5b6040519080825280601f01601f191660200182016040528015612ac95781602001600182028036833780820191505090505b5090505b60008514612b5657600182612ae291906140e4565b9150600a85612af191906142c0565b6030612afd9190613fcf565b60f81b818381518110612b1357612b1261437e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b4f9190614025565b9450612acd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bca90613c75565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc490613e35565b60405180910390fd5b612cd681611df3565b15612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90613e15565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7090613eb5565b60405180910390fd5b612d866000858386612c4b565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612e839190613f89565b6fffffffffffffffffffffffffffffffff168152602001858360200151612eaa9190613f89565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561311957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b960008884886127d8565b6130f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ef90613df5565b60405180910390fd5b818061310390614277565b925050808061311190614277565b915050613048565b508060008190555061312e6000878588612c51565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461316590614214565b90600052602060002090601f01602090048101928261318757600085556131ce565b82601f106131a057803560ff19168380011785556131ce565b828001600101855582156131ce579182015b828111156131cd5782358255916020019190600101906131b2565b5b5090506131db9190613219565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561323257600081600090555060010161321a565b5090565b600061324961324484613f15565b613ef0565b905082815260208101848484011115613265576132646143eb565b5b6132708482856141a8565b509392505050565b60008135905061328781614ab8565b92915050565b60008083601f8401126132a3576132a26143e1565b5b8235905067ffffffffffffffff8111156132c0576132bf6143dc565b5b6020830191508360208202830111156132dc576132db6143e6565b5b9250929050565b6000813590506132f281614acf565b92915050565b60008135905061330781614ae6565b92915050565b60008151905061331c81614ae6565b92915050565b600082601f830112613337576133366143e1565b5b8135613347848260208601613236565b91505092915050565b60008083601f840112613366576133656143e1565b5b8235905067ffffffffffffffff811115613383576133826143dc565b5b60208301915083600182028301111561339f5761339e6143e6565b5b9250929050565b6000813590506133b581614afd565b92915050565b6000602082840312156133d1576133d06143f5565b5b60006133df84828501613278565b91505092915050565b600080604083850312156133ff576133fe6143f5565b5b600061340d85828601613278565b925050602061341e85828601613278565b9150509250929050565b600080600060608486031215613441576134406143f5565b5b600061344f86828701613278565b935050602061346086828701613278565b9250506040613471868287016133a6565b9150509250925092565b60008060008060808587031215613495576134946143f5565b5b60006134a387828801613278565b94505060206134b487828801613278565b93505060406134c5878288016133a6565b925050606085013567ffffffffffffffff8111156134e6576134e56143f0565b5b6134f287828801613322565b91505092959194509250565b60008060408385031215613515576135146143f5565b5b600061352385828601613278565b9250506020613534858286016132e3565b9150509250929050565b60008060408385031215613555576135546143f5565b5b600061356385828601613278565b9250506020613574858286016133a6565b9150509250929050565b600080600060408486031215613597576135966143f5565b5b600084013567ffffffffffffffff8111156135b5576135b46143f0565b5b6135c18682870161328d565b935093505060206135d4868287016133a6565b9150509250925092565b6000602082840312156135f4576135f36143f5565b5b6000613602848285016132f8565b91505092915050565b600060208284031215613621576136206143f5565b5b600061362f8482850161330d565b91505092915050565b6000806020838503121561364f5761364e6143f5565b5b600083013567ffffffffffffffff81111561366d5761366c6143f0565b5b61367985828601613350565b92509250509250929050565b60006020828403121561369b5761369a6143f5565b5b60006136a9848285016133a6565b91505092915050565b6136bb81614118565b82525050565b6136ca8161412a565b82525050565b60006136db82613f46565b6136e58185613f5c565b93506136f58185602086016141b7565b6136fe816143fa565b840191505092915050565b600061371482613f51565b61371e8185613f6d565b935061372e8185602086016141b7565b613737816143fa565b840191505092915050565b600061374d82613f51565b6137578185613f7e565b93506137678185602086016141b7565b80840191505092915050565b6000613780602283613f6d565b915061378b8261440b565b604082019050919050565b60006137a3601f83613f6d565b91506137ae8261445a565b602082019050919050565b60006137c6602683613f6d565b91506137d182614483565b604082019050919050565b60006137e9602a83613f6d565b91506137f4826144d2565b604082019050919050565b600061380c602383613f6d565b915061381782614521565b604082019050919050565b600061382f602583613f6d565b915061383a82614570565b604082019050919050565b6000613852603183613f6d565b915061385d826145bf565b604082019050919050565b6000613875603983613f6d565b91506138808261460e565b604082019050919050565b6000613898602b83613f6d565b91506138a38261465d565b604082019050919050565b60006138bb602683613f6d565b91506138c6826146ac565b604082019050919050565b60006138de601483613f6d565b91506138e9826146fb565b602082019050919050565b6000613901602083613f6d565b915061390c82614724565b602082019050919050565b6000613924602083613f6d565b915061392f8261474d565b602082019050919050565b6000613947602f83613f6d565b915061395282614776565b604082019050919050565b600061396a601a83613f6d565b9150613975826147c5565b602082019050919050565b600061398d603283613f6d565b9150613998826147ee565b604082019050919050565b60006139b0601a83613f6d565b91506139bb8261483d565b602082019050919050565b60006139d3602283613f6d565b91506139de82614866565b604082019050919050565b60006139f6603383613f6d565b9150613a01826148b5565b604082019050919050565b6000613a19601d83613f6d565b9150613a2482614904565b602082019050919050565b6000613a3c602183613f6d565b9150613a478261492d565b604082019050919050565b6000613a5f602e83613f6d565b9150613a6a8261497c565b604082019050919050565b6000613a82602f83613f6d565b9150613a8d826149cb565b604082019050919050565b6000613aa5602d83613f6d565b9150613ab082614a1a565b604082019050919050565b6000613ac8602283613f6d565b9150613ad382614a69565b604082019050919050565b613ae78161419e565b82525050565b6000613af98285613742565b9150613b058284613742565b91508190509392505050565b6000602082019050613b2660008301846136b2565b92915050565b6000608082019050613b4160008301876136b2565b613b4e60208301866136b2565b613b5b6040830185613ade565b8181036060830152613b6d81846136d0565b905095945050505050565b6000602082019050613b8d60008301846136c1565b92915050565b60006020820190508181036000830152613bad8184613709565b905092915050565b60006020820190508181036000830152613bce81613773565b9050919050565b60006020820190508181036000830152613bee81613796565b9050919050565b60006020820190508181036000830152613c0e816137b9565b9050919050565b60006020820190508181036000830152613c2e816137dc565b9050919050565b60006020820190508181036000830152613c4e816137ff565b9050919050565b60006020820190508181036000830152613c6e81613822565b9050919050565b60006020820190508181036000830152613c8e81613845565b9050919050565b60006020820190508181036000830152613cae81613868565b9050919050565b60006020820190508181036000830152613cce8161388b565b9050919050565b60006020820190508181036000830152613cee816138ae565b9050919050565b60006020820190508181036000830152613d0e816138d1565b9050919050565b60006020820190508181036000830152613d2e816138f4565b9050919050565b60006020820190508181036000830152613d4e81613917565b9050919050565b60006020820190508181036000830152613d6e8161393a565b9050919050565b60006020820190508181036000830152613d8e8161395d565b9050919050565b60006020820190508181036000830152613dae81613980565b9050919050565b60006020820190508181036000830152613dce816139a3565b9050919050565b60006020820190508181036000830152613dee816139c6565b9050919050565b60006020820190508181036000830152613e0e816139e9565b9050919050565b60006020820190508181036000830152613e2e81613a0c565b9050919050565b60006020820190508181036000830152613e4e81613a2f565b9050919050565b60006020820190508181036000830152613e6e81613a52565b9050919050565b60006020820190508181036000830152613e8e81613a75565b9050919050565b60006020820190508181036000830152613eae81613a98565b9050919050565b60006020820190508181036000830152613ece81613abb565b9050919050565b6000602082019050613eea6000830184613ade565b92915050565b6000613efa613f0b565b9050613f068282614246565b919050565b6000604051905090565b600067ffffffffffffffff821115613f3057613f2f6143ad565b5b613f39826143fa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f9482614162565b9150613f9f83614162565b9250826fffffffffffffffffffffffffffffffff03821115613fc457613fc36142f1565b5b828201905092915050565b6000613fda8261419e565b9150613fe58361419e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561401a576140196142f1565b5b828201905092915050565b60006140308261419e565b915061403b8361419e565b92508261404b5761404a614320565b5b828204905092915050565b60006140618261419e565b915061406c8361419e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140a5576140a46142f1565b5b828202905092915050565b60006140bb82614162565b91506140c683614162565b9250828210156140d9576140d86142f1565b5b828203905092915050565b60006140ef8261419e565b91506140fa8361419e565b92508282101561410d5761410c6142f1565b5b828203905092915050565b60006141238261417e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d55780820151818401526020810190506141ba565b838111156141e4576000848401525b50505050565b60006141f58261419e565b91506000821415614209576142086142f1565b5b600182039050919050565b6000600282049050600182168061422c57607f821691505b602082108114156142405761423f61434f565b5b50919050565b61424f826143fa565b810181811067ffffffffffffffff8211171561426e5761426d6143ad565b5b80604052505050565b60006142828261419e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142b5576142b46142f1565b5b600182019050919050565b60006142cb8261419e565b91506142d68361419e565b9250826142e6576142e5614320565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f50756467792050616e64617320496e73756666696369656e742046756e647300600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f50756467792050616e64617320536f6c646f7574000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50756467792050616e646173204d617820506572205472616e73616374696f6e600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f50756467792050616e646173204d696e74696e67205061757365000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614ac181614118565b8114614acc57600080fd5b50565b614ad88161412a565b8114614ae357600080fd5b50565b614aef81614136565b8114614afa57600080fd5b50565b614b068161419e565b8114614b1157600080fd5b5056fea26469706673582212202760fb3d06fc2a5c3e59313ca025c19208f659b4f46fa5a0f10909da1999bfd064736f6c63430008070033
Deployed Bytecode Sourcemap
4082:4032:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4593:33:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7441:104:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4371:32:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8352:142:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7777:104:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7993:116:12;;;;;;;;;;;;;:::i;:::-;;7201:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4560:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2975:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6751:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7553:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4522:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4673:35:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4410:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4300:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7887:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4677:211:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4330:34:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;6959:114:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6533:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6861:90:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4202:31:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4803:831;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6647:92:12;;;;;;;;;;;;;:::i;:::-;;4149:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8777:311:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5642:428:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6315:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7665:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7317:112:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4487:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6078:113:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7081:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4449:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4633:33:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4240:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;4593:33:12:-;;;;:::o;5977:94:11:-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;7441:104:12:-;1094:13:0;:11;:13::i;:::-;7533:4:12::1;7514:16;:23;;;;7441:104:::0;:::o;2812:94:11:-;2865:7;2888:12;;2881:19;;2812:94;:::o;4371:32:12:-;;;;:::o;8352:142:11:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;7777:104:12:-;1094:13:0;:11;:13::i;:::-;7865:8:12::1;7850:12;:23;;;;7777:104:::0;:::o;3443:744:11:-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:22;3674:13;:11;:13::i;:::-;3649:38;;3694:19;3724:25;3774:9;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:11;:14;3869:1;3857:14;;;;;;;;;;;3823:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:1;3884:28;;:9;:14;;;:28;;;3880:89;;3945:9;:14;;;3925:34;;3880:89;4002:5;3981:26;;:17;:26;;;3977:135;;;4039:5;4024:11;:20;4020:59;;;4066:1;4059:8;;;;;;;;;4020:59;4089:13;;;;;:::i;:::-;;;;3977:135;3814:305;3809:3;;;;;:::i;:::-;;;;3769:350;;;;4125:56;;;;;;;;;;:::i;:::-;;;;;;;;3443:744;;;;;:::o;7993:116:12:-;1094:13:0;:11;:13::i;:::-;8049:10:12::1;8041:28;;:60;8086:4;8070:30;;;8041:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7993:116::o:0;7201:108::-;1094:13:0;:11;:13::i;:::-;7297:4:12::1;7280:14;:21;;;;7201:108:::0;:::o;4560:26::-;;;;:::o;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;2975:177::-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;6751:102:12:-;1094:13:0;:11;:13::i;:::-;6837:8:12::1;;6827:7;:18;;;;;;;:::i;:::-;;6751:102:::0;;:::o;7553:104::-;1094:13:0;:11;:13::i;:::-;7645:4:12::1;7626:16;:23;;;;7553:104:::0;:::o;4522:31::-;;;;:::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;4673:35:12:-;;;;:::o;4410:32::-;;;;:::o;4300:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7887:98::-;1094:13:0;:11;:13::i;:::-;7969:8:12::1;7957:9;:20;;;;7887:98:::0;:::o;4677:211:11:-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;4330:34:12:-;;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;6959:114:12:-;1094:13:0;:11;:13::i;:::-;7052::12::1;7037:12;:28;;;;6959:114:::0;:::o;6533:106::-;1094:13:0;:11;:13::i;:::-;6605:26:12::1;6615:10;6627:3;6605:9;:26::i;:::-;6533:106:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;6861:90:12:-;1094:13:0;:11;:13::i;:::-;6937:6:12::1;6925:9;:18;;;;6861:90:::0;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;4202:31:12:-;;;;;;;;;;;;;:::o;4803:831::-;4863:13;4879:28;4893:13;:11;:13::i;:::-;4879;:28::i;:::-;4863:44;;4926:10;;;;;;;;;;;4918:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4994:12;;4987:3;:19;;4979:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:12;;5078:3;5062:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;;5054:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;5160:8;5135:10;:22;5146:10;5135:22;;;;;;;;;;;;;;;;:33;5132:495;;;5204:8;5198:3;:14;5195:33;;;5220:8;5214:14;;5195:33;5282:9;;5270:8;5264:3;:14;;;;:::i;:::-;5263:28;;;;:::i;:::-;5250:9;:41;;5242:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;5367:3;5341:10;:22;5352:10;5341:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;5384:26;5394:10;5406:3;5384:9;:26::i;:::-;5132:495;;;5487:9;;5481:3;:15;;;;:::i;:::-;5468:9;:28;;5460:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5572:3;5546:10;:22;5557:10;5546:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;5589:26;5599:10;5611:3;5589:9;:26::i;:::-;5132:495;4852:782;4803:831;:::o;7770:274:11:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;6647:92:12:-;1094:13:0;:11;:13::i;:::-;6720:10:12::1;;;;;;;;;;;6719:11;6705:10;;:25;;;;;;;;;;;;;;;;;;6647:92::o:0;4149:46::-;;;;;;;;;;;;;;;;;:::o;8777:311:11:-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;5642:428:12:-;5696:7;5725:14;;5719:3;:20;5716:347;;;5772:16;;5765:23;;;;5716:347;5825:14;;5819:3;:20;5815:248;;;5872:16;;5865:23;;;;5815:248;5925:16;;5919:3;:22;5915:148;;;5974:18;;5967:25;;;;5915:148;6050:1;6043:8;;5642:428;;;;:::o;6315:210::-;1094:13:0;:11;:13::i;:::-;6414:9:12::1;6409:109;6433:13;;:20;;6429:1;:24;6409:109;;;6474:32;6484:13;;6498:1;6484:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;6502:3;6474:9;:32::i;:::-;6455:3;;;;;:::i;:::-;;;;6409:109;;;;6315:210:::0;;;:::o;7665:104::-;1094:13:0;:11;:13::i;:::-;7757:4:12::1;7736:18;:25;;;;7665:104:::0;:::o;6293:394:11:-;6391:13;6432:16;6440:7;6432;:16::i;:::-;6416:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6522:21;6546:10;:8;:10::i;:::-;6522:34;;6601:1;6583:7;6577:21;:25;:104;;;;;;;;;;;;;;;;;6638:7;6647:18;:7;:16;:18::i;:::-;6621:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6577:104;6563:118;;;6293:394;;;:::o;7317:112:12:-;1094:13:0;:11;:13::i;:::-;7417:4:12::1;7398:16;:23;;;;7317:112:::0;:::o;4487:28::-;;;;:::o;13192:43:11:-;;;;:::o;6078:113:12:-;6136:7;6163:20;6177:5;6163:13;:20::i;:::-;6156:27;;6078:113;;;:::o;7081:108::-;1094:13:0;:11;:13::i;:::-;7177:4:12::1;7160:14;:21;;;;7081:108:::0;:::o;4449:29::-;;;;:::o;8107:186:11:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;4633:33:12:-;;;;:::o;4240:40::-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;11379:1529:11:-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;5140:606::-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5528:147;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;9438:98:11:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;14729:690::-;14866:4;14883:15;:2;:13;;;:15::i;:::-;14879:535;;;14938:2;14922:36;;;14959:12;:10;:12::i;:::-;14973:4;14979:7;14988:5;14922:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:1;15153:6;:13;:18;15149:215;;;15186:61;;;;;;;;;;:::i;:::-;;;;;;;;15149:215;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;15054:45;;;15044:55;;;:6;:55;;;;15037:62;;;;;14879:535;15402:4;15395:11;;14729:690;;;;;;;:::o;6199:108:12:-;6259:13;6292:7;6285:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6199:108;:::o;392:703:8:-;448:13;674:1;665:5;:10;661:51;;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;4894:240:11:-;4955:7;5004:1;4987:19;;:5;:19;;;;4971:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5095:12;:19;5108:5;5095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5087:41;;5080:48;;4894:240;;;:::o;15881:141::-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1159:133;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1298:137;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1441:141;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:122;;1713:79;;:::i;:::-;1672:122;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;1601:338;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:122;;2085:79;;:::i;:::-;2044:122;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:117;;;2250:79;;:::i;:::-;2214:117;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:128;;;2425:79;;:::i;:::-;2378:128;1959:553;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2518:139;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:119;;;2777:79;;:::i;:::-;2739:119;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2663:329;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:119;;;3129:79;;:::i;:::-;3091:119;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;2998:474;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:119;;;3626:79;;:::i;:::-;3588:119;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3478:619;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:120;;;4278:79;;:::i;:::-;4239:120;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:117;;;4862:79;;:::i;:::-;4826:117;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4103:943;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:119;;;5180:79;;:::i;:::-;5142:119;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5052:468;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:119;;;5657:79;;:::i;:::-;5619:119;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5526:474;;;;;:::o;6006:704::-;6101:6;6109;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6320:1;6309:9;6305:17;6292:31;6350:18;6342:6;6339:30;6336:117;;;6372:79;;:::i;:::-;6336:117;6485:80;6557:7;6548:6;6537:9;6533:22;6485:80;:::i;:::-;6467:98;;;;6263:312;6614:2;6640:53;6685:7;6676:6;6665:9;6661:22;6640:53;:::i;:::-;6630:63;;6585:118;6006:704;;;;;:::o;6716:327::-;6774:6;6823:2;6811:9;6802:7;6798:23;6794:32;6791:119;;;6829:79;;:::i;:::-;6791:119;6949:1;6974:52;7018:7;7009:6;6998:9;6994:22;6974:52;:::i;:::-;6964:62;;6920:116;6716:327;;;;:::o;7049:349::-;7118:6;7167:2;7155:9;7146:7;7142:23;7138:32;7135:119;;;7173:79;;:::i;:::-;7135:119;7293:1;7318:63;7373:7;7364:6;7353:9;7349:22;7318:63;:::i;:::-;7308:73;;7264:127;7049:349;;;;:::o;7404:529::-;7475:6;7483;7532:2;7520:9;7511:7;7507:23;7503:32;7500:119;;;7538:79;;:::i;:::-;7500:119;7686:1;7675:9;7671:17;7658:31;7716:18;7708:6;7705:30;7702:117;;;7738:79;;:::i;:::-;7702:117;7851:65;7908:7;7899:6;7888:9;7884:22;7851:65;:::i;:::-;7833:83;;;;7629:297;7404:529;;;;;:::o;7939:329::-;7998:6;8047:2;8035:9;8026:7;8022:23;8018:32;8015:119;;;8053:79;;:::i;:::-;8015:119;8173:1;8198:53;8243:7;8234:6;8223:9;8219:22;8198:53;:::i;:::-;8188:63;;8144:117;7939:329;;;;:::o;8274:118::-;8361:24;8379:5;8361:24;:::i;:::-;8356:3;8349:37;8274:118;;:::o;8398:109::-;8479:21;8494:5;8479:21;:::i;:::-;8474:3;8467:34;8398:109;;:::o;8513:360::-;8599:3;8627:38;8659:5;8627:38;:::i;:::-;8681:70;8744:6;8739:3;8681:70;:::i;:::-;8674:77;;8760:52;8805:6;8800:3;8793:4;8786:5;8782:16;8760:52;:::i;:::-;8837:29;8859:6;8837:29;:::i;:::-;8832:3;8828:39;8821:46;;8603:270;8513:360;;;;:::o;8879:364::-;8967:3;8995:39;9028:5;8995:39;:::i;:::-;9050:71;9114:6;9109:3;9050:71;:::i;:::-;9043:78;;9130:52;9175:6;9170:3;9163:4;9156:5;9152:16;9130:52;:::i;:::-;9207:29;9229:6;9207:29;:::i;:::-;9202:3;9198:39;9191:46;;8971:272;8879:364;;;;:::o;9249:377::-;9355:3;9383:39;9416:5;9383:39;:::i;:::-;9438:89;9520:6;9515:3;9438:89;:::i;:::-;9431:96;;9536:52;9581:6;9576:3;9569:4;9562:5;9558:16;9536:52;:::i;:::-;9613:6;9608:3;9604:16;9597:23;;9359:267;9249:377;;;;:::o;9632:366::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14840:366;;;:::o;15212:::-;15354:3;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15451:93;15540:3;15451:93;:::i;:::-;15569:2;15564:3;15560:12;15553:19;;15212:366;;;:::o;15584:::-;15726:3;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15823:93;15912:3;15823:93;:::i;:::-;15941:2;15936:3;15932:12;15925:19;;15584:366;;;:::o;15956:::-;16098:3;16119:67;16183:2;16178:3;16119:67;:::i;:::-;16112:74;;16195:93;16284:3;16195:93;:::i;:::-;16313:2;16308:3;16304:12;16297:19;;15956:366;;;:::o;16328:::-;16470:3;16491:67;16555:2;16550:3;16491:67;:::i;:::-;16484:74;;16567:93;16656:3;16567:93;:::i;:::-;16685:2;16680:3;16676:12;16669:19;;16328:366;;;:::o;16700:::-;16842:3;16863:67;16927:2;16922:3;16863:67;:::i;:::-;16856:74;;16939:93;17028:3;16939:93;:::i;:::-;17057:2;17052:3;17048:12;17041:19;;16700:366;;;:::o;17072:::-;17214:3;17235:67;17299:2;17294:3;17235:67;:::i;:::-;17228:74;;17311:93;17400:3;17311:93;:::i;:::-;17429:2;17424:3;17420:12;17413:19;;17072:366;;;:::o;17444:::-;17586:3;17607:67;17671:2;17666:3;17607:67;:::i;:::-;17600:74;;17683:93;17772:3;17683:93;:::i;:::-;17801:2;17796:3;17792:12;17785:19;;17444:366;;;:::o;17816:::-;17958:3;17979:67;18043:2;18038:3;17979:67;:::i;:::-;17972:74;;18055:93;18144:3;18055:93;:::i;:::-;18173:2;18168:3;18164:12;18157:19;;17816:366;;;:::o;18188:::-;18330:3;18351:67;18415:2;18410:3;18351:67;:::i;:::-;18344:74;;18427:93;18516:3;18427:93;:::i;:::-;18545:2;18540:3;18536:12;18529:19;;18188:366;;;:::o;18560:::-;18702:3;18723:67;18787:2;18782:3;18723:67;:::i;:::-;18716:74;;18799:93;18888:3;18799:93;:::i;:::-;18917:2;18912:3;18908:12;18901:19;;18560:366;;;:::o;18932:118::-;19019:24;19037:5;19019:24;:::i;:::-;19014:3;19007:37;18932:118;;:::o;19056:435::-;19236:3;19258:95;19349:3;19340:6;19258:95;:::i;:::-;19251:102;;19370:95;19461:3;19452:6;19370:95;:::i;:::-;19363:102;;19482:3;19475:10;;19056:435;;;;;:::o;19497:222::-;19590:4;19628:2;19617:9;19613:18;19605:26;;19641:71;19709:1;19698:9;19694:17;19685:6;19641:71;:::i;:::-;19497:222;;;;:::o;19725:640::-;19920:4;19958:3;19947:9;19943:19;19935:27;;19972:71;20040:1;20029:9;20025:17;20016:6;19972:71;:::i;:::-;20053:72;20121:2;20110:9;20106:18;20097:6;20053:72;:::i;:::-;20135;20203:2;20192:9;20188:18;20179:6;20135:72;:::i;:::-;20254:9;20248:4;20244:20;20239:2;20228:9;20224:18;20217:48;20282:76;20353:4;20344:6;20282:76;:::i;:::-;20274:84;;19725:640;;;;;;;:::o;20371:210::-;20458:4;20496:2;20485:9;20481:18;20473:26;;20509:65;20571:1;20560:9;20556:17;20547:6;20509:65;:::i;:::-;20371:210;;;;:::o;20587:313::-;20700:4;20738:2;20727:9;20723:18;20715:26;;20787:9;20781:4;20777:20;20773:1;20762:9;20758:17;20751:47;20815:78;20888:4;20879:6;20815:78;:::i;:::-;20807:86;;20587:313;;;;:::o;20906:419::-;21072:4;21110:2;21099:9;21095:18;21087:26;;21159:9;21153:4;21149:20;21145:1;21134:9;21130:17;21123:47;21187:131;21313:4;21187:131;:::i;:::-;21179:139;;20906:419;;;:::o;21331:::-;21497:4;21535:2;21524:9;21520:18;21512:26;;21584:9;21578:4;21574:20;21570:1;21559:9;21555:17;21548:47;21612:131;21738:4;21612:131;:::i;:::-;21604:139;;21331:419;;;:::o;21756:::-;21922:4;21960:2;21949:9;21945:18;21937:26;;22009:9;22003:4;21999:20;21995:1;21984:9;21980:17;21973:47;22037:131;22163:4;22037:131;:::i;:::-;22029:139;;21756:419;;;:::o;22181:::-;22347:4;22385:2;22374:9;22370:18;22362:26;;22434:9;22428:4;22424:20;22420:1;22409:9;22405:17;22398:47;22462:131;22588:4;22462:131;:::i;:::-;22454:139;;22181:419;;;:::o;22606:::-;22772:4;22810:2;22799:9;22795:18;22787:26;;22859:9;22853:4;22849:20;22845:1;22834:9;22830:17;22823:47;22887:131;23013:4;22887:131;:::i;:::-;22879:139;;22606:419;;;:::o;23031:::-;23197:4;23235:2;23224:9;23220:18;23212:26;;23284:9;23278:4;23274:20;23270:1;23259:9;23255:17;23248:47;23312:131;23438:4;23312:131;:::i;:::-;23304:139;;23031:419;;;:::o;23456:::-;23622:4;23660:2;23649:9;23645:18;23637:26;;23709:9;23703:4;23699:20;23695:1;23684:9;23680:17;23673:47;23737:131;23863:4;23737:131;:::i;:::-;23729:139;;23456:419;;;:::o;23881:::-;24047:4;24085:2;24074:9;24070:18;24062:26;;24134:9;24128:4;24124:20;24120:1;24109:9;24105:17;24098:47;24162:131;24288:4;24162:131;:::i;:::-;24154:139;;23881:419;;;:::o;24306:::-;24472:4;24510:2;24499:9;24495:18;24487:26;;24559:9;24553:4;24549:20;24545:1;24534:9;24530:17;24523:47;24587:131;24713:4;24587:131;:::i;:::-;24579:139;;24306:419;;;:::o;24731:::-;24897:4;24935:2;24924:9;24920:18;24912:26;;24984:9;24978:4;24974:20;24970:1;24959:9;24955:17;24948:47;25012:131;25138:4;25012:131;:::i;:::-;25004:139;;24731:419;;;:::o;25156:::-;25322:4;25360:2;25349:9;25345:18;25337:26;;25409:9;25403:4;25399:20;25395:1;25384:9;25380:17;25373:47;25437:131;25563:4;25437:131;:::i;:::-;25429:139;;25156:419;;;:::o;25581:::-;25747:4;25785:2;25774:9;25770:18;25762:26;;25834:9;25828:4;25824:20;25820:1;25809:9;25805:17;25798:47;25862:131;25988:4;25862:131;:::i;:::-;25854:139;;25581:419;;;:::o;26006:::-;26172:4;26210:2;26199:9;26195:18;26187:26;;26259:9;26253:4;26249:20;26245:1;26234:9;26230:17;26223:47;26287:131;26413:4;26287:131;:::i;:::-;26279:139;;26006:419;;;:::o;26431:::-;26597:4;26635:2;26624:9;26620:18;26612:26;;26684:9;26678:4;26674:20;26670:1;26659:9;26655:17;26648:47;26712:131;26838:4;26712:131;:::i;:::-;26704:139;;26431:419;;;:::o;26856:::-;27022:4;27060:2;27049:9;27045:18;27037:26;;27109:9;27103:4;27099:20;27095:1;27084:9;27080:17;27073:47;27137:131;27263:4;27137:131;:::i;:::-;27129:139;;26856:419;;;:::o;27281:::-;27447:4;27485:2;27474:9;27470:18;27462:26;;27534:9;27528:4;27524:20;27520:1;27509:9;27505:17;27498:47;27562:131;27688:4;27562:131;:::i;:::-;27554:139;;27281:419;;;:::o;27706:::-;27872:4;27910:2;27899:9;27895:18;27887:26;;27959:9;27953:4;27949:20;27945:1;27934:9;27930:17;27923:47;27987:131;28113:4;27987:131;:::i;:::-;27979:139;;27706:419;;;:::o;28131:::-;28297:4;28335:2;28324:9;28320:18;28312:26;;28384:9;28378:4;28374:20;28370:1;28359:9;28355:17;28348:47;28412:131;28538:4;28412:131;:::i;:::-;28404:139;;28131:419;;;:::o;28556:::-;28722:4;28760:2;28749:9;28745:18;28737:26;;28809:9;28803:4;28799:20;28795:1;28784:9;28780:17;28773:47;28837:131;28963:4;28837:131;:::i;:::-;28829:139;;28556:419;;;:::o;28981:::-;29147:4;29185:2;29174:9;29170:18;29162:26;;29234:9;29228:4;29224:20;29220:1;29209:9;29205:17;29198:47;29262:131;29388:4;29262:131;:::i;:::-;29254:139;;28981:419;;;:::o;29406:::-;29572:4;29610:2;29599:9;29595:18;29587:26;;29659:9;29653:4;29649:20;29645:1;29634:9;29630:17;29623:47;29687:131;29813:4;29687:131;:::i;:::-;29679:139;;29406:419;;;:::o;29831:::-;29997:4;30035:2;30024:9;30020:18;30012:26;;30084:9;30078:4;30074:20;30070:1;30059:9;30055:17;30048:47;30112:131;30238:4;30112:131;:::i;:::-;30104:139;;29831:419;;;:::o;30256:::-;30422:4;30460:2;30449:9;30445:18;30437:26;;30509:9;30503:4;30499:20;30495:1;30484:9;30480:17;30473:47;30537:131;30663:4;30537:131;:::i;:::-;30529:139;;30256:419;;;:::o;30681:::-;30847:4;30885:2;30874:9;30870:18;30862:26;;30934:9;30928:4;30924:20;30920:1;30909:9;30905:17;30898:47;30962:131;31088:4;30962:131;:::i;:::-;30954:139;;30681:419;;;:::o;31106:::-;31272:4;31310:2;31299:9;31295:18;31287:26;;31359:9;31353:4;31349:20;31345:1;31334:9;31330:17;31323:47;31387:131;31513:4;31387:131;:::i;:::-;31379:139;;31106:419;;;:::o;31531:222::-;31624:4;31662:2;31651:9;31647:18;31639:26;;31675:71;31743:1;31732:9;31728:17;31719:6;31675:71;:::i;:::-;31531:222;;;;:::o;31759:129::-;31793:6;31820:20;;:::i;:::-;31810:30;;31849:33;31877:4;31869:6;31849:33;:::i;:::-;31759:129;;;:::o;31894:75::-;31927:6;31960:2;31954:9;31944:19;;31894:75;:::o;31975:307::-;32036:4;32126:18;32118:6;32115:30;32112:56;;;32148:18;;:::i;:::-;32112:56;32186:29;32208:6;32186:29;:::i;:::-;32178:37;;32270:4;32264;32260:15;32252:23;;31975:307;;;:::o;32288:98::-;32339:6;32373:5;32367:12;32357:22;;32288:98;;;:::o;32392:99::-;32444:6;32478:5;32472:12;32462:22;;32392:99;;;:::o;32497:168::-;32580:11;32614:6;32609:3;32602:19;32654:4;32649:3;32645:14;32630:29;;32497:168;;;;:::o;32671:169::-;32755:11;32789:6;32784:3;32777:19;32829:4;32824:3;32820:14;32805:29;;32671:169;;;;:::o;32846:148::-;32948:11;32985:3;32970:18;;32846:148;;;;:::o;33000:273::-;33040:3;33059:20;33077:1;33059:20;:::i;:::-;33054:25;;33093:20;33111:1;33093:20;:::i;:::-;33088:25;;33215:1;33179:34;33175:42;33172:1;33169:49;33166:75;;;33221:18;;:::i;:::-;33166:75;33265:1;33262;33258:9;33251:16;;33000:273;;;;:::o;33279:305::-;33319:3;33338:20;33356:1;33338:20;:::i;:::-;33333:25;;33372:20;33390:1;33372:20;:::i;:::-;33367:25;;33526:1;33458:66;33454:74;33451:1;33448:81;33445:107;;;33532:18;;:::i;:::-;33445:107;33576:1;33573;33569:9;33562:16;;33279:305;;;;:::o;33590:185::-;33630:1;33647:20;33665:1;33647:20;:::i;:::-;33642:25;;33681:20;33699:1;33681:20;:::i;:::-;33676:25;;33720:1;33710:35;;33725:18;;:::i;:::-;33710:35;33767:1;33764;33760:9;33755:14;;33590:185;;;;:::o;33781:348::-;33821:7;33844:20;33862:1;33844:20;:::i;:::-;33839:25;;33878:20;33896:1;33878:20;:::i;:::-;33873:25;;34066:1;33998:66;33994:74;33991:1;33988:81;33983:1;33976:9;33969:17;33965:105;33962:131;;;34073:18;;:::i;:::-;33962:131;34121:1;34118;34114:9;34103:20;;33781:348;;;;:::o;34135:191::-;34175:4;34195:20;34213:1;34195:20;:::i;:::-;34190:25;;34229:20;34247:1;34229:20;:::i;:::-;34224:25;;34268:1;34265;34262:8;34259:34;;;34273:18;;:::i;:::-;34259:34;34318:1;34315;34311:9;34303:17;;34135:191;;;;:::o;34332:::-;34372:4;34392:20;34410:1;34392:20;:::i;:::-;34387:25;;34426:20;34444:1;34426:20;:::i;:::-;34421:25;;34465:1;34462;34459:8;34456:34;;;34470:18;;:::i;:::-;34456:34;34515:1;34512;34508:9;34500:17;;34332:191;;;;:::o;34529:96::-;34566:7;34595:24;34613:5;34595:24;:::i;:::-;34584:35;;34529:96;;;:::o;34631:90::-;34665:7;34708:5;34701:13;34694:21;34683:32;;34631:90;;;:::o;34727:149::-;34763:7;34803:66;34796:5;34792:78;34781:89;;34727:149;;;:::o;34882:118::-;34919:7;34959:34;34952:5;34948:46;34937:57;;34882:118;;;:::o;35006:126::-;35043:7;35083:42;35076:5;35072:54;35061:65;;35006:126;;;:::o;35138:77::-;35175:7;35204:5;35193:16;;35138:77;;;:::o;35221:154::-;35305:6;35300:3;35295;35282:30;35367:1;35358:6;35353:3;35349:16;35342:27;35221:154;;;:::o;35381:307::-;35449:1;35459:113;35473:6;35470:1;35467:13;35459:113;;;35558:1;35553:3;35549:11;35543:18;35539:1;35534:3;35530:11;35523:39;35495:2;35492:1;35488:10;35483:15;;35459:113;;;35590:6;35587:1;35584:13;35581:101;;;35670:1;35661:6;35656:3;35652:16;35645:27;35581:101;35430:258;35381:307;;;:::o;35694:171::-;35733:3;35756:24;35774:5;35756:24;:::i;:::-;35747:33;;35802:4;35795:5;35792:15;35789:41;;;35810:18;;:::i;:::-;35789:41;35857:1;35850:5;35846:13;35839:20;;35694:171;;;:::o;35871:320::-;35915:6;35952:1;35946:4;35942:12;35932:22;;35999:1;35993:4;35989:12;36020:18;36010:81;;36076:4;36068:6;36064:17;36054:27;;36010:81;36138:2;36130:6;36127:14;36107:18;36104:38;36101:84;;;36157:18;;:::i;:::-;36101:84;35922:269;35871:320;;;:::o;36197:281::-;36280:27;36302:4;36280:27;:::i;:::-;36272:6;36268:40;36410:6;36398:10;36395:22;36374:18;36362:10;36359:34;36356:62;36353:88;;;36421:18;;:::i;:::-;36353:88;36461:10;36457:2;36450:22;36240:238;36197:281;;:::o;36484:233::-;36523:3;36546:24;36564:5;36546:24;:::i;:::-;36537:33;;36592:66;36585:5;36582:77;36579:103;;;36662:18;;:::i;:::-;36579:103;36709:1;36702:5;36698:13;36691:20;;36484:233;;;:::o;36723:176::-;36755:1;36772:20;36790:1;36772:20;:::i;:::-;36767:25;;36806:20;36824:1;36806:20;:::i;:::-;36801:25;;36845:1;36835:35;;36850:18;;:::i;:::-;36835:35;36891:1;36888;36884:9;36879:14;;36723:176;;;;:::o;36905:180::-;36953:77;36950:1;36943:88;37050:4;37047:1;37040:15;37074:4;37071:1;37064:15;37091:180;37139:77;37136:1;37129:88;37236:4;37233:1;37226:15;37260:4;37257:1;37250:15;37277:180;37325:77;37322:1;37315:88;37422:4;37419:1;37412:15;37446:4;37443:1;37436:15;37463:180;37511:77;37508:1;37501:88;37608:4;37605:1;37598:15;37632:4;37629:1;37622:15;37649:180;37697:77;37694:1;37687:88;37794:4;37791:1;37784:15;37818:4;37815:1;37808:15;37835:117;37944:1;37941;37934:12;37958:117;38067:1;38064;38057:12;38081:117;38190:1;38187;38180:12;38204:117;38313:1;38310;38303:12;38327:117;38436:1;38433;38426:12;38450:117;38559:1;38556;38549:12;38573:102;38614:6;38665:2;38661:7;38656:2;38649:5;38645:14;38641:28;38631:38;;38573:102;;;:::o;38681:221::-;38821:34;38817:1;38809:6;38805:14;38798:58;38890:4;38885:2;38877:6;38873:15;38866:29;38681:221;:::o;38908:181::-;39048:33;39044:1;39036:6;39032:14;39025:57;38908:181;:::o;39095:225::-;39235:34;39231:1;39223:6;39219:14;39212:58;39304:8;39299:2;39291:6;39287:15;39280:33;39095:225;:::o;39326:229::-;39466:34;39462:1;39454:6;39450:14;39443:58;39535:12;39530:2;39522:6;39518:15;39511:37;39326:229;:::o;39561:222::-;39701:34;39697:1;39689:6;39685:14;39678:58;39770:5;39765:2;39757:6;39753:15;39746:30;39561:222;:::o;39789:224::-;39929:34;39925:1;39917:6;39913:14;39906:58;39998:7;39993:2;39985:6;39981:15;39974:32;39789:224;:::o;40019:236::-;40159:34;40155:1;40147:6;40143:14;40136:58;40228:19;40223:2;40215:6;40211:15;40204:44;40019:236;:::o;40261:244::-;40401:34;40397:1;40389:6;40385:14;40378:58;40470:27;40465:2;40457:6;40453:15;40446:52;40261:244;:::o;40511:230::-;40651:34;40647:1;40639:6;40635:14;40628:58;40720:13;40715:2;40707:6;40703:15;40696:38;40511:230;:::o;40747:225::-;40887:34;40883:1;40875:6;40871:14;40864:58;40956:8;40951:2;40943:6;40939:15;40932:33;40747:225;:::o;40978:170::-;41118:22;41114:1;41106:6;41102:14;41095:46;40978:170;:::o;41154:182::-;41294:34;41290:1;41282:6;41278:14;41271:58;41154:182;:::o;41342:::-;41482:34;41478:1;41470:6;41466:14;41459:58;41342:182;:::o;41530:234::-;41670:34;41666:1;41658:6;41654:14;41647:58;41739:17;41734:2;41726:6;41722:15;41715:42;41530:234;:::o;41770:176::-;41910:28;41906:1;41898:6;41894:14;41887:52;41770:176;:::o;41952:237::-;42092:34;42088:1;42080:6;42076:14;42069:58;42161:20;42156:2;42148:6;42144:15;42137:45;41952:237;:::o;42195:176::-;42335:28;42331:1;42323:6;42319:14;42312:52;42195:176;:::o;42377:221::-;42517:34;42513:1;42505:6;42501:14;42494:58;42586:4;42581:2;42573:6;42569:15;42562:29;42377:221;:::o;42604:238::-;42744:34;42740:1;42732:6;42728:14;42721:58;42813:21;42808:2;42800:6;42796:15;42789:46;42604:238;:::o;42848:179::-;42988:31;42984:1;42976:6;42972:14;42965:55;42848:179;:::o;43033:220::-;43173:34;43169:1;43161:6;43157:14;43150:58;43242:3;43237:2;43229:6;43225:15;43218:28;43033:220;:::o;43259:233::-;43399:34;43395:1;43387:6;43383:14;43376:58;43468:16;43463:2;43455:6;43451:15;43444:41;43259:233;:::o;43498:234::-;43638:34;43634:1;43626:6;43622:14;43615:58;43707:17;43702:2;43694:6;43690:15;43683:42;43498:234;:::o;43738:232::-;43878:34;43874:1;43866:6;43862:14;43855:58;43947:15;43942:2;43934:6;43930:15;43923:40;43738:232;:::o;43976:221::-;44116:34;44112:1;44104:6;44100:14;44093:58;44185:4;44180:2;44172:6;44168:15;44161:29;43976:221;:::o;44203:122::-;44276:24;44294:5;44276:24;:::i;:::-;44269:5;44266:35;44256:63;;44315:1;44312;44305:12;44256:63;44203:122;:::o;44331:116::-;44401:21;44416:5;44401:21;:::i;:::-;44394:5;44391:32;44381:60;;44437:1;44434;44427:12;44381:60;44331:116;:::o;44453:120::-;44525:23;44542:5;44525:23;:::i;:::-;44518:5;44515:34;44505:62;;44563:1;44560;44553:12;44505:62;44453:120;:::o;44579:122::-;44652:24;44670:5;44652:24;:::i;:::-;44645:5;44642:35;44632:63;;44691:1;44688;44681:12;44632:63;44579:122;:::o
Swarm Source
ipfs://2760fb3d06fc2a5c3e59313ca025c19208f659b4f46fa5a0f10909da1999bfd0
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.