ETH Price: $2,979.81 (+1.66%)
Gas: 2 Gwei

OG (Original Garage) Social Club NFT (OGC)
 

Overview

TokenID

1068

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OriginalGarageSocialClub

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : OGC.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Address.sol";


contract OriginalGarageSocialClub is Ownable, ERC721Enumerable, ERC721Burnable {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIds;
    Counters.Counter private _classIds;
    string private _tokenBaseURI = "";

    bool public isPaused = true;
    uint256 public maxPerMint = 5;

    // Payment addresses + Payments basis points (percentage using 2 decimals - 10000 = 100, 0 = 0)
    address private paymentAddress1 = 0x8dA102738bcaa9d5C490B1989B68C42EfE84011e;
    uint256 private paymentBasisPoints1 = 5000;
    address private paymentAddress2 = 0x12aA16964A1F6E89b77b05B81653F3Bf7042E7Ab;
    uint256 private paymentBasisPoints2 = 4500;
    address private paymentAddress3 = 0xB9302Eff098a224DC4b50cc50a4191e9F8d41D63;
    uint256 private paymentBasisPoints3 = 250;
    address private paymentAddress4 = 0x089553a12C7275269Cbd6A3743507C6EFDCb669B;
    uint256 private paymentBasisPoints4 = 250;
    
    // Royalties address
    address private royaltyAddress = 0x6FD81E439d8f9Cc85B36F579F1950b59aEb40437;

    // Royalties basis points (percentage using 2 decimals - 10000 = 100, 0 = 0)
    uint256 private royaltyBasisPoints = 1000; // 10%

    struct ClassInfo {
        uint256 priceType; // 0 == fixed (uses startPrice), 1 == dutch (uses startPrice and endPrice)
        uint256 maxSupply;
        uint256 startTime;
        uint256 endTime;
        uint256 startPrice;
        uint256 endPrice;
    }

    mapping(uint256 => ClassInfo) public classInfos;
    mapping(uint256 => uint256) public tokenClasses; // tokenId => classId
    mapping(uint256 => uint256) public tokenMintOrdering; // tokenId => mint order within class
    mapping(uint256 => uint256) public amountMinted; // classId => amount minted

    constructor(string memory _initialBaseURI) ERC721("OG (Original Garage) Social Club NFT", "OGC") {
      _tokenBaseURI = _initialBaseURI;
    }

    function getPrice(uint256 _classId) public view returns (uint256) {
      ClassInfo memory classInfo = classInfos[_classId];

      uint256 mintPrice = classInfo.startPrice; // fixed price
      if (classInfo.priceType == 1) { // dutch price
        
        if (block.timestamp >= classInfo.endTime) {
          return classInfo.endPrice;
        }

        if (block.timestamp <= classInfo.startTime) {
          return classInfo.startPrice;
        }

        if (classInfo.startPrice > classInfo.endPrice) { // dutch price goes down over time
          mintPrice = classInfo.endPrice + ((classInfo.startPrice - classInfo.endPrice) * (classInfo.endTime - block.timestamp) / (classInfo.endTime - classInfo.startTime));
        } else { // dutch price goes up over time
          mintPrice = classInfo.startPrice + ((classInfo.endPrice - classInfo.startPrice) * (block.timestamp - classInfo.startTime) / (classInfo.endTime - classInfo.startTime));
        }
      }

      return mintPrice;
    }

    function mint(uint256 _classId, uint256 _amount, address _to) public payable {
        require(!isPaused, 'mint: Minting is paused.');
        require(_classId < _classIds.current(), 'mint: ClassId is invalid.');
        ClassInfo memory classInfo = classInfos[_classId];
        uint256 amountMintedForClass = amountMinted[_classId];
        require(block.timestamp >= classInfo.startTime, "mint: Mint for this class hasn't started yet");
        require(block.timestamp <= classInfo.endTime, "mint: Mint for this class has ended");
        require(amountMintedForClass + _amount <= classInfo.maxSupply, "mint: Not enough supply remaining of this class");
        require(_amount <= maxPerMint, "mint: Amount more than max per mint");

        uint256 mintPrice = getPrice(_classId);

        uint256 costToMint = mintPrice * _amount;

        require(costToMint <= msg.value, "mint: ETH amount sent is not correct");

        for (uint256 i = 0; i < _amount; i++) {
            uint256 tokenId = _tokenIds.current();
            tokenClasses[tokenId] = _classId;
            tokenMintOrdering[tokenId] = amountMintedForClass + 1;
            _mint(_to, tokenId);
            amountMinted[_classId] = amountMintedForClass + 1;
            _tokenIds.increment();
        }

        uint256 payment1 = costToMint * paymentBasisPoints1 / 10000;
        uint256 payment2 = costToMint * paymentBasisPoints2 / 10000;
        uint256 payment3 = costToMint * paymentBasisPoints3 / 10000;
        uint256 payment4 = costToMint - payment1 - payment2 - payment3;

        Address.sendValue(payable(paymentAddress1), payment1);
        Address.sendValue(payable(paymentAddress2), payment2);
        Address.sendValue(payable(paymentAddress3), payment3);
        Address.sendValue(payable(paymentAddress4), payment4);

        uint256 remainder = msg.value - payment1 - payment2 - payment3 - payment4;

        // Return unused value
        if (msg.value > costToMint) {
            Address.sendValue(payable(msg.sender), remainder);
        }
    }

    function ownerMint(uint256 _classId, uint256 _amount, address _to) external onlyOwner {
        require(_classId < _classIds.current(), 'mint: ClassId is invalid.');
        ClassInfo memory classInfo = classInfos[_classId];
        uint256 amountMintedForClass = amountMinted[_classId];
        require(amountMintedForClass + _amount <= classInfo.maxSupply, "mint: Not enough supply remaining of this class");

        for (uint256 i = 0; i < _amount; i++) {
            uint256 tokenId = _tokenIds.current();
            tokenClasses[tokenId] = _classId;
            tokenMintOrdering[tokenId] = amountMintedForClass + 1;
            _mint(_to, tokenId);
            amountMinted[_classId] = amountMintedForClass + 1;
            _tokenIds.increment();
        }
    }

    function addClass(uint256 _priceType, uint256 _maxSupply, uint256 _startPrice,
      uint256 _endPrice, uint256 _startTime, uint256 _endTime) external onlyOwner {
        uint256 classId = _classIds.current();
        classInfos[classId].priceType = _priceType;
        classInfos[classId].maxSupply = _maxSupply;
        classInfos[classId].startPrice = _startPrice;
        classInfos[classId].endPrice = _endPrice;
        classInfos[classId].startTime = _startTime;
        classInfos[classId].endTime = _endTime;
        _classIds.increment();
    }

    function updateClass(uint256 _classId, uint256 _priceType, uint256 _maxSupply, uint256 _startPrice,
      uint256 _endPrice, uint256 _startTime, uint256 _endTime) external onlyOwner {
        uint256 nextClassId = _classIds.current();
        require(_classId < nextClassId, 'mint: Class ID does not exist.');
        require(_classId >= 0, 'mint: Class ID must be positive.');
        classInfos[_classId].priceType = _priceType;
        classInfos[_classId].maxSupply = _maxSupply;
        classInfos[_classId].startPrice = _startPrice;
        classInfos[_classId].endPrice = _endPrice;
        classInfos[_classId].startTime = _startTime;
        classInfos[_classId].endTime = _endTime;
    }

    function getTokenClassId(uint256 _tokenId) external view returns (uint256) {
      return tokenClasses[_tokenId];
    }

    function getTokenOrderingInClass(uint256 _tokenId) external view returns (uint256) {
      return tokenMintOrdering[_tokenId];
    }

    function getAmountMinted(uint256 _classId) external view returns (uint256) {
      return amountMinted[_classId];
    }

    function getClassInfo(uint256 _classId) external view returns (ClassInfo memory) {
      return classInfos[_classId];
    }

    // Support royalty info - See {EIP-2981}: https://eips.ethereum.org/EIPS/eip-2981
    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        return (
            royaltyAddress,
            (_salePrice.mul(royaltyBasisPoints)).div(10000)
        );
    }

    function setBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function _baseURI() internal view override returns (string memory) {
        return _tokenBaseURI;
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(_baseURI(), uint2str(tokenId)));
    }

    // Contract metadata URI - Support for OpenSea: https://docs.opensea.io/docs/contract-level-metadata
    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(_baseURI(), "contract"));
    }

    function setPaymentAddress(uint256 _index, address _address) public onlyOwner {
      require(_index == 1 || _index == 2 || _index == 3 || _index == 4, "setPaymentAddress: Invalid index");

      if (_index == 1) {
          paymentAddress1 = _address;
      } else if (_index == 2) {
          paymentAddress2 = _address;
      } else if (_index == 3)  {
          paymentAddress3 = _address;
      } else if (_index == 4)  {
          paymentAddress4 = _address;
      }
    }

    function setPaymentBasisPoints(uint256 _index, uint256 _basisPoints) public onlyOwner {
        require(_index == 1 || _index == 2 || _index == 3 || _index == 4, "setPaymentBasisPoints: Invalid index");
        require(_basisPoints >= 0 && _basisPoints <= 10000, "setPaymentBasisPoints: Invalid basis points");

        if (_index == 1) {
            paymentBasisPoints1 = _basisPoints;
        } else if (_index == 2) {
            paymentBasisPoints2 = _basisPoints;
        } else if (_index == 3) {
            paymentBasisPoints3 = _basisPoints;
        } else if (_index == 4) {
            paymentBasisPoints4 = _basisPoints;
        }
    }

    function setRoyaltyAddress(address _address) public onlyOwner {
        royaltyAddress = _address;
    }

    function setRoyaltyBasisPoints(uint256 _royaltyBasisPoints) public onlyOwner {
        royaltyBasisPoints = _royaltyBasisPoints;
    }

    function setMaxPerMint(uint256 _maxPerMint) public onlyOwner {
        maxPerMint = _maxPerMint;
    }

    function turnPauseOn() external onlyOwner {
        isPaused = true;
    }

    function turnPauseOff() external onlyOwner {
        isPaused = false;
    }

    function burn(uint256 _tokenId) public override {
        super.burn(_tokenId);
        uint256 classId = tokenClasses[_tokenId];
        amountMinted[classId] = amountMinted[classId] - 1;
        if (amountMinted[classId] < 0) {
          amountMinted[classId] = 0;
        }
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 16 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 3 of 16 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../utils/Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 4 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 16 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 9 of 16 : IERC721Enumerable.sol
// 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);
}

File 10 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 11 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 16 : IERC721Metadata.sol
// 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);
}

File 13 of 16 : Context.sol
// 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;
    }
}

File 14 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 15 of 16 : ERC165.sol
// 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;
    }
}

File 16 of 16 : IERC165.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"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":"_priceType","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_startPrice","type":"uint256"},{"internalType":"uint256","name":"_endPrice","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"addClass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"classInfos","outputs":[{"internalType":"uint256","name":"priceType","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"startPrice","type":"uint256"},{"internalType":"uint256","name":"endPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_classId","type":"uint256"}],"name":"getAmountMinted","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":"uint256","name":"_classId","type":"uint256"}],"name":"getClassInfo","outputs":[{"components":[{"internalType":"uint256","name":"priceType","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"startPrice","type":"uint256"},{"internalType":"uint256","name":"endPrice","type":"uint256"}],"internalType":"struct OriginalGarageSocialClub.ClassInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_classId","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenClassId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTokenOrderingInClass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_classId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_classId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"},{"internalType":"uint256","name":"_basisPoints","type":"uint256"}],"name":"setPaymentBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyBasisPoints","type":"uint256"}],"name":"setRoyaltyBasisPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenClasses","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMintOrdering","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":"turnPauseOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"turnPauseOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_classId","type":"uint256"},{"internalType":"uint256","name":"_priceType","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_startPrice","type":"uint256"},{"internalType":"uint256","name":"_endPrice","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"updateClass","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600d90805190602001906200002b929190620003d4565b506001600e60006101000a81548160ff0219169083151502179055506005600f55738da102738bcaa9d5c490b1989b68c42efe84011e601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113886011557312aa16964a1f6e89b77b05b81653f3bf7042e7ab601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061119460135573b9302eff098a224dc4b50cc50a4191e9f8d41d63601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060fa60155573089553a12c7275269cbd6a3743507c6efdcb669b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060fa601755736fd81e439d8f9cc85b36f579f1950b59aeb40437601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e86019553480156200021e57600080fd5b50604051620065a3380380620065a38339818101604052810190620002449190620004f6565b6040518060600160405280602481526020016200657f602491396040518060400160405280600381526020017f4f47430000000000000000000000000000000000000000000000000000000000815250620002b4620002a86200030860201b60201c565b6200031060201b60201c565b8160019080519060200190620002cc929190620003d4565b508060029080519060200190620002e5929190620003d4565b50505080600d908051906020019062000300929190620003d4565b5050620006ab565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003e290620005d0565b90600052602060002090601f01602090048101928262000406576000855562000452565b82601f106200042157805160ff191683800117855562000452565b8280016001018555821562000452579182015b828111156200045157825182559160200191906001019062000434565b5b50905062000461919062000465565b5090565b5b808211156200048057600081600090555060010162000466565b5090565b60006200049b620004958462000564565b6200053b565b905082815260208101848484011115620004b457600080fd5b620004c18482856200059a565b509392505050565b600082601f830112620004db57600080fd5b8151620004ed84826020860162000484565b91505092915050565b6000602082840312156200050957600080fd5b600082015167ffffffffffffffff8111156200052457600080fd5b6200053284828501620004c9565b91505092915050565b6000620005476200055a565b905062000555828262000606565b919050565b6000604051905090565b600067ffffffffffffffff8211156200058257620005816200066b565b5b6200058d826200069a565b9050602081019050919050565b60005b83811015620005ba5780820151818401526020810190506200059d565b83811115620005ca576000848401525b50505050565b60006002820490506001821680620005e957607f821691505b602082108114156200060057620005ff6200063c565b5b50919050565b62000611826200069a565b810181811067ffffffffffffffff821117156200063357620006326200066b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615ec480620006bb6000396000f3fe6080604052600436106102725760003560e01c8063540bfb721161014f578063b6b81940116100c1578063e75722301161007a578063e7572230146109e4578063e7d3fe6b14610a21578063e8a3d48514610a3d578063e985e9c514610a68578063f24c540714610aa5578063f2fde38b14610abc57610272565b8063b6b81940146108b2578063b88d4fde146108db578063c87b56dd14610904578063cb90069414610941578063db6242c31461097e578063e0782c49146109a757610272565b80638da5cb5b116101135780638da5cb5b1461078e578063926df1b2146107b957806395d89b41146107f6578063a22cb46514610821578063a6695c751461084a578063b187bd261461088757610272565b8063540bfb721461069757806355f804b3146106d45780636352211e146106fd57806370a082311461073a578063715018a61461077757610272565b806325034638116101e857806342966c68116101ac57806342966c681461058b57806342d527c8146105b457806345691079146105dd5780634d588a91146106065780634f6ccce71461062f578063507e094f1461066c57610272565b806325034638146104a75780632a55205a146104be5780632b7b958c146104fc5780632f745c591461052557806342842e0e1461056257610272565b8063095ea7b31161023a578063095ea7b31461036e5780630ed12e3e146103975780630fafc2be146103d457806318160ddd146104115780631e2e60ba1461043c57806323b872dd1461047e57610272565b806301ffc9a71461027757806306d254da146102b457806306fdde03146102dd578063081812fc14610308578063090d18b314610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906142dc565b610ae5565b6040516102ab9190614c71565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190614135565b610af7565b005b3480156102e957600080fd5b506102f2610bb7565b6040516102ff9190614c8c565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a919061436f565b610c49565b60405161033c9190614be1565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190614398565b610cce565b005b34801561037a57600080fd5b50610395600480360381019061039091906142a0565b610eed565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061436f565b611005565b6040516103cb91906150c9565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061436f565b61101d565b60405161040891906150c9565b60405180910390f35b34801561041d57600080fd5b5061042661103a565b60405161043391906150c9565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e919061436f565b611047565b604051610475969594939291906150e4565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061419a565b611083565b005b3480156104b357600080fd5b506104bc6110e3565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906143d4565b61117c565b6040516104f3929190614c48565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906144e8565b6111d6565b005b34801561053157600080fd5b5061054c600480360381019061054791906142a0565b611392565b60405161055991906150c9565b60405180910390f35b34801561056e57600080fd5b506105896004803603810190610584919061419a565b611437565b005b34801561059757600080fd5b506105b260048036038101906105ad919061436f565b611457565b005b3480156105c057600080fd5b506105db60048036038101906105d6919061445f565b6114e9565b005b3480156105e957600080fd5b5061060460048036038101906105ff91906143d4565b611628565b005b34801561061257600080fd5b5061062d60048036038101906106289190614410565b6117b1565b005b34801561063b57600080fd5b506106566004803603810190610651919061436f565b6119e9565b60405161066391906150c9565b60405180910390f35b34801561067857600080fd5b50610681611a80565b60405161068e91906150c9565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b9919061436f565b611a86565b6040516106cb91906150ae565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f6919061432e565b611aef565b005b34801561070957600080fd5b50610724600480360381019061071f919061436f565b611b85565b6040516107319190614be1565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190614135565b611c37565b60405161076e91906150c9565b60405180910390f35b34801561078357600080fd5b5061078c611cef565b005b34801561079a57600080fd5b506107a3611d77565b6040516107b09190614be1565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061436f565b611da0565b6040516107ed91906150c9565b60405180910390f35b34801561080257600080fd5b5061080b611db8565b6040516108189190614c8c565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190614264565b611e4a565b005b34801561085657600080fd5b50610871600480360381019061086c919061436f565b611e60565b60405161087e91906150c9565b60405180910390f35b34801561089357600080fd5b5061089c611e78565b6040516108a99190614c71565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d4919061436f565b611e8b565b005b3480156108e757600080fd5b5061090260048036038101906108fd91906141e9565b611f11565b005b34801561091057600080fd5b5061092b6004803603810190610926919061436f565b611f73565b6040516109389190614c8c565b60405180910390f35b34801561094d57600080fd5b506109686004803603810190610963919061436f565b611fad565b60405161097591906150c9565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a0919061436f565b611fca565b005b3480156109b357600080fd5b506109ce60048036038101906109c9919061436f565b612050565b6040516109db91906150c9565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a06919061436f565b61206d565b604051610a1891906150c9565b60405180910390f35b610a3b6004803603810190610a369190614410565b6121f0565b005b348015610a4957600080fd5b50610a526126ad565b604051610a5f9190614c8c565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a919061415e565b6126db565b604051610a9c9190614c71565b60405180910390f35b348015610ab157600080fd5b50610aba61276f565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614135565b612808565b005b6000610af082612900565b9050919050565b610aff61297a565b73ffffffffffffffffffffffffffffffffffffffff16610b1d611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90614fae565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054610bc690615429565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290615429565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c5482612982565b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90614f8e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cd661297a565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190614fae565b60405180910390fd5b6001821480610d595750600282145b80610d645750600382145b80610d6f5750600482145b610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614d4e565b60405180910390fd5b6001821415610dfd5780601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ee9565b6002821415610e4c5780601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ee8565b6003821415610e9b5780601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ee7565b6004821415610ee65780601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5b5050565b6000610ef882611b85565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090614fce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f8861297a565b73ffffffffffffffffffffffffffffffffffffffff161480610fb75750610fb681610fb161297a565b6126db565b5b610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90614ece565b60405180910390fd5b61100083836129ee565b505050565b601b6020528060005260406000206000915090505481565b6000601d6000838152602001908152602001600020549050919050565b6000600980549050905090565b601a6020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154905086565b61109461108e61297a565b82612aa7565b6110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614fee565b60405180910390fd5b6110de838383612b85565b505050565b6110eb61297a565b73ffffffffffffffffffffffffffffffffffffffff16611109611d77565b73ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690614fae565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b600080601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111cb6127106111bd60195487612dec90919063ffffffff16565b612e0290919063ffffffff16565b915091509250929050565b6111de61297a565b73ffffffffffffffffffffffffffffffffffffffff166111fc611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990614fae565b60405180910390fd5b600061125e600c612e18565b90508088106112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614e0e565b60405180910390fd5b60008810156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061502e565b60405180910390fd5b86601a60008a81526020019081526020016000206000018190555085601a60008a81526020019081526020016000206001018190555084601a60008a81526020019081526020016000206004018190555083601a60008a81526020019081526020016000206005018190555082601a60008a81526020019081526020016000206002018190555081601a60008a8152602001908152602001600020600301819055505050505050505050565b600061139d83611c37565b82106113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590614cae565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61145283838360405180602001604052806000815250611f11565b505050565b61146081612e26565b6000601b60008381526020019081526020016000205490506001601d6000838152602001908152602001600020546114989190615332565b601d6000838152602001908152602001600020819055506000601d60008381526020019081526020016000205410156114e5576000601d6000838152602001908152602001600020819055505b5050565b6114f161297a565b73ffffffffffffffffffffffffffffffffffffffff1661150f611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614fae565b60405180910390fd5b6000611571600c612e18565b905086601a60008381526020019081526020016000206000018190555085601a60008381526020019081526020016000206001018190555084601a60008381526020019081526020016000206004018190555083601a60008381526020019081526020016000206005018190555082601a60008381526020019081526020016000206002018190555081601a60008381526020019081526020016000206003018190555061161f600c612e82565b50505050505050565b61163061297a565b73ffffffffffffffffffffffffffffffffffffffff1661164e611d77565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90614fae565b60405180910390fd5b60018214806116b35750600282145b806116be5750600382145b806116c95750600482145b611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff90614e4e565b60405180910390fd5b6000811015801561171b57506127108111155b61175a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117519061504e565b60405180910390fd5b600182141561176f57806011819055506117ad565b600282141561178457806013819055506117ac565b600382141561179957806015819055506117ab565b60048214156117aa57806017819055505b5b5b5b5050565b6117b961297a565b73ffffffffffffffffffffffffffffffffffffffff166117d7611d77565b73ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490614fae565b60405180910390fd5b611837600c612e18565b8310611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614d6e565b60405180910390fd5b6000601a60008581526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000601d6000868152602001908152602001600020549050816020015184826118ff919061521a565b1115611940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119379061508e565b60405180910390fd5b60005b848110156119e1576000611957600b612e18565b905086601b60008381526020019081526020016000208190555060018361197e919061521a565b601c60008381526020019081526020016000208190555061199f8582612e98565b6001836119ac919061521a565b601d6000898152602001908152602001600020819055506119cd600b612e82565b5080806119d99061548c565b915050611943565b505050505050565b60006119f361103a565b8210611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b9061500e565b60405180910390fd5b60098281548110611a6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600f5481565b611a8e613f23565b601a60008381526020019081526020016000206040518060c001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815250509050919050565b611af761297a565b73ffffffffffffffffffffffffffffffffffffffff16611b15611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290614fae565b60405180910390fd5b80600d9080519060200190611b81929190613f59565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590614f2e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90614f0e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cf761297a565b73ffffffffffffffffffffffffffffffffffffffff16611d15611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290614fae565b60405180910390fd5b611d756000613072565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601d6020528060005260406000206000915090505481565b606060028054611dc790615429565b80601f0160208091040260200160405190810160405280929190818152602001828054611df390615429565b8015611e405780601f10611e1557610100808354040283529160200191611e40565b820191906000526020600020905b815481529060010190602001808311611e2357829003601f168201915b5050505050905090565b611e5c611e5561297a565b8383613136565b5050565b601c6020528060005260406000206000915090505481565b600e60009054906101000a900460ff1681565b611e9361297a565b73ffffffffffffffffffffffffffffffffffffffff16611eb1611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614fae565b60405180910390fd5b8060198190555050565b611f22611f1c61297a565b83612aa7565b611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614fee565b60405180910390fd5b611f6d848484846132a3565b50505050565b6060611f7d6132ff565b611f8683613391565b604051602001611f97929190614b86565b6040516020818303038152906040529050919050565b6000601b6000838152602001908152602001600020549050919050565b611fd261297a565b73ffffffffffffffffffffffffffffffffffffffff16611ff0611d77565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90614fae565b60405180910390fd5b80600f8190555050565b6000601c6000838152602001908152602001600020549050919050565b600080601a60008481526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000816080015190506001826000015114156121e557816060015142106120fb578160a00151925050506121eb565b81604001514211612114578160800151925050506121eb565b8160a001518260800151111561218657816040015182606001516121389190615332565b4283606001516121489190615332565b8360a00151846080015161215c9190615332565b61216691906152d8565b61217091906152a7565b8260a0015161217f919061521a565b90506121e4565b8160400151826060015161219a9190615332565b8260400151426121aa9190615332565b83608001518460a001516121be9190615332565b6121c891906152d8565b6121d291906152a7565b82608001516121e1919061521a565b90505b5b80925050505b919050565b600e60009054906101000a900460ff1615612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790614eae565b60405180910390fd5b61224a600c612e18565b831061228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614d6e565b60405180910390fd5b6000601a60008581526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000601d60008681526020019081526020016000205490508160400151421015612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614e8e565b60405180910390fd5b816060015142111561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614f4e565b60405180910390fd5b816020015184826123a0919061521a565b11156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d89061508e565b60405180910390fd5b600f54841115612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d90614eee565b60405180910390fd5b60006124318661206d565b90506000858261244191906152d8565b905034811115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d90614dce565b60405180910390fd5b60005b8681101561252757600061249d600b612e18565b905088601b6000838152602001908152602001600020819055506001856124c4919061521a565b601c6000838152602001908152602001600020819055506124e58782612e98565b6001856124f2919061521a565b601d60008b815260200190815260200160002081905550612513600b612e82565b50808061251f9061548c565b915050612489565b5060006127106011548361253b91906152d8565b61254591906152a7565b905060006127106013548461255a91906152d8565b61256491906152a7565b905060006127106015548561257991906152d8565b61258391906152a7565b90506000818385876125959190615332565b61259f9190615332565b6125a99190615332565b90506125d7601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685613566565b612603601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613566565b61262f601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613566565b61265b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613566565b6000818385873461266c9190615332565b6126769190615332565b6126809190615332565b61268a9190615332565b90508534111561269f5761269e3382613566565b5b505050505050505050505050565b60606126b76132ff565b6040516020016126c79190614baa565b604051602081830303815290604052905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61277761297a565b73ffffffffffffffffffffffffffffffffffffffff16612795611d77565b73ffffffffffffffffffffffffffffffffffffffff16146127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e290614fae565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b61281061297a565b73ffffffffffffffffffffffffffffffffffffffff1661282e611d77565b73ffffffffffffffffffffffffffffffffffffffff1614612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287b90614fae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb90614cee565b60405180910390fd5b6128fd81613072565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061297357506129728261365a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a6183611b85565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab282612982565b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae890614e6e565b60405180910390fd5b6000612afc83611b85565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6b57508373ffffffffffffffffffffffffffffffffffffffff16612b5384610c49565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7c5750612b7b81856126db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba582611b85565b73ffffffffffffffffffffffffffffffffffffffff1614612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf290614d0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6290614d8e565b60405180910390fd5b612c7683838361373c565b612c816000826129ee565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd19190615332565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d28919061521a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612de783838361374c565b505050565b60008183612dfa91906152d8565b905092915050565b60008183612e1091906152a7565b905092915050565b600081600001549050919050565b612e37612e3161297a565b82612aa7565b612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d9061506e565b60405180910390fd5b612e7f81613751565b50565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90614f6e565b60405180910390fd5b612f1181612982565b15612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4890614d2e565b60405180910390fd5b612f5d6000838361373c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fad919061521a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461306e6000838361374c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90614dae565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132969190614c71565b60405180910390a3505050565b6132ae848484612b85565b6132ba8484848461386e565b6132f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f090614cce565b60405180910390fd5b50505050565b6060600d805461330e90615429565b80601f016020809104026020016040519081016040528092919081815260200182805461333a90615429565b80156133875780601f1061335c57610100808354040283529160200191613387565b820191906000526020600020905b81548152906001019060200180831161336a57829003601f168201915b5050505050905090565b606060008214156133d9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613561565b600082905060005b6000821461340b5780806133f49061548c565b915050600a8261340491906152a7565b91506133e1565b60008167ffffffffffffffff81111561344d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561347f5781602001600182028036833780820191505090505b50905060008290505b600086146135595760018161349d9190615332565b90506000600a80886134af91906152a7565b6134b991906152d8565b876134c49190615332565b60306134d09190615270565b905060008160f81b905080848481518110613514577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861355091906152a7565b97505050613488565b819450505050505b919050565b804710156135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a090614e2e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516135cf90614bcc565b60006040518083038185875af1925050503d806000811461360c576040519150601f19603f3d011682016040523d82523d6000602084013e613611565b606091505b5050905080613655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364c90614dee565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061372557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613735575061373482613a05565b5b9050919050565b613747838383613a6f565b505050565b505050565b600061375c82611b85565b905061376a8160008461373c565b6137756000836129ee565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137c59190615332565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461386a8160008461374c565b5050565b600061388f8473ffffffffffffffffffffffffffffffffffffffff16613b83565b156139f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138b861297a565b8786866040518563ffffffff1660e01b81526004016138da9493929190614bfc565b602060405180830381600087803b1580156138f457600080fd5b505af192505050801561392557506040513d601f19601f820116820180604052508101906139229190614305565b60015b6139a8573d8060008114613955576040519150601f19603f3d011682016040523d82523d6000602084013e61395a565b606091505b506000815114156139a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399790614cce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139fd565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a7a838383613ba6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613abd57613ab881613bab565b613afc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613afb57613afa8382613bf4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b3f57613b3a81613d61565b613b7e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b7d57613b7c8282613ea4565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c0184611c37565b613c0b9190615332565b9050600060086000848152602001908152602001600020549050818114613cf0576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613d759190615332565b90506000600a6000848152602001908152602001600020549050600060098381548110613dcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613e13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613e88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613eaf83611c37565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b828054613f6590615429565b90600052602060002090601f016020900481019282613f875760008555613fce565b82601f10613fa057805160ff1916838001178555613fce565b82800160010185558215613fce579182015b82811115613fcd578251825591602001919060010190613fb2565b5b509050613fdb9190613fdf565b5090565b5b80821115613ff8576000816000905550600101613fe0565b5090565b600061400f61400a8461516a565b615145565b90508281526020810184848401111561402757600080fd5b6140328482856153e7565b509392505050565b600061404d6140488461519b565b615145565b90508281526020810184848401111561406557600080fd5b6140708482856153e7565b509392505050565b60008135905061408781615e32565b92915050565b60008135905061409c81615e49565b92915050565b6000813590506140b181615e60565b92915050565b6000815190506140c681615e60565b92915050565b600082601f8301126140dd57600080fd5b81356140ed848260208601613ffc565b91505092915050565b600082601f83011261410757600080fd5b813561411784826020860161403a565b91505092915050565b60008135905061412f81615e77565b92915050565b60006020828403121561414757600080fd5b600061415584828501614078565b91505092915050565b6000806040838503121561417157600080fd5b600061417f85828601614078565b925050602061419085828601614078565b9150509250929050565b6000806000606084860312156141af57600080fd5b60006141bd86828701614078565b93505060206141ce86828701614078565b92505060406141df86828701614120565b9150509250925092565b600080600080608085870312156141ff57600080fd5b600061420d87828801614078565b945050602061421e87828801614078565b935050604061422f87828801614120565b925050606085013567ffffffffffffffff81111561424c57600080fd5b614258878288016140cc565b91505092959194509250565b6000806040838503121561427757600080fd5b600061428585828601614078565b92505060206142968582860161408d565b9150509250929050565b600080604083850312156142b357600080fd5b60006142c185828601614078565b92505060206142d285828601614120565b9150509250929050565b6000602082840312156142ee57600080fd5b60006142fc848285016140a2565b91505092915050565b60006020828403121561431757600080fd5b6000614325848285016140b7565b91505092915050565b60006020828403121561434057600080fd5b600082013567ffffffffffffffff81111561435a57600080fd5b614366848285016140f6565b91505092915050565b60006020828403121561438157600080fd5b600061438f84828501614120565b91505092915050565b600080604083850312156143ab57600080fd5b60006143b985828601614120565b92505060206143ca85828601614078565b9150509250929050565b600080604083850312156143e757600080fd5b60006143f585828601614120565b925050602061440685828601614120565b9150509250929050565b60008060006060848603121561442557600080fd5b600061443386828701614120565b935050602061444486828701614120565b925050604061445586828701614078565b9150509250925092565b60008060008060008060c0878903121561447857600080fd5b600061448689828a01614120565b965050602061449789828a01614120565b95505060406144a889828a01614120565b94505060606144b989828a01614120565b93505060806144ca89828a01614120565b92505060a06144db89828a01614120565b9150509295509295509295565b600080600080600080600060e0888a03121561450357600080fd5b60006145118a828b01614120565b97505060206145228a828b01614120565b96505060406145338a828b01614120565b95505060606145448a828b01614120565b94505060806145558a828b01614120565b93505060a06145668a828b01614120565b92505060c06145778a828b01614120565b91505092959891949750929550565b61458f81615366565b82525050565b61459e81615378565b82525050565b60006145af826151cc565b6145b981856151e2565b93506145c98185602086016153f6565b6145d281615591565b840191505092915050565b60006145e8826151d7565b6145f281856151fe565b93506146028185602086016153f6565b61460b81615591565b840191505092915050565b6000614621826151d7565b61462b818561520f565b935061463b8185602086016153f6565b80840191505092915050565b6000614654602b836151fe565b915061465f826155a2565b604082019050919050565b60006146776032836151fe565b9150614682826155f1565b604082019050919050565b600061469a6026836151fe565b91506146a582615640565b604082019050919050565b60006146bd6025836151fe565b91506146c88261568f565b604082019050919050565b60006146e0601c836151fe565b91506146eb826156de565b602082019050919050565b60006147036020836151fe565b915061470e82615707565b602082019050919050565b60006147266019836151fe565b915061473182615730565b602082019050919050565b60006147496024836151fe565b915061475482615759565b604082019050919050565b600061476c6019836151fe565b9150614777826157a8565b602082019050919050565b600061478f6024836151fe565b915061479a826157d1565b604082019050919050565b60006147b2603a836151fe565b91506147bd82615820565b604082019050919050565b60006147d5601e836151fe565b91506147e08261586f565b602082019050919050565b60006147f8601d836151fe565b915061480382615898565b602082019050919050565b600061481b6024836151fe565b9150614826826158c1565b604082019050919050565b600061483e602c836151fe565b915061484982615910565b604082019050919050565b6000614861602c836151fe565b915061486c8261595f565b604082019050919050565b60006148846018836151fe565b915061488f826159ae565b602082019050919050565b60006148a76038836151fe565b91506148b2826159d7565b604082019050919050565b60006148ca6023836151fe565b91506148d582615a26565b604082019050919050565b60006148ed602a836151fe565b91506148f882615a75565b604082019050919050565b60006149106029836151fe565b915061491b82615ac4565b604082019050919050565b60006149336023836151fe565b915061493e82615b13565b604082019050919050565b600061495660088361520f565b915061496182615b62565b600882019050919050565b60006149796020836151fe565b915061498482615b8b565b602082019050919050565b600061499c602c836151fe565b91506149a782615bb4565b604082019050919050565b60006149bf6020836151fe565b91506149ca82615c03565b602082019050919050565b60006149e26021836151fe565b91506149ed82615c2c565b604082019050919050565b6000614a056000836151f3565b9150614a1082615c7b565b600082019050919050565b6000614a286031836151fe565b9150614a3382615c7e565b604082019050919050565b6000614a4b602c836151fe565b9150614a5682615ccd565b604082019050919050565b6000614a6e6020836151fe565b9150614a7982615d1c565b602082019050919050565b6000614a91602b836151fe565b9150614a9c82615d45565b604082019050919050565b6000614ab46030836151fe565b9150614abf82615d94565b604082019050919050565b6000614ad7602f836151fe565b9150614ae282615de3565b604082019050919050565b60c082016000820151614b036000850182614b68565b506020820151614b166020850182614b68565b506040820151614b296040850182614b68565b506060820151614b3c6060850182614b68565b506080820151614b4f6080850182614b68565b5060a0820151614b6260a0850182614b68565b50505050565b614b71816153d0565b82525050565b614b80816153d0565b82525050565b6000614b928285614616565b9150614b9e8284614616565b91508190509392505050565b6000614bb68284614616565b9150614bc182614949565b915081905092915050565b6000614bd7826149f8565b9150819050919050565b6000602082019050614bf66000830184614586565b92915050565b6000608082019050614c116000830187614586565b614c1e6020830186614586565b614c2b6040830185614b77565b8181036060830152614c3d81846145a4565b905095945050505050565b6000604082019050614c5d6000830185614586565b614c6a6020830184614b77565b9392505050565b6000602082019050614c866000830184614595565b92915050565b60006020820190508181036000830152614ca681846145dd565b905092915050565b60006020820190508181036000830152614cc781614647565b9050919050565b60006020820190508181036000830152614ce78161466a565b9050919050565b60006020820190508181036000830152614d078161468d565b9050919050565b60006020820190508181036000830152614d27816146b0565b9050919050565b60006020820190508181036000830152614d47816146d3565b9050919050565b60006020820190508181036000830152614d67816146f6565b9050919050565b60006020820190508181036000830152614d8781614719565b9050919050565b60006020820190508181036000830152614da78161473c565b9050919050565b60006020820190508181036000830152614dc78161475f565b9050919050565b60006020820190508181036000830152614de781614782565b9050919050565b60006020820190508181036000830152614e07816147a5565b9050919050565b60006020820190508181036000830152614e27816147c8565b9050919050565b60006020820190508181036000830152614e47816147eb565b9050919050565b60006020820190508181036000830152614e678161480e565b9050919050565b60006020820190508181036000830152614e8781614831565b9050919050565b60006020820190508181036000830152614ea781614854565b9050919050565b60006020820190508181036000830152614ec781614877565b9050919050565b60006020820190508181036000830152614ee78161489a565b9050919050565b60006020820190508181036000830152614f07816148bd565b9050919050565b60006020820190508181036000830152614f27816148e0565b9050919050565b60006020820190508181036000830152614f4781614903565b9050919050565b60006020820190508181036000830152614f6781614926565b9050919050565b60006020820190508181036000830152614f878161496c565b9050919050565b60006020820190508181036000830152614fa78161498f565b9050919050565b60006020820190508181036000830152614fc7816149b2565b9050919050565b60006020820190508181036000830152614fe7816149d5565b9050919050565b6000602082019050818103600083015261500781614a1b565b9050919050565b6000602082019050818103600083015261502781614a3e565b9050919050565b6000602082019050818103600083015261504781614a61565b9050919050565b6000602082019050818103600083015261506781614a84565b9050919050565b6000602082019050818103600083015261508781614aa7565b9050919050565b600060208201905081810360008301526150a781614aca565b9050919050565b600060c0820190506150c36000830184614aed565b92915050565b60006020820190506150de6000830184614b77565b92915050565b600060c0820190506150f96000830189614b77565b6151066020830188614b77565b6151136040830187614b77565b6151206060830186614b77565b61512d6080830185614b77565b61513a60a0830184614b77565b979650505050505050565b600061514f615160565b905061515b828261545b565b919050565b6000604051905090565b600067ffffffffffffffff82111561518557615184615562565b5b61518e82615591565b9050602081019050919050565b600067ffffffffffffffff8211156151b6576151b5615562565b5b6151bf82615591565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615225826153d0565b9150615230836153d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615265576152646154d5565b5b828201905092915050565b600061527b826153da565b9150615286836153da565b92508260ff0382111561529c5761529b6154d5565b5b828201905092915050565b60006152b2826153d0565b91506152bd836153d0565b9250826152cd576152cc615504565b5b828204905092915050565b60006152e3826153d0565b91506152ee836153d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615327576153266154d5565b5b828202905092915050565b600061533d826153d0565b9150615348836153d0565b92508282101561535b5761535a6154d5565b5b828203905092915050565b6000615371826153b0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156154145780820151818401526020810190506153f9565b83811115615423576000848401525b50505050565b6000600282049050600182168061544157607f821691505b6020821081141561545557615454615533565b5b50919050565b61546482615591565b810181811067ffffffffffffffff8211171561548357615482615562565b5b80604052505050565b6000615497826153d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154ca576154c96154d5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7365745061796d656e74416464726573733a20496e76616c696420696e646578600082015250565b7f6d696e743a20436c617373496420697320696e76616c69642e00000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e743a2045544820616d6f756e742073656e74206973206e6f7420636f7260008201527f7265637400000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f6d696e743a20436c61737320494420646f6573206e6f742065786973742e0000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f7365745061796d656e744261736973506f696e74733a20496e76616c6964206960008201527f6e64657800000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d696e743a204d696e7420666f72207468697320636c617373206861736e277460008201527f2073746172746564207965740000000000000000000000000000000000000000602082015250565b7f6d696e743a204d696e74696e67206973207061757365642e0000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f6d696e743a20416d6f756e74206d6f7265207468616e206d617820706572206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d696e743a204d696e7420666f72207468697320636c6173732068617320656e60008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6d696e743a20436c617373204944206d75737420626520706f7369746976652e600082015250565b7f7365745061796d656e744261736973506f696e74733a20496e76616c6964206260008201527f6173697320706f696e7473000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f6d696e743a204e6f7420656e6f75676820737570706c792072656d61696e696e60008201527f67206f66207468697320636c6173730000000000000000000000000000000000602082015250565b615e3b81615366565b8114615e4657600080fd5b50565b615e5281615378565b8114615e5d57600080fd5b50565b615e6981615384565b8114615e7457600080fd5b50565b615e80816153d0565b8114615e8b57600080fd5b5056fea2646970667358221220b73a31800e2789b40fa68119832e9c6d99eadf8b8d99a50729ddb44c955fb62064736f6c634300080100334f4720284f726967696e616c204761726167652920536f6369616c20436c7562204e46540000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6170692e6f726967696e616c6761726167652e636f6d2f76312f6d657461646174612f000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063540bfb721161014f578063b6b81940116100c1578063e75722301161007a578063e7572230146109e4578063e7d3fe6b14610a21578063e8a3d48514610a3d578063e985e9c514610a68578063f24c540714610aa5578063f2fde38b14610abc57610272565b8063b6b81940146108b2578063b88d4fde146108db578063c87b56dd14610904578063cb90069414610941578063db6242c31461097e578063e0782c49146109a757610272565b80638da5cb5b116101135780638da5cb5b1461078e578063926df1b2146107b957806395d89b41146107f6578063a22cb46514610821578063a6695c751461084a578063b187bd261461088757610272565b8063540bfb721461069757806355f804b3146106d45780636352211e146106fd57806370a082311461073a578063715018a61461077757610272565b806325034638116101e857806342966c68116101ac57806342966c681461058b57806342d527c8146105b457806345691079146105dd5780634d588a91146106065780634f6ccce71461062f578063507e094f1461066c57610272565b806325034638146104a75780632a55205a146104be5780632b7b958c146104fc5780632f745c591461052557806342842e0e1461056257610272565b8063095ea7b31161023a578063095ea7b31461036e5780630ed12e3e146103975780630fafc2be146103d457806318160ddd146104115780631e2e60ba1461043c57806323b872dd1461047e57610272565b806301ffc9a71461027757806306d254da146102b457806306fdde03146102dd578063081812fc14610308578063090d18b314610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906142dc565b610ae5565b6040516102ab9190614c71565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190614135565b610af7565b005b3480156102e957600080fd5b506102f2610bb7565b6040516102ff9190614c8c565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a919061436f565b610c49565b60405161033c9190614be1565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190614398565b610cce565b005b34801561037a57600080fd5b50610395600480360381019061039091906142a0565b610eed565b005b3480156103a357600080fd5b506103be60048036038101906103b9919061436f565b611005565b6040516103cb91906150c9565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f6919061436f565b61101d565b60405161040891906150c9565b60405180910390f35b34801561041d57600080fd5b5061042661103a565b60405161043391906150c9565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e919061436f565b611047565b604051610475969594939291906150e4565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061419a565b611083565b005b3480156104b357600080fd5b506104bc6110e3565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906143d4565b61117c565b6040516104f3929190614c48565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e91906144e8565b6111d6565b005b34801561053157600080fd5b5061054c600480360381019061054791906142a0565b611392565b60405161055991906150c9565b60405180910390f35b34801561056e57600080fd5b506105896004803603810190610584919061419a565b611437565b005b34801561059757600080fd5b506105b260048036038101906105ad919061436f565b611457565b005b3480156105c057600080fd5b506105db60048036038101906105d6919061445f565b6114e9565b005b3480156105e957600080fd5b5061060460048036038101906105ff91906143d4565b611628565b005b34801561061257600080fd5b5061062d60048036038101906106289190614410565b6117b1565b005b34801561063b57600080fd5b506106566004803603810190610651919061436f565b6119e9565b60405161066391906150c9565b60405180910390f35b34801561067857600080fd5b50610681611a80565b60405161068e91906150c9565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b9919061436f565b611a86565b6040516106cb91906150ae565b60405180910390f35b3480156106e057600080fd5b506106fb60048036038101906106f6919061432e565b611aef565b005b34801561070957600080fd5b50610724600480360381019061071f919061436f565b611b85565b6040516107319190614be1565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190614135565b611c37565b60405161076e91906150c9565b60405180910390f35b34801561078357600080fd5b5061078c611cef565b005b34801561079a57600080fd5b506107a3611d77565b6040516107b09190614be1565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061436f565b611da0565b6040516107ed91906150c9565b60405180910390f35b34801561080257600080fd5b5061080b611db8565b6040516108189190614c8c565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190614264565b611e4a565b005b34801561085657600080fd5b50610871600480360381019061086c919061436f565b611e60565b60405161087e91906150c9565b60405180910390f35b34801561089357600080fd5b5061089c611e78565b6040516108a99190614c71565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d4919061436f565b611e8b565b005b3480156108e757600080fd5b5061090260048036038101906108fd91906141e9565b611f11565b005b34801561091057600080fd5b5061092b6004803603810190610926919061436f565b611f73565b6040516109389190614c8c565b60405180910390f35b34801561094d57600080fd5b506109686004803603810190610963919061436f565b611fad565b60405161097591906150c9565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a0919061436f565b611fca565b005b3480156109b357600080fd5b506109ce60048036038101906109c9919061436f565b612050565b6040516109db91906150c9565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a06919061436f565b61206d565b604051610a1891906150c9565b60405180910390f35b610a3b6004803603810190610a369190614410565b6121f0565b005b348015610a4957600080fd5b50610a526126ad565b604051610a5f9190614c8c565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a919061415e565b6126db565b604051610a9c9190614c71565b60405180910390f35b348015610ab157600080fd5b50610aba61276f565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614135565b612808565b005b6000610af082612900565b9050919050565b610aff61297a565b73ffffffffffffffffffffffffffffffffffffffff16610b1d611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90614fae565b60405180910390fd5b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054610bc690615429565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf290615429565b8015610c3f5780601f10610c1457610100808354040283529160200191610c3f565b820191906000526020600020905b815481529060010190602001808311610c2257829003601f168201915b5050505050905090565b6000610c5482612982565b610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90614f8e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cd661297a565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611d77565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190614fae565b60405180910390fd5b6001821480610d595750600282145b80610d645750600382145b80610d6f5750600482145b610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590614d4e565b60405180910390fd5b6001821415610dfd5780601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ee9565b6002821415610e4c5780601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ee8565b6003821415610e9b5780601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ee7565b6004821415610ee65780601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b5b5b5050565b6000610ef882611b85565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6090614fce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f8861297a565b73ffffffffffffffffffffffffffffffffffffffff161480610fb75750610fb681610fb161297a565b6126db565b5b610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90614ece565b60405180910390fd5b61100083836129ee565b505050565b601b6020528060005260406000206000915090505481565b6000601d6000838152602001908152602001600020549050919050565b6000600980549050905090565b601a6020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154905086565b61109461108e61297a565b82612aa7565b6110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90614fee565b60405180910390fd5b6110de838383612b85565b505050565b6110eb61297a565b73ffffffffffffffffffffffffffffffffffffffff16611109611d77565b73ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690614fae565b60405180910390fd5b6001600e60006101000a81548160ff021916908315150217905550565b600080601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111cb6127106111bd60195487612dec90919063ffffffff16565b612e0290919063ffffffff16565b915091509250929050565b6111de61297a565b73ffffffffffffffffffffffffffffffffffffffff166111fc611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990614fae565b60405180910390fd5b600061125e600c612e18565b90508088106112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990614e0e565b60405180910390fd5b60008810156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061502e565b60405180910390fd5b86601a60008a81526020019081526020016000206000018190555085601a60008a81526020019081526020016000206001018190555084601a60008a81526020019081526020016000206004018190555083601a60008a81526020019081526020016000206005018190555082601a60008a81526020019081526020016000206002018190555081601a60008a8152602001908152602001600020600301819055505050505050505050565b600061139d83611c37565b82106113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590614cae565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61145283838360405180602001604052806000815250611f11565b505050565b61146081612e26565b6000601b60008381526020019081526020016000205490506001601d6000838152602001908152602001600020546114989190615332565b601d6000838152602001908152602001600020819055506000601d60008381526020019081526020016000205410156114e5576000601d6000838152602001908152602001600020819055505b5050565b6114f161297a565b73ffffffffffffffffffffffffffffffffffffffff1661150f611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90614fae565b60405180910390fd5b6000611571600c612e18565b905086601a60008381526020019081526020016000206000018190555085601a60008381526020019081526020016000206001018190555084601a60008381526020019081526020016000206004018190555083601a60008381526020019081526020016000206005018190555082601a60008381526020019081526020016000206002018190555081601a60008381526020019081526020016000206003018190555061161f600c612e82565b50505050505050565b61163061297a565b73ffffffffffffffffffffffffffffffffffffffff1661164e611d77565b73ffffffffffffffffffffffffffffffffffffffff16146116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90614fae565b60405180910390fd5b60018214806116b35750600282145b806116be5750600382145b806116c95750600482145b611708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ff90614e4e565b60405180910390fd5b6000811015801561171b57506127108111155b61175a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117519061504e565b60405180910390fd5b600182141561176f57806011819055506117ad565b600282141561178457806013819055506117ac565b600382141561179957806015819055506117ab565b60048214156117aa57806017819055505b5b5b5b5050565b6117b961297a565b73ffffffffffffffffffffffffffffffffffffffff166117d7611d77565b73ffffffffffffffffffffffffffffffffffffffff161461182d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182490614fae565b60405180910390fd5b611837600c612e18565b8310611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614d6e565b60405180910390fd5b6000601a60008581526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000601d6000868152602001908152602001600020549050816020015184826118ff919061521a565b1115611940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119379061508e565b60405180910390fd5b60005b848110156119e1576000611957600b612e18565b905086601b60008381526020019081526020016000208190555060018361197e919061521a565b601c60008381526020019081526020016000208190555061199f8582612e98565b6001836119ac919061521a565b601d6000898152602001908152602001600020819055506119cd600b612e82565b5080806119d99061548c565b915050611943565b505050505050565b60006119f361103a565b8210611a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2b9061500e565b60405180910390fd5b60098281548110611a6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600f5481565b611a8e613f23565b601a60008381526020019081526020016000206040518060c001604052908160008201548152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815250509050919050565b611af761297a565b73ffffffffffffffffffffffffffffffffffffffff16611b15611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290614fae565b60405180910390fd5b80600d9080519060200190611b81929190613f59565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2590614f2e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9f90614f0e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cf761297a565b73ffffffffffffffffffffffffffffffffffffffff16611d15611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290614fae565b60405180910390fd5b611d756000613072565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601d6020528060005260406000206000915090505481565b606060028054611dc790615429565b80601f0160208091040260200160405190810160405280929190818152602001828054611df390615429565b8015611e405780601f10611e1557610100808354040283529160200191611e40565b820191906000526020600020905b815481529060010190602001808311611e2357829003601f168201915b5050505050905090565b611e5c611e5561297a565b8383613136565b5050565b601c6020528060005260406000206000915090505481565b600e60009054906101000a900460ff1681565b611e9361297a565b73ffffffffffffffffffffffffffffffffffffffff16611eb1611d77565b73ffffffffffffffffffffffffffffffffffffffff1614611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90614fae565b60405180910390fd5b8060198190555050565b611f22611f1c61297a565b83612aa7565b611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614fee565b60405180910390fd5b611f6d848484846132a3565b50505050565b6060611f7d6132ff565b611f8683613391565b604051602001611f97929190614b86565b6040516020818303038152906040529050919050565b6000601b6000838152602001908152602001600020549050919050565b611fd261297a565b73ffffffffffffffffffffffffffffffffffffffff16611ff0611d77565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90614fae565b60405180910390fd5b80600f8190555050565b6000601c6000838152602001908152602001600020549050919050565b600080601a60008481526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000816080015190506001826000015114156121e557816060015142106120fb578160a00151925050506121eb565b81604001514211612114578160800151925050506121eb565b8160a001518260800151111561218657816040015182606001516121389190615332565b4283606001516121489190615332565b8360a00151846080015161215c9190615332565b61216691906152d8565b61217091906152a7565b8260a0015161217f919061521a565b90506121e4565b8160400151826060015161219a9190615332565b8260400151426121aa9190615332565b83608001518460a001516121be9190615332565b6121c891906152d8565b6121d291906152a7565b82608001516121e1919061521a565b90505b5b80925050505b919050565b600e60009054906101000a900460ff1615612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790614eae565b60405180910390fd5b61224a600c612e18565b831061228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290614d6e565b60405180910390fd5b6000601a60008581526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090506000601d60008681526020019081526020016000205490508160400151421015612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233f90614e8e565b60405180910390fd5b816060015142111561238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238690614f4e565b60405180910390fd5b816020015184826123a0919061521a565b11156123e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d89061508e565b60405180910390fd5b600f54841115612426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241d90614eee565b60405180910390fd5b60006124318661206d565b90506000858261244191906152d8565b905034811115612486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247d90614dce565b60405180910390fd5b60005b8681101561252757600061249d600b612e18565b905088601b6000838152602001908152602001600020819055506001856124c4919061521a565b601c6000838152602001908152602001600020819055506124e58782612e98565b6001856124f2919061521a565b601d60008b815260200190815260200160002081905550612513600b612e82565b50808061251f9061548c565b915050612489565b5060006127106011548361253b91906152d8565b61254591906152a7565b905060006127106013548461255a91906152d8565b61256491906152a7565b905060006127106015548561257991906152d8565b61258391906152a7565b90506000818385876125959190615332565b61259f9190615332565b6125a99190615332565b90506125d7601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685613566565b612603601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613566565b61262f601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683613566565b61265b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613566565b6000818385873461266c9190615332565b6126769190615332565b6126809190615332565b61268a9190615332565b90508534111561269f5761269e3382613566565b5b505050505050505050505050565b60606126b76132ff565b6040516020016126c79190614baa565b604051602081830303815290604052905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61277761297a565b73ffffffffffffffffffffffffffffffffffffffff16612795611d77565b73ffffffffffffffffffffffffffffffffffffffff16146127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e290614fae565b60405180910390fd5b6000600e60006101000a81548160ff021916908315150217905550565b61281061297a565b73ffffffffffffffffffffffffffffffffffffffff1661282e611d77565b73ffffffffffffffffffffffffffffffffffffffff1614612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287b90614fae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128eb90614cee565b60405180910390fd5b6128fd81613072565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061297357506129728261365a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a6183611b85565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab282612982565b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae890614e6e565b60405180910390fd5b6000612afc83611b85565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6b57508373ffffffffffffffffffffffffffffffffffffffff16612b5384610c49565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7c5750612b7b81856126db565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba582611b85565b73ffffffffffffffffffffffffffffffffffffffff1614612bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf290614d0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6290614d8e565b60405180910390fd5b612c7683838361373c565b612c816000826129ee565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd19190615332565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d28919061521a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612de783838361374c565b505050565b60008183612dfa91906152d8565b905092915050565b60008183612e1091906152a7565b905092915050565b600081600001549050919050565b612e37612e3161297a565b82612aa7565b612e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6d9061506e565b60405180910390fd5b612e7f81613751565b50565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90614f6e565b60405180910390fd5b612f1181612982565b15612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4890614d2e565b60405180910390fd5b612f5d6000838361373c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fad919061521a565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461306e6000838361374c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90614dae565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132969190614c71565b60405180910390a3505050565b6132ae848484612b85565b6132ba8484848461386e565b6132f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f090614cce565b60405180910390fd5b50505050565b6060600d805461330e90615429565b80601f016020809104026020016040519081016040528092919081815260200182805461333a90615429565b80156133875780601f1061335c57610100808354040283529160200191613387565b820191906000526020600020905b81548152906001019060200180831161336a57829003601f168201915b5050505050905090565b606060008214156133d9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613561565b600082905060005b6000821461340b5780806133f49061548c565b915050600a8261340491906152a7565b91506133e1565b60008167ffffffffffffffff81111561344d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561347f5781602001600182028036833780820191505090505b50905060008290505b600086146135595760018161349d9190615332565b90506000600a80886134af91906152a7565b6134b991906152d8565b876134c49190615332565b60306134d09190615270565b905060008160f81b905080848481518110613514577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8861355091906152a7565b97505050613488565b819450505050505b919050565b804710156135a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a090614e2e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516135cf90614bcc565b60006040518083038185875af1925050503d806000811461360c576040519150601f19603f3d011682016040523d82523d6000602084013e613611565b606091505b5050905080613655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364c90614dee565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061372557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613735575061373482613a05565b5b9050919050565b613747838383613a6f565b505050565b505050565b600061375c82611b85565b905061376a8160008461373c565b6137756000836129ee565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137c59190615332565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461386a8160008461374c565b5050565b600061388f8473ffffffffffffffffffffffffffffffffffffffff16613b83565b156139f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138b861297a565b8786866040518563ffffffff1660e01b81526004016138da9493929190614bfc565b602060405180830381600087803b1580156138f457600080fd5b505af192505050801561392557506040513d601f19601f820116820180604052508101906139229190614305565b60015b6139a8573d8060008114613955576040519150601f19603f3d011682016040523d82523d6000602084013e61395a565b606091505b506000815114156139a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399790614cce565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139fd565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a7a838383613ba6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613abd57613ab881613bab565b613afc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613afb57613afa8382613bf4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b3f57613b3a81613d61565b613b7e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b7d57613b7c8282613ea4565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c0184611c37565b613c0b9190615332565b9050600060086000848152602001908152602001600020549050818114613cf0576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613d759190615332565b90506000600a6000848152602001908152602001600020549050600060098381548110613dcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613e13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613e88577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613eaf83611c37565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b828054613f6590615429565b90600052602060002090601f016020900481019282613f875760008555613fce565b82601f10613fa057805160ff1916838001178555613fce565b82800160010185558215613fce579182015b82811115613fcd578251825591602001919060010190613fb2565b5b509050613fdb9190613fdf565b5090565b5b80821115613ff8576000816000905550600101613fe0565b5090565b600061400f61400a8461516a565b615145565b90508281526020810184848401111561402757600080fd5b6140328482856153e7565b509392505050565b600061404d6140488461519b565b615145565b90508281526020810184848401111561406557600080fd5b6140708482856153e7565b509392505050565b60008135905061408781615e32565b92915050565b60008135905061409c81615e49565b92915050565b6000813590506140b181615e60565b92915050565b6000815190506140c681615e60565b92915050565b600082601f8301126140dd57600080fd5b81356140ed848260208601613ffc565b91505092915050565b600082601f83011261410757600080fd5b813561411784826020860161403a565b91505092915050565b60008135905061412f81615e77565b92915050565b60006020828403121561414757600080fd5b600061415584828501614078565b91505092915050565b6000806040838503121561417157600080fd5b600061417f85828601614078565b925050602061419085828601614078565b9150509250929050565b6000806000606084860312156141af57600080fd5b60006141bd86828701614078565b93505060206141ce86828701614078565b92505060406141df86828701614120565b9150509250925092565b600080600080608085870312156141ff57600080fd5b600061420d87828801614078565b945050602061421e87828801614078565b935050604061422f87828801614120565b925050606085013567ffffffffffffffff81111561424c57600080fd5b614258878288016140cc565b91505092959194509250565b6000806040838503121561427757600080fd5b600061428585828601614078565b92505060206142968582860161408d565b9150509250929050565b600080604083850312156142b357600080fd5b60006142c185828601614078565b92505060206142d285828601614120565b9150509250929050565b6000602082840312156142ee57600080fd5b60006142fc848285016140a2565b91505092915050565b60006020828403121561431757600080fd5b6000614325848285016140b7565b91505092915050565b60006020828403121561434057600080fd5b600082013567ffffffffffffffff81111561435a57600080fd5b614366848285016140f6565b91505092915050565b60006020828403121561438157600080fd5b600061438f84828501614120565b91505092915050565b600080604083850312156143ab57600080fd5b60006143b985828601614120565b92505060206143ca85828601614078565b9150509250929050565b600080604083850312156143e757600080fd5b60006143f585828601614120565b925050602061440685828601614120565b9150509250929050565b60008060006060848603121561442557600080fd5b600061443386828701614120565b935050602061444486828701614120565b925050604061445586828701614078565b9150509250925092565b60008060008060008060c0878903121561447857600080fd5b600061448689828a01614120565b965050602061449789828a01614120565b95505060406144a889828a01614120565b94505060606144b989828a01614120565b93505060806144ca89828a01614120565b92505060a06144db89828a01614120565b9150509295509295509295565b600080600080600080600060e0888a03121561450357600080fd5b60006145118a828b01614120565b97505060206145228a828b01614120565b96505060406145338a828b01614120565b95505060606145448a828b01614120565b94505060806145558a828b01614120565b93505060a06145668a828b01614120565b92505060c06145778a828b01614120565b91505092959891949750929550565b61458f81615366565b82525050565b61459e81615378565b82525050565b60006145af826151cc565b6145b981856151e2565b93506145c98185602086016153f6565b6145d281615591565b840191505092915050565b60006145e8826151d7565b6145f281856151fe565b93506146028185602086016153f6565b61460b81615591565b840191505092915050565b6000614621826151d7565b61462b818561520f565b935061463b8185602086016153f6565b80840191505092915050565b6000614654602b836151fe565b915061465f826155a2565b604082019050919050565b60006146776032836151fe565b9150614682826155f1565b604082019050919050565b600061469a6026836151fe565b91506146a582615640565b604082019050919050565b60006146bd6025836151fe565b91506146c88261568f565b604082019050919050565b60006146e0601c836151fe565b91506146eb826156de565b602082019050919050565b60006147036020836151fe565b915061470e82615707565b602082019050919050565b60006147266019836151fe565b915061473182615730565b602082019050919050565b60006147496024836151fe565b915061475482615759565b604082019050919050565b600061476c6019836151fe565b9150614777826157a8565b602082019050919050565b600061478f6024836151fe565b915061479a826157d1565b604082019050919050565b60006147b2603a836151fe565b91506147bd82615820565b604082019050919050565b60006147d5601e836151fe565b91506147e08261586f565b602082019050919050565b60006147f8601d836151fe565b915061480382615898565b602082019050919050565b600061481b6024836151fe565b9150614826826158c1565b604082019050919050565b600061483e602c836151fe565b915061484982615910565b604082019050919050565b6000614861602c836151fe565b915061486c8261595f565b604082019050919050565b60006148846018836151fe565b915061488f826159ae565b602082019050919050565b60006148a76038836151fe565b91506148b2826159d7565b604082019050919050565b60006148ca6023836151fe565b91506148d582615a26565b604082019050919050565b60006148ed602a836151fe565b91506148f882615a75565b604082019050919050565b60006149106029836151fe565b915061491b82615ac4565b604082019050919050565b60006149336023836151fe565b915061493e82615b13565b604082019050919050565b600061495660088361520f565b915061496182615b62565b600882019050919050565b60006149796020836151fe565b915061498482615b8b565b602082019050919050565b600061499c602c836151fe565b91506149a782615bb4565b604082019050919050565b60006149bf6020836151fe565b91506149ca82615c03565b602082019050919050565b60006149e26021836151fe565b91506149ed82615c2c565b604082019050919050565b6000614a056000836151f3565b9150614a1082615c7b565b600082019050919050565b6000614a286031836151fe565b9150614a3382615c7e565b604082019050919050565b6000614a4b602c836151fe565b9150614a5682615ccd565b604082019050919050565b6000614a6e6020836151fe565b9150614a7982615d1c565b602082019050919050565b6000614a91602b836151fe565b9150614a9c82615d45565b604082019050919050565b6000614ab46030836151fe565b9150614abf82615d94565b604082019050919050565b6000614ad7602f836151fe565b9150614ae282615de3565b604082019050919050565b60c082016000820151614b036000850182614b68565b506020820151614b166020850182614b68565b506040820151614b296040850182614b68565b506060820151614b3c6060850182614b68565b506080820151614b4f6080850182614b68565b5060a0820151614b6260a0850182614b68565b50505050565b614b71816153d0565b82525050565b614b80816153d0565b82525050565b6000614b928285614616565b9150614b9e8284614616565b91508190509392505050565b6000614bb68284614616565b9150614bc182614949565b915081905092915050565b6000614bd7826149f8565b9150819050919050565b6000602082019050614bf66000830184614586565b92915050565b6000608082019050614c116000830187614586565b614c1e6020830186614586565b614c2b6040830185614b77565b8181036060830152614c3d81846145a4565b905095945050505050565b6000604082019050614c5d6000830185614586565b614c6a6020830184614b77565b9392505050565b6000602082019050614c866000830184614595565b92915050565b60006020820190508181036000830152614ca681846145dd565b905092915050565b60006020820190508181036000830152614cc781614647565b9050919050565b60006020820190508181036000830152614ce78161466a565b9050919050565b60006020820190508181036000830152614d078161468d565b9050919050565b60006020820190508181036000830152614d27816146b0565b9050919050565b60006020820190508181036000830152614d47816146d3565b9050919050565b60006020820190508181036000830152614d67816146f6565b9050919050565b60006020820190508181036000830152614d8781614719565b9050919050565b60006020820190508181036000830152614da78161473c565b9050919050565b60006020820190508181036000830152614dc78161475f565b9050919050565b60006020820190508181036000830152614de781614782565b9050919050565b60006020820190508181036000830152614e07816147a5565b9050919050565b60006020820190508181036000830152614e27816147c8565b9050919050565b60006020820190508181036000830152614e47816147eb565b9050919050565b60006020820190508181036000830152614e678161480e565b9050919050565b60006020820190508181036000830152614e8781614831565b9050919050565b60006020820190508181036000830152614ea781614854565b9050919050565b60006020820190508181036000830152614ec781614877565b9050919050565b60006020820190508181036000830152614ee78161489a565b9050919050565b60006020820190508181036000830152614f07816148bd565b9050919050565b60006020820190508181036000830152614f27816148e0565b9050919050565b60006020820190508181036000830152614f4781614903565b9050919050565b60006020820190508181036000830152614f6781614926565b9050919050565b60006020820190508181036000830152614f878161496c565b9050919050565b60006020820190508181036000830152614fa78161498f565b9050919050565b60006020820190508181036000830152614fc7816149b2565b9050919050565b60006020820190508181036000830152614fe7816149d5565b9050919050565b6000602082019050818103600083015261500781614a1b565b9050919050565b6000602082019050818103600083015261502781614a3e565b9050919050565b6000602082019050818103600083015261504781614a61565b9050919050565b6000602082019050818103600083015261506781614a84565b9050919050565b6000602082019050818103600083015261508781614aa7565b9050919050565b600060208201905081810360008301526150a781614aca565b9050919050565b600060c0820190506150c36000830184614aed565b92915050565b60006020820190506150de6000830184614b77565b92915050565b600060c0820190506150f96000830189614b77565b6151066020830188614b77565b6151136040830187614b77565b6151206060830186614b77565b61512d6080830185614b77565b61513a60a0830184614b77565b979650505050505050565b600061514f615160565b905061515b828261545b565b919050565b6000604051905090565b600067ffffffffffffffff82111561518557615184615562565b5b61518e82615591565b9050602081019050919050565b600067ffffffffffffffff8211156151b6576151b5615562565b5b6151bf82615591565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615225826153d0565b9150615230836153d0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615265576152646154d5565b5b828201905092915050565b600061527b826153da565b9150615286836153da565b92508260ff0382111561529c5761529b6154d5565b5b828201905092915050565b60006152b2826153d0565b91506152bd836153d0565b9250826152cd576152cc615504565b5b828204905092915050565b60006152e3826153d0565b91506152ee836153d0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615327576153266154d5565b5b828202905092915050565b600061533d826153d0565b9150615348836153d0565b92508282101561535b5761535a6154d5565b5b828203905092915050565b6000615371826153b0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156154145780820151818401526020810190506153f9565b83811115615423576000848401525b50505050565b6000600282049050600182168061544157607f821691505b6020821081141561545557615454615533565b5b50919050565b61546482615591565b810181811067ffffffffffffffff8211171561548357615482615562565b5b80604052505050565b6000615497826153d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154ca576154c96154d5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7365745061796d656e74416464726573733a20496e76616c696420696e646578600082015250565b7f6d696e743a20436c617373496420697320696e76616c69642e00000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d696e743a2045544820616d6f756e742073656e74206973206e6f7420636f7260008201527f7265637400000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f6d696e743a20436c61737320494420646f6573206e6f742065786973742e0000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f7365745061796d656e744261736973506f696e74733a20496e76616c6964206960008201527f6e64657800000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6d696e743a204d696e7420666f72207468697320636c617373206861736e277460008201527f2073746172746564207965740000000000000000000000000000000000000000602082015250565b7f6d696e743a204d696e74696e67206973207061757365642e0000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f6d696e743a20416d6f756e74206d6f7265207468616e206d617820706572206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d696e743a204d696e7420666f72207468697320636c6173732068617320656e60008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6d696e743a20436c617373204944206d75737420626520706f7369746976652e600082015250565b7f7365745061796d656e744261736973506f696e74733a20496e76616c6964206260008201527f6173697320706f696e7473000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f6d696e743a204e6f7420656e6f75676820737570706c792072656d61696e696e60008201527f67206f66207468697320636c6173730000000000000000000000000000000000602082015250565b615e3b81615366565b8114615e4657600080fd5b50565b615e5281615378565b8114615e5d57600080fd5b50565b615e6981615384565b8114615e7457600080fd5b50565b615e80816153d0565b8114615e8b57600080fd5b5056fea2646970667358221220b73a31800e2789b40fa68119832e9c6d99eadf8b8d99a50729ddb44c955fb62064736f6c63430008010033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6170692e6f726967696e616c6761726167652e636f6d2f76312f6d657461646174612f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://api.originalgarage.com/v1/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [2] : 68747470733a2f2f6170692e6f726967696e616c6761726167652e636f6d2f76
Arg [3] : 312f6d657461646174612f000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.