ETH Price: $3,523.56 (+1.05%)
Gas: 2 Gwei

Token

HunnyBunny (HB)
 

Overview

Max Total Supply

13 HB

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xc5b0c42bd53b908e532127441bcb736fb1715cfa
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:
HunnyBunnyNFT

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-24
*/

// File: node_modules\openzeppelin-solidity\contracts\GSN\Context.sol

pragma solidity ^0.5.12;

/*
 * @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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: openzeppelin-solidity\contracts\ownership\Ownable.sol

pragma solidity ^0.5.12;

/**
 * @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.
 *
 * 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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: node_modules\multi-token-standard\contracts\interfaces\IERC165.sol

pragma solidity ^0.5.12;


/**
 * @title ERC165
 * @dev https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
 */
interface IERC165 {

    /**
     * @notice Query if a contract implements an interface
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas
     * @param _interfaceId The interface identifier, as specified in ERC-165
     */
    function supportsInterface(bytes4 _interfaceId)
    external
    view
    returns (bool);
}

// File: node_modules\multi-token-standard\contracts\utils\SafeMath.sol

pragma solidity ^0.5.12;


/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {

  /**
   * @dev Multiplies two unsigned integers, reverts on overflow.
   */
  function mul(uint256 a, uint256 b) internal pure returns (uint256) {
    // 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-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath#mul: OVERFLOW");

    return c;
  }

  /**
   * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
   */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath#div: DIVISION_BY_ZERO");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b <= a, "SafeMath#sub: UNDERFLOW");
    uint256 c = a - b;

    return c;
  }

  /**
   * @dev Adds two unsigned integers, reverts on overflow.
   */
  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    require(c >= a, "SafeMath#add: OVERFLOW");

    return c; 
  }

  /**
   * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
   * reverts when dividing by zero.
   */
  function mod(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b != 0, "SafeMath#mod: DIVISION_BY_ZERO");
    return a % b;
  }

}

// File: node_modules\multi-token-standard\contracts\interfaces\IERC1155TokenReceiver.sol

pragma solidity ^0.5.12;

/**
 * @dev ERC-1155 interface for accepting safe transfers.
 */
interface IERC1155TokenReceiver {

  /**
   * @notice Handle the receipt of a single ERC1155 token type
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeTransferFrom` after the balance has been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value MUST result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _id        The id of the token being transferred
   * @param _amount    The amount of tokens being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   */
  function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _amount, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Handle the receipt of multiple ERC1155 token types
   * @dev An ERC1155-compliant smart contract MUST call this function on the token recipient contract, at the end of a `safeBatchTransferFrom` after the balances have been updated
   * This function MAY throw to revert and reject the transfer
   * Return of other amount than the magic value WILL result in the transaction being reverted
   * Note: The token contract address is always the message sender
   * @param _operator  The address which called the `safeBatchTransferFrom` function
   * @param _from      The address which previously owned the token
   * @param _ids       An array containing ids of each token being transferred
   * @param _amounts   An array containing amounts of each token being transferred
   * @param _data      Additional data with no specified format
   * @return           `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   */
  function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external returns(bytes4);

  /**
   * @notice Indicates whether a contract implements the `ERC1155TokenReceiver` functions and so can accept ERC1155 token types.
   * @param  interfaceID The ERC-165 interface ID that is queried for support.s
   * @dev This function MUST return true if it implements the ERC1155TokenReceiver interface and ERC-165 interface.
   *      This function MUST NOT consume more than 5,000 gas.
   * @return Wheter ERC-165 or ERC1155TokenReceiver interfaces are supported.
   */
  function supportsInterface(bytes4 interfaceID) external view returns (bool);

}

// File: node_modules\multi-token-standard\contracts\interfaces\IERC1155.sol

pragma solidity ^0.5.12;


interface IERC1155 {
  // Events

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of a token ID with no initial balance, the contract SHOULD emit the TransferSingle event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
   */
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);

  /**
   * @dev Either TransferSingle or TransferBatch MUST emit when tokens are transferred, including zero amount transfers as well as minting or burning
   *   Operator MUST be msg.sender
   *   When minting/creating tokens, the `_from` field MUST be set to `0x0`
   *   When burning/destroying tokens, the `_to` field MUST be set to `0x0`
   *   The total amount transferred from address 0x0 minus the total amount transferred to 0x0 may be used by clients and exchanges to be added to the "circulating supply" for a given token ID
   *   To broadcast the existence of multiple token IDs with no initial balance, this SHOULD emit the TransferBatch event from `0x0` to `0x0`, with the token creator as `_operator`, and a `_amount` of 0
   */
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);

  /**
   * @dev MUST emit when an approval is updated
   */
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);

  /**
   * @dev MUST emit when the URI is updated for a token ID
   *   URIs are defined in RFC 3986
   *   The URI MUST point a JSON file that conforms to the "ERC-1155 Metadata JSON Schema"
   */
  event URI(string _amount, uint256 indexed _id);

  /**
   * @notice Transfers amount of an _id from the _from address to the _to address specified
   * @dev MUST emit TransferSingle event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if balance of sender for token `_id` is lower than the `_amount` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155Received` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes calldata _data) external;

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @dev MUST emit TransferBatch event on success
   * Caller must be approved to manage the _from account's tokens (see isApprovedForAll)
   * MUST throw if `_to` is the zero address
   * MUST throw if length of `_ids` is not the same as length of `_amounts`
   * MUST throw if any of the balance of sender for token `_ids` is lower than the respective `_amounts` sent
   * MUST throw on any other error
   * When transfer is complete, this function MUST check if `_to` is a smart contract (code size > 0). If so, it MUST call `onERC1155BatchReceived` on `_to` and revert if the return amount is not `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
   * Transfers and events MUST occur in the array order they were submitted (_ids[0] before _ids[1], etc)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
  */
  function safeBatchTransferFrom(address _from, address _to, uint256[] calldata _ids, uint256[] calldata _amounts, bytes calldata _data) external;
  
  /**
   * @notice Get the balance of an account's Tokens
   * @param _owner  The address of the token holder
   * @param _id     ID of the Token
   * @return        The _owner's balance of the Token type requested
   */
  function balanceOf(address _owner, uint256 _id) external view returns (uint256);

  /**
   * @notice Get the balance of multiple account/token pairs
   * @param _owners The addresses of the token holders
   * @param _ids    ID of the Tokens
   * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
   */
  function balanceOfBatch(address[] calldata _owners, uint256[] calldata _ids) external view returns (uint256[] memory);

  /**
   * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
   * @dev MUST emit the ApprovalForAll event on success
   * @param _operator  Address to add to the set of authorized operators
   * @param _approved  True if the operator is approved, false to revoke approval
   */
  function setApprovalForAll(address _operator, bool _approved) external;

  /**
   * @notice Queries the approval status of an operator for a given owner
   * @param _owner     The owner of the Tokens
   * @param _operator  Address of authorized operator
   * @return           True if the operator is approved, false if not
   */
  function isApprovedForAll(address _owner, address _operator) external view returns (bool isOperator);

}

// File: node_modules\multi-token-standard\contracts\utils\Address.sol

/**
 * Copyright 2018 ZeroEx Intl.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *   http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

pragma solidity ^0.5.12;


/**
 * Utility library of inline functions on addresses
 */
library Address {

  /**
   * Returns whether the target address is a contract
   * @dev This function will return false if invoked during the constructor of a contract,
   * as the code is not actually created until after the constructor finishes.
   * @param account address of the account to check
   * @return whether the target address is a contract
   */
  function isContract(address account) internal view returns (bool) {
    bytes32 codehash;
    bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;

    // XXX Currently there is no better way to check if there is a contract in an address
    // than to check the size of the code at that address.
    // See https://ethereum.stackexchange.com/a/14016/36603
    // for more details about how this works.
    // TODO Check this again before the Serenity release, because all addresses will be
    // contracts then.
    assembly { codehash := extcodehash(account) }
    return (codehash != 0x0 && codehash != accountHash);
  }

}

// File: multi-token-standard\contracts\tokens\ERC1155\ERC1155.sol

pragma solidity ^0.5.12;







// File: multi-token-standard\contracts\tokens\ERC1155\ERC1155Metadata.sol

pragma solidity ^0.5.12;



/**
 * @notice Contract that handles metadata related methods.
 * @dev Methods assume a deterministic generation of URI based on token IDs.
 *      Methods also assume that URI uses hex representation of token IDs.
 */
contract ERC1155Metadata {

  // URI's default URI prefix
  string internal baseMetadataURI;
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Metadata Public Function s    |
  |__________________________________*/

  /**
   * @notice A distinct Uniform Resource Identifier (URI) for a given token.
   * @dev URIs are defined in RFC 3986.
   *      URIs are assumed to be deterministically generated based on token ID
   *      Token IDs are assumed to be represented in their hex format in URIs
   * @return URI string
   */
  function uri(uint256 _id) public view returns (string memory) {
    return string(abi.encodePacked(baseMetadataURI, _uint2str(_id), ".json"));
  }


  /***********************************|
  |    Metadata Internal Functions    |
  |__________________________________*/

  /**
   * @notice Will emit default URI log event for corresponding token _id
   * @param _tokenIDs Array of IDs of tokens to log default URI
   */
  function _logURIs(uint256[] memory _tokenIDs) internal {
    string memory baseURL = baseMetadataURI;
    string memory tokenURI;

    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      tokenURI = string(abi.encodePacked(baseURL, _uint2str(_tokenIDs[i]), ".json"));
      emit URI(tokenURI, _tokenIDs[i]);
    }
  }

  /**
   * @notice Will emit a specific URI log event for corresponding token
   * @param _tokenIDs IDs of the token corresponding to the _uris logged
   * @param _URIs    The URIs of the specified _tokenIDs
   */
  function _logURIs(uint256[] memory _tokenIDs, string[] memory _URIs) internal {
    require(_tokenIDs.length == _URIs.length, "ERC1155Metadata#_logURIs: INVALID_ARRAYS_LENGTH");
    for (uint256 i = 0; i < _tokenIDs.length; i++) {
      emit URI(_URIs[i], _tokenIDs[i]);
    }
  }

  /**
   * @notice Will update the base URL of token's URI
   * @param _newBaseMetadataURI New base URL of token's URI
   */
  function _setBaseMetadataURI(string memory _newBaseMetadataURI) internal {
    baseMetadataURI = _newBaseMetadataURI;
  }


  /***********************************|
  |    Utility Internal Functions     |
  |__________________________________*/

  /**
   * @notice Convert uint256 to string
   * @param _i Unsigned integer to convert to string
   */
  function _uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
    if (_i == 0) {
      return "0";
    }

    uint256 j = _i;
    uint256 ii = _i;
    uint256 len;

    // Get number of bytes
    while (j != 0) {
      len++;
      j /= 10;
    }

    bytes memory bstr = new bytes(len);
    uint256 k = len - 1;

    // Get each individual ASCII
    while (ii != 0) {
      bstr[k--] = byte(uint8(48 + ii % 10));
      ii /= 10;
    }

    // Convert to string
    return string(bstr);
  }

}

// File: node_modules\multi-token-standard\contracts\tokens\ERC1155\ERC1155.sol

pragma solidity ^0.5.12;







/**
 * @dev Implementation of Multi-Token Standard contract
 */
contract ERC1155 is IERC165 {
  using SafeMath for uint256;
  using Address for address;


  /***********************************|
  |        Variables and Events       |
  |__________________________________*/

  // onReceive function signatures
  bytes4 constant internal ERC1155_RECEIVED_VALUE = 0xf23a6e61;
  bytes4 constant internal ERC1155_BATCH_RECEIVED_VALUE = 0xbc197c81;

  // Objects balances
  mapping (address => mapping(uint256 => uint256)) internal balances;

  // Operator Functions
  mapping (address => mapping(address => bool)) internal operators;

  // Events
  event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _amount);
  event TransferBatch(address indexed _operator, address indexed _from, address indexed _to, uint256[] _ids, uint256[] _amounts);
  event ApprovalForAll(address indexed _owner, address indexed _operator, bool _approved);
  event URI(string _uri, uint256 indexed _id);


  /***********************************|
  |     Public Transfer Functions     |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   * @param _data    Additional data with no specified format, sent in call to `_to`
   */
  function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    public
  {
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeTransferFrom: INVALID_OPERATOR");
    require(_to != address(0),"ERC1155#safeTransferFrom: INVALID_RECIPIENT");
    // require(_amount >= balances[_from][_id]) is not necessary since checked with safemath operations

    _safeTransferFrom(_from, _to, _id, _amount);
    _callonERC1155Received(_from, _to, _id, _amount, _data);
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   * @param _data     Additional data with no specified format, sent in call to `_to`
   */
  function safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    public
  {
    // Requirements
    require((msg.sender == _from) || isApprovedForAll(_from, msg.sender), "ERC1155#safeBatchTransferFrom: INVALID_OPERATOR");
    require(_to != address(0), "ERC1155#safeBatchTransferFrom: INVALID_RECIPIENT");

    _safeBatchTransferFrom(_from, _to, _ids, _amounts);
    _callonERC1155BatchReceived(_from, _to, _ids, _amounts, _data);
  }


  /***********************************|
  |    Internal Transfer Functions    |
  |__________________________________*/

  /**
   * @notice Transfers amount amount of an _id from the _from address to the _to address specified
   * @param _from    Source address
   * @param _to      Target address
   * @param _id      ID of the token type
   * @param _amount  Transfered amount
   */
  function _safeTransferFrom(address _from, address _to, uint256 _id, uint256 _amount)
    internal
  {
    // Update balances
    balances[_from][_id] = balances[_from][_id].sub(_amount); // Subtract amount
    balances[_to][_id] = balances[_to][_id].add(_amount);     // Add amount

    // Emit event
    emit TransferSingle(msg.sender, _from, _to, _id, _amount);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155Received(...)
   */
  function _callonERC1155Received(address _from, address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Check if recipient is contract
    if (_to.isContract()) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155Received(msg.sender, _from, _id, _amount, _data);
      require(retval == ERC1155_RECEIVED_VALUE, "ERC1155#_callonERC1155Received: INVALID_ON_RECEIVE_MESSAGE");
    }
  }

  /**
   * @notice Send multiple types of Tokens from the _from address to the _to address (with safety call)
   * @param _from     Source addresses
   * @param _to       Target addresses
   * @param _ids      IDs of each token type
   * @param _amounts  Transfer amounts per token type
   */
  function _safeBatchTransferFrom(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155#_safeBatchTransferFrom: INVALID_ARRAYS_LENGTH");

    // Number of transfer to execute
    uint256 nTransfer = _ids.length;

    // Executing all transfers
    for (uint256 i = 0; i < nTransfer; i++) {
      // Update storage balance of previous bin
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit event
    emit TransferBatch(msg.sender, _from, _to, _ids, _amounts);
  }

  /**
   * @notice Verifies if receiver is contract and if so, calls (_to).onERC1155BatchReceived(...)
   */
  function _callonERC1155BatchReceived(address _from, address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    // Pass data if recipient is contract
    if (_to.isContract()) {
      bytes4 retval = IERC1155TokenReceiver(_to).onERC1155BatchReceived(msg.sender, _from, _ids, _amounts, _data);
      require(retval == ERC1155_BATCH_RECEIVED_VALUE, "ERC1155#_callonERC1155BatchReceived: INVALID_ON_RECEIVE_MESSAGE");
    }
  }


  /***********************************|
  |         Operator Functions        |
  |__________________________________*/

  /**
   * @notice Enable or disable approval for a third party ("operator") to manage all of caller's tokens
   * @param _operator  Address to add to the set of authorized operators
   * @param _approved  True if the operator is approved, false to revoke approval
   */
  function setApprovalForAll(address _operator, bool _approved)
    external
  {
    // Update operator status
    operators[msg.sender][_operator] = _approved;
    emit ApprovalForAll(msg.sender, _operator, _approved);
  }

  /**
   * @notice Queries the approval status of an operator for a given owner
   * @param _owner     The owner of the Tokens
   * @param _operator  Address of authorized operator
   * @return True if the operator is approved, false if not
   */
  function isApprovedForAll(address _owner, address _operator)
    public view returns (bool isOperator)
  {
    return operators[_owner][_operator];
  }


  /***********************************|
  |         Balance Functions         |
  |__________________________________*/

  /**
   * @notice Get the balance of an account's Tokens
   * @param _owner  The address of the token holder
   * @param _id     ID of the Token
   * @return The _owner's balance of the Token type requested
   */
  function balanceOf(address _owner, uint256 _id)
    public view returns (uint256)
  {
    return balances[_owner][_id];
  }

  /**
   * @notice Get the balance of multiple account/token pairs
   * @param _owners The addresses of the token holders
   * @param _ids    ID of the Tokens
   * @return        The _owner's balance of the Token types requested (i.e. balance for each (owner, id) pair)
   */
  function balanceOfBatch(address[] memory _owners, uint256[] memory _ids)
    public view returns (uint256[] memory)
  {
    require(_owners.length == _ids.length, "ERC1155#balanceOfBatch: INVALID_ARRAY_LENGTH");

    // Variables
    uint256[] memory batchBalances = new uint256[](_owners.length);

    // Iterate over each owner and token ID
    for (uint256 i = 0; i < _owners.length; i++) {
      batchBalances[i] = balances[_owners[i]][_ids[i]];
    }

    return batchBalances;
  }


  /***********************************|
  |          ERC165 Functions         |
  |__________________________________*/

  /**
   * INTERFACE_SIGNATURE_ERC165 = bytes4(keccak256("supportsInterface(bytes4)"));
   */
  bytes4 constant private INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;

  /**
   * INTERFACE_SIGNATURE_ERC1155 =
   * bytes4(keccak256("safeTransferFrom(address,address,uint256,uint256,bytes)")) ^
   * bytes4(keccak256("safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)")) ^
   * bytes4(keccak256("balanceOf(address,uint256)")) ^
   * bytes4(keccak256("balanceOfBatch(address[],uint256[])")) ^
   * bytes4(keccak256("setApprovalForAll(address,bool)")) ^
   * bytes4(keccak256("isApprovedForAll(address,address)"));
   */
  bytes4 constant private INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

  /**
   * @notice Query if a contract implements an interface
   * @param _interfaceID  The interface identifier, as specified in ERC-165
   * @return `true` if the contract implements `_interfaceID` and
   */
  function supportsInterface(bytes4 _interfaceID) external view returns (bool) {
    if (_interfaceID == INTERFACE_SIGNATURE_ERC165 ||
        _interfaceID == INTERFACE_SIGNATURE_ERC1155) {
      return true;
    }
    return false;
  }

}

// File: multi-token-standard\contracts\tokens\ERC1155\ERC1155MintBurn.sol

pragma solidity ^0.5.12;



/**
 * @dev Multi-Fungible Tokens with minting and burning methods. These methods assume
 *      a parent contract to be executed as they are `internal` functions
 */
contract ERC1155MintBurn is ERC1155 {


  /****************************************|
  |            Minting Functions           |
  |_______________________________________*/

  /**
   * @notice Mint _amount of tokens of a given id
   * @param _to      The address to mint tokens to
   * @param _id      Token id to mint
   * @param _amount  The amount to be minted
   * @param _data    Data to pass if receiver is contract
   */
  function _mint(address _to, uint256 _id, uint256 _amount, bytes memory _data)
    internal
  {
    // Add _amount
    balances[_to][_id] = balances[_to][_id].add(_amount);

    // Emit event
    emit TransferSingle(msg.sender, address(0x0), _to, _id, _amount);

    // Calling onReceive method if recipient is contract
    _callonERC1155Received(address(0x0), _to, _id, _amount, _data);
  }

  /**
   * @notice Mint tokens for each ids in _ids
   * @param _to       The address to mint tokens to
   * @param _ids      Array of ids to mint
   * @param _amounts  Array of amount of tokens to mint per id
   * @param _data    Data to pass if receiver is contract
   */
  function _batchMint(address _to, uint256[] memory _ids, uint256[] memory _amounts, bytes memory _data)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchMint: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nMint = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nMint; i++) {
      // Update storage balance
      balances[_to][_ids[i]] = balances[_to][_ids[i]].add(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, address(0x0), _to, _ids, _amounts);

    // Calling onReceive method if recipient is contract
    _callonERC1155BatchReceived(address(0x0), _to, _ids, _amounts, _data);
  }


  /****************************************|
  |            Burning Functions           |
  |_______________________________________*/

  /**
   * @notice Burn _amount of tokens of a given token id
   * @param _from    The address to burn tokens from
   * @param _id      Token id to burn
   * @param _amount  The amount to be burned
   */
  function _burn(address _from, uint256 _id, uint256 _amount)
    internal
  {
    //Substract _amount
    balances[_from][_id] = balances[_from][_id].sub(_amount);

    // Emit event
    emit TransferSingle(msg.sender, _from, address(0x0), _id, _amount);
  }

  /**
   * @notice Burn tokens of given token id for each (_ids[i], _amounts[i]) pair
   * @param _from     The address to burn tokens from
   * @param _ids      Array of token ids to burn
   * @param _amounts  Array of the amount to be burned
   */
  function _batchBurn(address _from, uint256[] memory _ids, uint256[] memory _amounts)
    internal
  {
    require(_ids.length == _amounts.length, "ERC1155MintBurn#batchBurn: INVALID_ARRAYS_LENGTH");

    // Number of mints to execute
    uint256 nBurn = _ids.length;

     // Executing all minting
    for (uint256 i = 0; i < nBurn; i++) {
      // Update storage balance
      balances[_from][_ids[i]] = balances[_from][_ids[i]].sub(_amounts[i]);
    }

    // Emit batch mint event
    emit TransferBatch(msg.sender, _from, address(0x0), _ids, _amounts);
  }

}

// File: contracts\Strings.sol

pragma solidity ^0.5.12;

library Strings {
  // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
  function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) {
      bytes memory _ba = bytes(_a);
      bytes memory _bb = bytes(_b);
      bytes memory _bc = bytes(_c);
      bytes memory _bd = bytes(_d);
      bytes memory _be = bytes(_e);
      string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
      bytes memory babcde = bytes(abcde);
      uint k = 0;
      for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
      for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
      for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
      for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
      for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i];
      return string(babcde);
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
        return strConcat(_a, _b, "", "", "");
    }

    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 - 1;
        while (_i != 0) {
            bstr[k--] = byte(uint8(48 + _i % 10));
            _i /= 10;
        }
        return string(bstr);
    }
}

// File: contracts\ERC1155Tradable.sol

pragma solidity ^0.5.12;






contract OwnableDelegateProxy { }

contract ProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC1155Tradable
 * ERC1155Tradable - ERC1155 contract that whitelists an operator address, has create and mint functionality, and supports useful standards from OpenZeppelin,
  like _exists(), name(), symbol(), and totalSupply()
 */
contract ERC1155Tradable is ERC1155, ERC1155MintBurn, ERC1155Metadata, Ownable {
  using Strings for string;


  //address proxyRegistryAddress;
	uint256 private totalTokenAssets = 3000;
	uint256 private totalReserve = 50;
  uint256 private _currentTokenID = 0;
  uint256 private _maxTokenPerUser = 1000;
  uint256 private _maxTokenPerMint = 10;
  uint256 private sold = 0;
  uint256 private reserved = 0;
  uint256 private presalesMaxToken = 3;
  uint256 private preSalesPrice1 = 0.05 ether;
  uint256 private preSalesPrice2 = 0.06 ether;
  uint256 private publicSalesPrice = 0.07 ether;
  address private signerAddress = 0xD6321754CdFDd74298F68e79E0c09b93E2dB15d0;
  uint16 public salesStage = 0; //1-presales1 , 2-presales2 , 3-public
  address payable companyWallet;

  mapping(uint256 => uint256) private _presalesPrice;
  mapping(address => uint256) public presales1minted; // To check how many tokens an address has minted during presales
  mapping(address => uint256) public presales2minted; // To check how many tokens an address has minted during presales
  mapping(address => uint256) public minted; // To check how many tokens an address has minted
  mapping (uint256 => address) public creators;
  mapping (uint256 => uint256) public tokenSupply;
  // Contract name
  string public name;
  // Contract symbol
  string public symbol;

  /**
   * @dev Require msg.sender to be the creator of the token id
   */
  modifier creatorOnly(uint256 _id) {
    require(creators[_id] == msg.sender, "ERC1155Tradable#creatorOnly: ONLY_CREATOR_ALLOWED");
    _;
  }

  /**
   * @dev Require msg.sender to own more than 0 of the token id
   */
  modifier ownersOnly(uint256 _id) {
    require(balances[msg.sender][_id] > 0, "ERC1155Tradable#ownersOnly: ONLY_OWNERS_ALLOWED");
    _;
  }

  constructor(
    string memory _name,
    string memory _symbol
    //address _proxyRegistryAddress
  ) public {
    name = _name;
    symbol = _symbol;
    //proxyRegistryAddress = _proxyRegistryAddress;
  }

  function uri(
    uint256 _id
  ) public view returns (string memory) {
    require(_exists(_id), "ERC721Tradable#uri: NONEXISTENT_TOKEN");
    return Strings.strConcat(
      baseMetadataURI,
      Strings.uint2str(_id)
    );
  }

  /**
    * @dev Returns the total quantity for a token ID
    * @param _id uint256 ID of the token to query
    * @return amount of token in existence
    */
  function totalSupply(
    uint256 _id
  ) public view returns (uint256) {
    return tokenSupply[_id];
  }



  /**
   * @dev Will update the base URL of token's URI
   * @param _newBaseMetadataURI New base URL of token's URI
   */
  function setBaseMetadataURI(
    string memory _newBaseMetadataURI
  ) public onlyOwner {
    _setBaseMetadataURI(_newBaseMetadataURI);
  }

  /**
    * @dev Creates a new token type and assigns _initialSupply to an address
    * NOTE: remove onlyOwner if you want third parties to create new tokens on your contract (which may change your IDs)
    * @param _initialOwner address of the first owner of the token
    * @param _initialSupply amount to supply the first owner
    * @param _uri Optional URI for this token type
    * @param _data Data to pass if receiver is contract
    * @return The newly created token ID
    */
  function reserve(
    address _initialOwner,
    uint256 _initialSupply,
    string calldata _uri,
    bytes calldata _data
  ) external onlyOwner returns (uint256) {
    require(reserved + _initialSupply <= totalReserve, "Reserve Empty");

    sold += _initialSupply;
    
    for (uint256 i = 0; i < _initialSupply; i++) {
      reserved++;
      uint256 _id = reserved;

      if (bytes(_uri).length > 0) {
        emit URI(_uri, _id);
      }


      creators[_id] = msg.sender;
      _mint(_initialOwner, _id, 1, _data);
      tokenSupply[_id] = 1;
    }
    return 0;
  }
   
function toBytes(address a) public pure returns (bytes memory b){
    assembly {
        let m := mload(0x40)
        a := and(a, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        mstore(add(m, 20), xor(0x140000000000000000000000000000000000000000, a))
        mstore(0x40, add(m, 52))
        b := m
   }
}

function addressToString(address _addr) internal pure returns(string memory) {
    bytes32 value = bytes32(uint256(_addr));
    bytes memory alphabet = "0123456789abcdef";

    bytes memory str = new bytes(42);
    str[0] = "0";
    str[1] = "x";
    for (uint i = 0; i < 20; i++) {
        str[2+i*2] = alphabet[uint(uint8(value[i + 12] >> 4))];
        str[3+i*2] = alphabet[uint(uint8(value[i + 12] & 0x0f))];
    }
    return string(str);
}

function toAsciiString(address x) internal pure returns (string memory) {
    bytes memory s = new bytes(40);
    for (uint i = 0; i < 20; i++) {
        bytes1 b = bytes1(uint8(uint(uint160(x)) / (2**(8*(19 - i)))));
        bytes1 hi = bytes1(uint8(b) / 16);
        bytes1 lo = bytes1(uint8(b) - 16 * uint8(hi));
        s[2*i] = char(hi);
        s[2*i+1] = char(lo);            
    }
    return string(s);
}


function char(
    bytes1 b
    ) internal pure returns (bytes1 c) {
    if (uint8(b) < 10) return bytes1(uint8(b) + 0x30);
    else return bytes1(uint8(b) + 0x57);
}

function bytes32ToString(bytes32 _bytes32) public pure returns (string memory) {
    uint8 i = 0;
    bytes memory bytesArray = new bytes(64);
    for (i = 0; i < bytesArray.length; i++) {

        uint8 _f = uint8(_bytes32[i/2] & 0x0f);
        uint8 _l = uint8(_bytes32[i/2] >> 4);

        bytesArray[i] = toByte(_f);
        i = i + 1;
        bytesArray[i] = toByte(_l);
    }
    return string(bytesArray);
}

function stringToBytes32(string memory source) public pure returns (bytes32 result) {
    bytes memory tempEmptyStringTest = bytes(source);
    if (tempEmptyStringTest.length == 0) {
        return 0x0;
    }

    assembly {
        result := mload(add(source, 32))
    }
}

 function splitSignature(bytes memory sig)
       public
       pure
       returns (uint8, bytes32, bytes32)
   {
       require(sig.length == 65);

       bytes32 r;
       bytes32 s;
       uint8 v;

       assembly {
           // first 32 bytes, after the length prefix
           r := mload(add(sig, 32))
           // second 32 bytes
           s := mload(add(sig, 64))
           // final byte (first byte of the next 32 bytes)
           v := byte(0, mload(add(sig, 96)))
       }
     
       return (v, r, s);
   }

  function recoverSigner(bytes32 message, bytes memory sig)
       public
       pure
       returns (address)
    {
       uint8 v;
       bytes32 r;
       bytes32 s;

       (v, r, s) = splitSignature(sig);
       return ecrecover(message, v, r, s);
  }
  
  function isValidData(string memory _word, bytes memory sig) public view returns(bool){
    bytes32 message = keccak256(abi.encodePacked(_word));
    return (recoverSigner(message, sig) == signerAddress);
}


function toByte(uint8 _uint8) public pure returns (byte) {
    if(_uint8 < 10) {
        return byte(_uint8 + 48);
    } else {
        return byte(_uint8 + 87);
    }
}

	function withdraw() public onlyOwner {
		uint256 balance = address(this).balance;
		companyWallet.transfer(balance);
	}
	
  function presales(
    address _initialOwner,
    uint256 _initialSupply,
    bytes calldata _sig,
    bytes calldata _data
  ) external payable returns (uint256) {
    require(salesStage == 1 || salesStage == 2, "Presales is closed");
    if(salesStage == 1){
      require(presales1minted[_initialOwner] + _initialSupply <= presalesMaxToken, "Max 3 Token Per User");
        require(_initialSupply * preSalesPrice1 == msg.value, "Invalid Fund");
    }else if(salesStage == 2){
      require(presales2minted[_initialOwner] + _initialSupply <= presalesMaxToken, "Max 3 Token Per User");
        require(_initialSupply * preSalesPrice2 == msg.value, "Invalid Fund");
    }
    
    require(isValidData(addressToString(msg.sender), _sig), addressToString(msg.sender));
    
    sold += _initialSupply;

    if(salesStage == 1){
      presales1minted[_initialOwner] += _initialSupply;
    }else if(salesStage == 2){
      presales2minted[_initialOwner] += _initialSupply;
    }
    minted[_initialOwner] += _initialSupply;

    for (uint256 i = 0; i < _initialSupply; i++) {
      uint256 _id = _getNextTokenID() + totalReserve;
      _incrementTokenTypeId();
      creators[_id] = msg.sender;
      _mint(_initialOwner, _id, 1, _data);
      tokenSupply[_id] = 1;
    }

    return 0;
  }


  function publicsales(
    address _initialOwner,
    uint256 _initialSupply,
    string calldata _uri,
    bytes calldata _data
  ) external payable returns (uint256) {
    require(salesStage == 3 , "Public Sales Is Closed");
    require(_initialSupply * publicSalesPrice == msg.value , "Invalid Fund");
    require(_initialSupply <= _maxTokenPerMint, "Max Token Per Mint");
    require(sold + _initialSupply <= totalTokenAssets, "Max Token Minted");
    require(minted[_initialOwner] + _initialSupply <= _maxTokenPerUser, "Max Token Per User");

    sold += _initialSupply;
    minted[_initialOwner] += _initialSupply;

    for (uint256 i = 0; i < _initialSupply; i++) {
      uint256 _id = _getNextTokenID() + totalReserve;
      _incrementTokenTypeId();

     if (bytes(_uri).length > 0) {
       emit URI(_uri, _id);
     }

      creators[_id] = msg.sender;
      _mint(_initialOwner, _id, 1, _data);
      tokenSupply[_id] = 1;
    }
    return 0;
  }

  function setSalesStage(
    uint16 stage
  ) public onlyOwner {
      salesStage = stage;
  }

  function setCompanyWallet(
    address payable newWallet
  ) public onlyOwner {
      companyWallet = newWallet;
  }

  
  function ownerMint(
    address _initialOwner,
    uint256 _initialSupply,
    string calldata _uri,
    bytes calldata _data
  ) external onlyOwner returns (uint256) {
    require(sold + _initialSupply <= totalTokenAssets, "Max Token Minted");

    sold += _initialSupply;
    
    for (uint256 i = 0; i < _initialSupply; i++) {
      reserved++;
      uint256 _id = reserved;

      if (bytes(_uri).length > 0) {
        emit URI(_uri, _id);
      }


      creators[_id] = msg.sender;
      _mint(_initialOwner, _id, 1, _data);
      tokenSupply[_id] = 1;
    }
    return 0;
  }
  
  function walletbalance(
  ) public view returns (uint256) {
        return address(this).balance;
    }
  

  /**
    * @dev Mint tokens for each id in _ids
    * @param _to          The address to mint tokens to
    * @param _ids         Array of ids to mint
    * @param _quantities  Array of amounts of tokens to mint per id
    * @param _data        Data to pass if receiver is contract
    */
  function batchMint(
    address _to,
    uint256[] memory _ids,
    uint256[] memory _quantities,
    bytes memory _data
  ) public {
    for (uint256 i = 0; i < _ids.length; i++) {
      uint256 _id = _ids[i];
      require(creators[_id] == msg.sender, "ERC1155Tradable#batchMint: ONLY_CREATOR_ALLOWED");
      uint256 quantity = _quantities[i];
      tokenSupply[_id] = tokenSupply[_id].add(quantity);
    }
    _batchMint(_to, _ids, _quantities, _data);
  }

  /**
    * @dev Change the creator address for given tokens
    * @param _to   Address of the new creator
    * @param _ids  Array of Token IDs to change creator
    */
  function setCreator(
    address _to,
    uint256[] memory _ids
  ) public {
    require(_to != address(0), "ERC1155Tradable#setCreator: INVALID_ADDRESS.");
    for (uint256 i = 0; i < _ids.length; i++) {
      uint256 id = _ids[i];
      _setCreator(_to, id);
    }
  }

  /**
   * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings.
   */
  //function isApprovedForAll(
  //  address _owner,
  //  address _operator
  //) public view returns (bool isOperator) {
  //  // Whitelist OpenSea proxy contract for easy trading.
  //  ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
  //  if (address(proxyRegistry.proxies(_owner)) == _operator) {
  //    return true;
  //  }

  //  return ERC1155.isApprovedForAll(_owner, _operator);
  //}

  /**
    * @dev Change the creator address for given token
    * @param _to   Address of the new creator
    * @param _id  Token IDs to change creator of
    */
  function _setCreator(address _to, uint256 _id) internal creatorOnly(_id)
  {
      creators[_id] = _to;
  }

  /**
    * @dev Returns whether the specified token exists by checking to see if it has a creator
    * @param _id uint256 ID of the token to query the existence of
    * @return bool whether the token exists
    */
  function _exists(
    uint256 _id
  ) internal view returns (bool) {
    return creators[_id] != address(0);
  }

  /**
    * @dev calculates the next token ID based on value of _currentTokenID
    * @return uint256 for the next token ID
    */
  function _getNextTokenID() private view returns (uint256) {
    return _currentTokenID.add(1);
  }

  /**
    * @dev increments the value of _currentTokenID
    */
  function _incrementTokenTypeId() private  {
    _currentTokenID++;
  }
}

// File: contracts\MyCollectible.sol

pragma solidity ^0.5.12;


/**
 * @title MyCollectible
 * MyCollectible - a contract for my semi-fungible tokens.
 */
contract HunnyBunnyNFT is ERC1155Tradable {
  constructor(string memory _name)//address _proxyRegistryAddress)
  ERC1155Tradable(
    _name,
    "HB"
  ) public {
    _setBaseMetadataURI("https://api.hunnybunny.io/nft/");
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_uri","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"URI","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"batchMint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"_bytes32","type":"bytes32"}],"name":"bytes32ToString","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"_word","type":"string"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"isValidData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"ownerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"presales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presales1minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presales2minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"publicsales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"salesStage","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"setCompanyWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setCreator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"stage","type":"uint16"}],"name":"setSalesStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"string","name":"source","type":"string"}],"name":"stringToBytes32","outputs":[{"internalType":"bytes32","name":"result","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint8","name":"_uint8","type":"uint8"}],"name":"toByte","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"toBytes","outputs":[{"internalType":"bytes","name":"b","type":"bytes"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"walletbalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

6080604052610bb86004556032600555600060068190556103e8600755600a60088190556009829055556003600b5566b1a2bc2ec50000600c5566d529ae9e860000600d5566f8b0a10e470000600e55600f805461ffff60a01b196001600160a01b031990911673d6321754cdfdd74298f68e79e0c09b93e2db15d0171690553480156200008c57600080fd5b506040516200433c3803806200433c83398181016040526020811015620000b257600080fd5b8101908080516040519392919084640100000000821115620000d357600080fd5b908301906020820185811115620000e957600080fd5b82516401000000008111828201881017156200010457600080fd5b82525081516020918201929091019080838360005b838110156200013357818101518382015260200162000119565b50505050905090810190601f168015620001615780820380516001836020036101000a031916815260200191505b50604081810190526002815261242160f11b6020820152849350915060009050620001946001600160e01b036200025f16565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620001f79060179060208501906200027d565b5080516200020d9060189060208401906200027d565b505060408051808201909152601e81527f68747470733a2f2f6170692e68756e6e7962756e6e792e696f2f6e66742f000060208201526200025891506001600160e01b036200026416565b506200031f565b335b90565b8051620002799060029060208401906200027d565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002c057805160ff1916838001178555620002f0565b82800160010185558215620002f0579182015b82811115620002f0578251825591602001919060010190620002d3565b50620002fe92915062000302565b5090565b6200026191905b80821115620002fe576000815560010162000309565b61400d806200032f6000396000f3fe60806040526004361061022f5760003560e01c80638ec229761161012e578063adb41f75116100ab578063cfb519281161006f578063cfb5192814611288578063d2a6b51a14611339578063e985e9c5146113f7578063f242432a14611432578063f2fde38b146115085761022f565b8063adb41f7514610f06578063b48ab8b61461103c578063bcc7eae914611201578063bd85b03914611234578063cd53d08e1461125e5761022f565b806397aba7f9116100f257806397aba7f914610ce1578063a22cb46514610d99578063a7bb580314610dd4578063a86b73f014610ea7578063ad8066c814610ef15761022f565b80638ec2297614610ada5780638f32d59b14610bad5780639201de5514610bc25780639242413f14610bec57806395d89b4114610ccc5761022f565b80633ccfd60b116101bc5780636b43974e116101805780636b43974e146108dd5780636b941a9b146109b0578063715018a6146109e35780637e518ec8146109f85780638da5cb5b14610aa95761022f565b80633ccfd60b1461060757806340259dad1461061c5780634e1273f41461064a578063593b79fe146107ca578063677edc9b146107fd5761022f565b80630e89341c116102035780630e89341c1461037d5780631e7269c5146103a75780632693ebf2146103da57806328831187146104045780632eb2c2d6146104395761022f565b8062fdd58e1461023457806301ffc9a71461027f57806306fdde03146102c75780630cd1635d14610351575b600080fd5b34801561024057600080fd5b5061026d6004803603604081101561025757600080fd5b506001600160a01b03813516906020013561153b565b60408051918252519081900360200190f35b34801561028b57600080fd5b506102b3600480360360208110156102a257600080fd5b50356001600160e01b031916611561565b604080519115158252519081900360200190f35b3480156102d357600080fd5b506102dc6115a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103165781810151838201526020016102fe565b50505050905090810190601f1680156103435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035d57600080fd5b50610366611636565b6040805161ffff9092168252519081900360200190f35b34801561038957600080fd5b506102dc600480360360208110156103a057600080fd5b5035611647565b3480156103b357600080fd5b5061026d600480360360208110156103ca57600080fd5b50356001600160a01b0316611730565b3480156103e657600080fd5b5061026d600480360360208110156103fd57600080fd5b5035611742565b34801561041057600080fd5b506104376004803603602081101561042757600080fd5b50356001600160a01b0316611754565b005b34801561044557600080fd5b50610437600480360360a081101561045c57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561048f57600080fd5b8201836020820111156104a157600080fd5b803590602001918460208302840111600160201b831117156104c257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561051157600080fd5b82018360208201111561052357600080fd5b803590602001918460208302840111600160201b8311171561054457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561059357600080fd5b8201836020820111156105a557600080fd5b803590602001918460018302840111600160201b831117156105c657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117bd945050505050565b34801561061357600080fd5b50610437611879565b34801561062857600080fd5b506104376004803603602081101561063f57600080fd5b503561ffff166118fe565b34801561065657600080fd5b5061077a6004803603604081101561066d57600080fd5b810190602081018135600160201b81111561068757600080fd5b82018360208201111561069957600080fd5b803590602001918460208302840111600160201b831117156106ba57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561070957600080fd5b82018360208201111561071b57600080fd5b803590602001918460208302840111600160201b8311171561073c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611967945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156107b657818101518382015260200161079e565b505050509050019250505060405180910390f35b3480156107d657600080fd5b506102dc600480360360208110156107ed57600080fd5b50356001600160a01b0316611a68565b34801561080957600080fd5b5061026d6004803603608081101561082057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561084f57600080fd5b82018360208201111561086157600080fd5b803590602001918460018302840111600160201b8311171561088257600080fd5b919390929091602081019035600160201b81111561089f57600080fd5b8201836020820111156108b157600080fd5b803590602001918460018302840111600160201b831117156108d257600080fd5b509092509050611a8c565b61026d600480360360808110156108f357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561092257600080fd5b82018360208201111561093457600080fd5b803590602001918460018302840111600160201b8311171561095557600080fd5b919390929091602081019035600160201b81111561097257600080fd5b82018360208201111561098457600080fd5b803590602001918460018302840111600160201b831117156109a557600080fd5b509092509050611c30565b3480156109bc57600080fd5b5061026d600480360360208110156109d357600080fd5b50356001600160a01b0316611f00565b3480156109ef57600080fd5b50610437611f12565b348015610a0457600080fd5b5061043760048036036020811015610a1b57600080fd5b810190602081018135600160201b811115610a3557600080fd5b820183602082011115610a4757600080fd5b803590602001918460018302840111600160201b83111715610a6857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611fa3945050505050565b348015610ab557600080fd5b50610abe611ff6565b604080516001600160a01b039092168252519081900360200190f35b61026d60048036036080811015610af057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610b1f57600080fd5b820183602082011115610b3157600080fd5b803590602001918460018302840111600160201b83111715610b5257600080fd5b919390929091602081019035600160201b811115610b6f57600080fd5b820183602082011115610b8157600080fd5b803590602001918460018302840111600160201b83111715610ba257600080fd5b509092509050612006565b348015610bb957600080fd5b506102b3612413565b348015610bce57600080fd5b506102dc60048036036020811015610be557600080fd5b5035612439565b348015610bf857600080fd5b5061026d60048036036080811015610c0f57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610c3e57600080fd5b820183602082011115610c5057600080fd5b803590602001918460018302840111600160201b83111715610c7157600080fd5b919390929091602081019035600160201b811115610c8e57600080fd5b820183602082011115610ca057600080fd5b803590602001918460018302840111600160201b83111715610cc157600080fd5b509092509050612530565b348015610cd857600080fd5b506102dc6126c9565b348015610ced57600080fd5b50610abe60048036036040811015610d0457600080fd5b81359190810190604081016020820135600160201b811115610d2557600080fd5b820183602082011115610d3757600080fd5b803590602001918460018302840111600160201b83111715610d5857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612724945050505050565b348015610da557600080fd5b5061043760048036036040811015610dbc57600080fd5b506001600160a01b03813516906020013515156127a7565b348015610de057600080fd5b50610e8560048036036020811015610df757600080fd5b810190602081018135600160201b811115610e1157600080fd5b820183602082011115610e2357600080fd5b803590602001918460018302840111600160201b83111715610e4457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612815945050505050565b6040805160ff9094168452602084019290925282820152519081900360600190f35b348015610eb357600080fd5b50610ed460048036036020811015610eca57600080fd5b503560ff16612844565b604080516001600160f81b03199092168252519081900360200190f35b348015610efd57600080fd5b5061026d61286c565b348015610f1257600080fd5b506102b360048036036040811015610f2957600080fd5b810190602081018135600160201b811115610f4357600080fd5b820183602082011115610f5557600080fd5b803590602001918460018302840111600160201b83111715610f7657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610fc857600080fd5b820183602082011115610fda57600080fd5b803590602001918460018302840111600160201b83111715610ffb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612870945050505050565b34801561104857600080fd5b506104376004803603608081101561105f57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561108957600080fd5b82018360208201111561109b57600080fd5b803590602001918460208302840111600160201b831117156110bc57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561110b57600080fd5b82018360208201111561111d57600080fd5b803590602001918460208302840111600160201b8311171561113e57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561118d57600080fd5b82018360208201111561119f57600080fd5b803590602001918460018302840111600160201b831117156111c057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061290d945050505050565b34801561120d57600080fd5b5061026d6004803603602081101561122457600080fd5b50356001600160a01b03166129f9565b34801561124057600080fd5b5061026d6004803603602081101561125757600080fd5b5035612a0b565b34801561126a57600080fd5b50610abe6004803603602081101561128157600080fd5b5035612a1d565b34801561129457600080fd5b5061026d600480360360208110156112ab57600080fd5b810190602081018135600160201b8111156112c557600080fd5b8201836020820111156112d757600080fd5b803590602001918460018302840111600160201b831117156112f857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612a38945050505050565b34801561134557600080fd5b506104376004803603604081101561135c57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561138657600080fd5b82018360208201111561139857600080fd5b803590602001918460208302840111600160201b831117156113b957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612a56945050505050565b34801561140357600080fd5b506102b36004803603604081101561141a57600080fd5b506001600160a01b0381358116916020013516612ad7565b34801561143e57600080fd5b50610437600480360360a081101561145557600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b81111561149457600080fd5b8201836020820111156114a657600080fd5b803590602001918460018302840111600160201b831117156114c757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612b05945050505050565b34801561151457600080fd5b506104376004803603602081101561152b57600080fd5b50356001600160a01b0316612bba565b6001600160a01b0391909116600090815260208181526040808320938352929052205490565b60006001600160e01b031982166301ffc9a760e01b148061159257506001600160e01b03198216636cdb3d1360e11b145b1561159f575060016115a3565b5060005b919050565b6017805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561162e5780601f106116035761010080835404028352916020019161162e565b820191906000526020600020905b81548152906001019060200180831161161157829003601f168201915b505050505081565b600f54600160a01b900461ffff1681565b606061165282612c0a565b61168d5760405162461bcd60e51b8152600401808060200182810382526025815260200180613e336025913960400191505060405180910390fd5b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815261172a93909290918301828280156117175780601f106116ec57610100808354040283529160200191611717565b820191906000526020600020905b8154815290600101906020018083116116fa57829003601f168201915b505050505061172584612c27565b612ce8565b92915050565b60146020526000908152604090205481565b60166020526000908152604090205481565b61175c612413565b61179b576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b03861614806117d957506117d98533612ad7565b6118145760405162461bcd60e51b815260040180806020018281038252602f815260200180613ea4602f913960400191505060405180910390fd5b6001600160a01b0384166118595760405162461bcd60e51b8152600401808060200182810382526030815260200180613e036030913960400191505060405180910390fd5b61186585858585612d24565b6118728585858585612fcf565b5050505050565b611881612413565b6118c0576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b60105460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156118fa573d6000803e3d6000fd5b5050565b611906612413565b611945576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b600f805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b606081518351146119a95760405162461bcd60e51b815260040180806020018281038252602c815260200180613e78602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156119d6578160200160208202803883390190505b50905060005b8451811015611a60576000808683815181106119f457fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000858381518110611a2a57fe5b6020026020010151815260200190815260200160002054828281518110611a4d57fe5b60209081029190910101526001016119dc565b509392505050565b604080516001600160a01b0392909216600560a21b18601483015260348201905290565b6000611a96612413565b611ad5576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b60055486600a54011115611b20576040805162461bcd60e51b815260206004820152600d60248201526c5265736572766520456d70747960981b604482015290519081900360640190fd5b600980548701905560005b86811015611c2257600a8054600101908190558515611ba657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b60008181526015602090815260409182902080546001600160a01b031916331790558151601f8701829004820281018201909252858252611c08918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b600090815260166020526040902060019081905501611b2b565b506000979650505050505050565b600f54600090600160a01b900461ffff16600314611c8e576040805162461bcd60e51b8152602060048201526016602482015275141d589b1a58c814d85b195cc8125cc810db1bdcd95960521b604482015290519081900360640190fd5b34600e54870214611cd5576040805162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908119d5b9960a21b604482015290519081900360640190fd5b600854861115611d21576040805162461bcd60e51b815260206004820152601260248201527113585e08151bdad95b8814195c88135a5b9d60721b604482015290519081900360640190fd5b60045486600954011115611d6f576040805162461bcd60e51b815260206004820152601060248201526f13585e08151bdad95b88135a5b9d195960821b604482015290519081900360640190fd5b6007546001600160a01b03881660009081526014602052604090205487011115611dd5576040805162461bcd60e51b815260206004820152601260248201527126b0bc102a37b5b2b7102832b9102ab9b2b960711b604482015290519081900360640190fd5b60098054870190556001600160a01b03871660009081526014602052604081208054880190555b86811015611c22576000600554611e11613275565b019050611e1c613291565b8515611e8457807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b60008181526015602090815260409182902080546001600160a01b031916331790558151601f8701829004820281018201909252858252611ee6918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b600090815260166020526040902060019081905501611dfc565b60126020526000908152604090205481565b611f1a612413565b611f59576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b611fab612413565b611fea576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b611ff38161329c565b50565b6003546001600160a01b03165b90565b600f54600090600160a01b900461ffff16600114806120325750600f54600160a01b900461ffff166002145b612078576040805162461bcd60e51b8152602060048201526012602482015271141c995cd85b195cc81a5cc818db1bdcd95960721b604482015290519081900360640190fd5b600f54600160a01b900461ffff166001141561214257600b546001600160a01b038816600090815260126020526040902054870111156120f6576040805162461bcd60e51b815260206004820152601460248201527326b0bc1019902a37b5b2b7102832b9102ab9b2b960611b604482015290519081900360640190fd5b34600c5487021461213d576040805162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908119d5b9960a21b604482015290519081900360640190fd5b612207565b600f54600160a01b900461ffff166002141561220757600b546001600160a01b038816600090815260136020526040902054870111156121c0576040805162461bcd60e51b815260206004820152601460248201527326b0bc1019902a37b5b2b7102832b9102ab9b2b960611b604482015290519081900360640190fd5b34600d54870214612207576040805162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908119d5b9960a21b604482015290519081900360640190fd5b61224f612213336132af565b86868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061287092505050565b612258336132af565b906122e15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122a657818101518382015260200161228e565b50505050905090810190601f1680156122d35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506009805487019055600f54600160a01b900461ffff1660011415612323576001600160a01b0387166000908152601260205260409020805487019055612358565b600f54600160a01b900461ffff1660021415612358576001600160a01b03871660009081526013602052604090208054870190555b6001600160a01b03871660009081526014602052604081208054880190555b86811015611c2257600060055461238c613275565b019050612397613291565b60008181526015602090815260409182902080546001600160a01b031916331790558151601f87018290048202810182019092528582526123f9918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b600090815260166020526040902060019081905501612377565b6003546000906001600160a01b031661242a613422565b6001600160a01b031614905090565b6040805181815260608181018352916000918391602082018180388339019050509050600091505b80518260ff16101561252957600084600260ff85160460ff166020811061248457fe5b1a600f1690506000600486600260ff87160460ff16602081106124a357fe5b1a60f81b6001600160f81b031916901c60f81c90506124c182612844565b838560ff16815181106124d057fe5b60200101906001600160f81b031916908160001a9053508360010193506124f681612844565b838560ff168151811061250557fe5b60200101906001600160f81b031916908160001a9053505060019092019150612461565b9392505050565b600061253a612413565b612579576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b600454866009540111156125c7576040805162461bcd60e51b815260206004820152601060248201526f13585e08151bdad95b88135a5b9d195960821b604482015290519081900360640190fd5b600980548701905560005b86811015611c2257600a805460010190819055851561264d57807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b60008181526015602090815260409182902080546001600160a01b031916331790558151601f87018290048202810182019092528582526126af918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b6000908152601660205260409020600190819055016125d2565b6018805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561162e5780601f106116035761010080835404028352916020019161162e565b60008060008061273385612815565b604080516000815260208082018084528c905260ff8616828401526060820185905260808201849052915194975092955090935060019260a080840193601f198301929081900390910190855afa158015612792573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6000806000835160411461282857600080fd5b5050506020810151604082015160609092015160001a92909190565b6000600a8260ff16101561285f57506030810160f81b6115a3565b506057810160f81b6115a3565b4790565b600080836040516020018082805190602001908083835b602083106128a65780518252601f199092019160209182019101612887565b51815160209384036101000a60001901801990921691161790526040805192909401828103601f190183529093528051920191909120600f549094506001600160a01b031692506128fb915083905085612724565b6001600160a01b031614949350505050565b60005b83518110156129e657600084828151811061292757fe5b602090810291909101810151600081815260159092526040909120549091506001600160a01b0316331461298c5760405162461bcd60e51b815260040180806020018281038252602f815260200180613d4f602f913960400191505060405180910390fd5b600084838151811061299a57fe5b602002602001015190506129ca81601660008581526020019081526020016000205461342690919063ffffffff16565b6000928352601660205260409092209190915550600101612910565b506129f384848484613479565b50505050565b60136020526000908152604090205481565b60009081526016602052604090205490565b6015602052600090815260409020546001600160a01b031681565b80516000908290612a4d5750600090506115a3565b50506020015190565b6001600160a01b038216612a9b5760405162461bcd60e51b815260040180806020018281038252602c815260200180613f7c602c913960400191505060405180910390fd5b60005b8151811015612ad2576000828281518110612ab557fe5b60200260200101519050612ac9848261364d565b50600101612a9e565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b336001600160a01b0386161480612b215750612b218533612ad7565b612b5c5760405162461bcd60e51b815260040180806020018281038252602a815260200180613da4602a913960400191505060405180910390fd5b6001600160a01b038416612ba15760405162461bcd60e51b815260040180806020018281038252602b815260200180613d24602b913960400191505060405180910390fd5b612bad858585856136d3565b61187285858585856137bb565b612bc2612413565b612c01576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b611ff38161393d565b6000908152601560205260409020546001600160a01b0316151590565b606081612c4c57506040805180820190915260018152600360fc1b60208201526115a3565b8160005b8115612c6457600101600a82049150612c50565b6060816040519080825280601f01601f191660200182016040528015612c91576020820181803883390190505b50905060001982015b8515612cdf57600a860660300160f81b82828060019003935081518110612cbd57fe5b60200101906001600160f81b031916908160001a905350600a86049550612c9a565b50949350505050565b606061252983836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506139de565b8051825114612d645760405162461bcd60e51b8152600401808060200182810382526035815260200180613dce6035913960400191505060405180910390fd5b815160005b81811015612eee57612ddf838281518110612d8057fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612dba57fe5b6020026020010151815260200190815260200160002054613bf290919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612e1157fe5b6020026020010151815260200190815260200160002081905550612e99838281518110612e3a57fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612e7457fe5b602002602001015181526020019081526020016000205461342690919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612ecb57fe5b602090810291909101810151825281019190915260400160002055600101612d69565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612f74578181015183820152602001612f5c565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612fb3578181015183820152602001612f9b565b5050505090500194505050505060405180910390a45050505050565b612fe1846001600160a01b0316613c4f565b15611872576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561308357818101518382015260200161306b565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156130c25781810151838201526020016130aa565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156130fe5781810151838201526020016130e6565b50505050905090810190601f16801561312b5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561315057600080fd5b505af1158015613164573d6000803e3d6000fd5b505050506040513d602081101561317a57600080fd5b505190506001600160e01b0319811663bc197c8160e01b146131cd5760405162461bcd60e51b815260040180806020018281038252603f815260200180613f03603f913960400191505060405180910390fd5b505050505050565b6001600160a01b038416600090815260208181526040808320868452909152902054613207908363ffffffff61342616565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a46129f36000858585856137bb565b60065460009061328c90600163ffffffff61342616565b905090565b600680546001019055565b80516118fa906002906020840190613c8b565b604080518082018252601081526f181899199a1a9b1b9c1cb0b131b232b360811b60208201528151602a80825260608281019094526001600160a01b03851692918491602082018180388339019050509050600360fc1b8160008151811061331357fe5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061333c57fe5b60200101906001600160f81b031916908160001a90535060005b6014811015612cdf578260048583600c016020811061337157fe5b1a60f81b6001600160f81b031916901c60f81c60ff168151811061339157fe5b602001015160f81c60f81b8282600202600201815181106133ae57fe5b60200101906001600160f81b031916908160001a905350828482600c01602081106133d557fe5b825191901a600f169081106133e657fe5b602001015160f81c60f81b82826002026003018151811061340357fe5b60200101906001600160f81b031916908160001a905350600101613356565b3390565b600082820183811015612529576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b81518351146134b95760405162461bcd60e51b8152600401808060200182810382526030815260200180613ed36030913960400191505060405180910390fd5b825160005b818110156135645761350f8482815181106134d557fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000888581518110612e7457fe5b600080886001600160a01b03166001600160a01b03168152602001908152602001600020600087848151811061354157fe5b6020908102919091018101518252810191909152604001600020556001016134be565b50846001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156135eb5781810151838201526020016135d3565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561362a578181015183820152602001613612565b5050505090500194505050505060405180910390a4611872600086868686612fcf565b60008181526015602052604090205481906001600160a01b031633146136a45760405162461bcd60e51b8152600401808060200182810382526031815260200180613fa86031913960400191505060405180910390fd5b50600090815260156020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416600090815260208181526040808320858452909152902054613705908263ffffffff613bf216565b6001600160a01b038086166000908152602081815260408083208784528252808320949094559186168152808252828120858252909152205461374e908263ffffffff61342616565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6137cd846001600160a01b0316613c4f565b15611872576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613870578181015183820152602001613858565b50505050905090810190601f16801561389d5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156138c057600080fd5b505af11580156138d4573d6000803e3d6000fd5b505050506040513d60208110156138ea57600080fd5b505190506001600160e01b0319811663f23a6e6160e01b146131cd5760405162461bcd60e51b815260040180806020018281038252603a815260200180613f42603a913960400191505060405180910390fd5b6001600160a01b0381166139825760405162461bcd60e51b8152600401808060200182810382526026815260200180613d7e6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015613a32576020820181803883390190505b509050806000805b8851811015613a8b57888181518110613a4f57fe5b602001015160f81c60f81b838380600101945081518110613a6c57fe5b60200101906001600160f81b031916908160001a905350600101613a3a565b5060005b8751811015613ae057878181518110613aa457fe5b602001015160f81c60f81b838380600101945081518110613ac157fe5b60200101906001600160f81b031916908160001a905350600101613a8f565b5060005b8651811015613b3557868181518110613af957fe5b602001015160f81c60f81b838380600101945081518110613b1657fe5b60200101906001600160f81b031916908160001a905350600101613ae4565b5060005b8551811015613b8a57858181518110613b4e57fe5b602001015160f81c60f81b838380600101945081518110613b6b57fe5b60200101906001600160f81b031916908160001a905350600101613b39565b5060005b8451811015613bdf57848181518110613ba357fe5b602001015160f81c60f81b838380600101945081518110613bc057fe5b60200101906001600160f81b031916908160001a905350600101613b8e565b50909d9c50505050505050505050505050565b600082821115613c49576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590613c835750808214155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613ccc57805160ff1916838001178555613cf9565b82800160010185558215613cf9579182015b82811115613cf9578251825591602001919060010190613cde565b50613d05929150613d09565b5090565b61200391905b80821115613d055760008155600101613d0f56fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54455243313135355472616461626c652362617463684d696e743a204f4e4c595f43524541544f525f414c4c4f5745444f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135354d696e744275726e2362617463684d696e743a20494e56414c49445f4152524159535f4c454e47544845524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a265627a7a72315820bc36d5b3bf5213092f6774de5b580a5aa8e5bab2fad176af32ec3d2e317554e664736f6c634300051100320000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a48756e6e7942756e6e7900000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061022f5760003560e01c80638ec229761161012e578063adb41f75116100ab578063cfb519281161006f578063cfb5192814611288578063d2a6b51a14611339578063e985e9c5146113f7578063f242432a14611432578063f2fde38b146115085761022f565b8063adb41f7514610f06578063b48ab8b61461103c578063bcc7eae914611201578063bd85b03914611234578063cd53d08e1461125e5761022f565b806397aba7f9116100f257806397aba7f914610ce1578063a22cb46514610d99578063a7bb580314610dd4578063a86b73f014610ea7578063ad8066c814610ef15761022f565b80638ec2297614610ada5780638f32d59b14610bad5780639201de5514610bc25780639242413f14610bec57806395d89b4114610ccc5761022f565b80633ccfd60b116101bc5780636b43974e116101805780636b43974e146108dd5780636b941a9b146109b0578063715018a6146109e35780637e518ec8146109f85780638da5cb5b14610aa95761022f565b80633ccfd60b1461060757806340259dad1461061c5780634e1273f41461064a578063593b79fe146107ca578063677edc9b146107fd5761022f565b80630e89341c116102035780630e89341c1461037d5780631e7269c5146103a75780632693ebf2146103da57806328831187146104045780632eb2c2d6146104395761022f565b8062fdd58e1461023457806301ffc9a71461027f57806306fdde03146102c75780630cd1635d14610351575b600080fd5b34801561024057600080fd5b5061026d6004803603604081101561025757600080fd5b506001600160a01b03813516906020013561153b565b60408051918252519081900360200190f35b34801561028b57600080fd5b506102b3600480360360208110156102a257600080fd5b50356001600160e01b031916611561565b604080519115158252519081900360200190f35b3480156102d357600080fd5b506102dc6115a8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103165781810151838201526020016102fe565b50505050905090810190601f1680156103435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035d57600080fd5b50610366611636565b6040805161ffff9092168252519081900360200190f35b34801561038957600080fd5b506102dc600480360360208110156103a057600080fd5b5035611647565b3480156103b357600080fd5b5061026d600480360360208110156103ca57600080fd5b50356001600160a01b0316611730565b3480156103e657600080fd5b5061026d600480360360208110156103fd57600080fd5b5035611742565b34801561041057600080fd5b506104376004803603602081101561042757600080fd5b50356001600160a01b0316611754565b005b34801561044557600080fd5b50610437600480360360a081101561045c57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561048f57600080fd5b8201836020820111156104a157600080fd5b803590602001918460208302840111600160201b831117156104c257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561051157600080fd5b82018360208201111561052357600080fd5b803590602001918460208302840111600160201b8311171561054457600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561059357600080fd5b8201836020820111156105a557600080fd5b803590602001918460018302840111600160201b831117156105c657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117bd945050505050565b34801561061357600080fd5b50610437611879565b34801561062857600080fd5b506104376004803603602081101561063f57600080fd5b503561ffff166118fe565b34801561065657600080fd5b5061077a6004803603604081101561066d57600080fd5b810190602081018135600160201b81111561068757600080fd5b82018360208201111561069957600080fd5b803590602001918460208302840111600160201b831117156106ba57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561070957600080fd5b82018360208201111561071b57600080fd5b803590602001918460208302840111600160201b8311171561073c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611967945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156107b657818101518382015260200161079e565b505050509050019250505060405180910390f35b3480156107d657600080fd5b506102dc600480360360208110156107ed57600080fd5b50356001600160a01b0316611a68565b34801561080957600080fd5b5061026d6004803603608081101561082057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561084f57600080fd5b82018360208201111561086157600080fd5b803590602001918460018302840111600160201b8311171561088257600080fd5b919390929091602081019035600160201b81111561089f57600080fd5b8201836020820111156108b157600080fd5b803590602001918460018302840111600160201b831117156108d257600080fd5b509092509050611a8c565b61026d600480360360808110156108f357600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561092257600080fd5b82018360208201111561093457600080fd5b803590602001918460018302840111600160201b8311171561095557600080fd5b919390929091602081019035600160201b81111561097257600080fd5b82018360208201111561098457600080fd5b803590602001918460018302840111600160201b831117156109a557600080fd5b509092509050611c30565b3480156109bc57600080fd5b5061026d600480360360208110156109d357600080fd5b50356001600160a01b0316611f00565b3480156109ef57600080fd5b50610437611f12565b348015610a0457600080fd5b5061043760048036036020811015610a1b57600080fd5b810190602081018135600160201b811115610a3557600080fd5b820183602082011115610a4757600080fd5b803590602001918460018302840111600160201b83111715610a6857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611fa3945050505050565b348015610ab557600080fd5b50610abe611ff6565b604080516001600160a01b039092168252519081900360200190f35b61026d60048036036080811015610af057600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610b1f57600080fd5b820183602082011115610b3157600080fd5b803590602001918460018302840111600160201b83111715610b5257600080fd5b919390929091602081019035600160201b811115610b6f57600080fd5b820183602082011115610b8157600080fd5b803590602001918460018302840111600160201b83111715610ba257600080fd5b509092509050612006565b348015610bb957600080fd5b506102b3612413565b348015610bce57600080fd5b506102dc60048036036020811015610be557600080fd5b5035612439565b348015610bf857600080fd5b5061026d60048036036080811015610c0f57600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b811115610c3e57600080fd5b820183602082011115610c5057600080fd5b803590602001918460018302840111600160201b83111715610c7157600080fd5b919390929091602081019035600160201b811115610c8e57600080fd5b820183602082011115610ca057600080fd5b803590602001918460018302840111600160201b83111715610cc157600080fd5b509092509050612530565b348015610cd857600080fd5b506102dc6126c9565b348015610ced57600080fd5b50610abe60048036036040811015610d0457600080fd5b81359190810190604081016020820135600160201b811115610d2557600080fd5b820183602082011115610d3757600080fd5b803590602001918460018302840111600160201b83111715610d5857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612724945050505050565b348015610da557600080fd5b5061043760048036036040811015610dbc57600080fd5b506001600160a01b03813516906020013515156127a7565b348015610de057600080fd5b50610e8560048036036020811015610df757600080fd5b810190602081018135600160201b811115610e1157600080fd5b820183602082011115610e2357600080fd5b803590602001918460018302840111600160201b83111715610e4457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612815945050505050565b6040805160ff9094168452602084019290925282820152519081900360600190f35b348015610eb357600080fd5b50610ed460048036036020811015610eca57600080fd5b503560ff16612844565b604080516001600160f81b03199092168252519081900360200190f35b348015610efd57600080fd5b5061026d61286c565b348015610f1257600080fd5b506102b360048036036040811015610f2957600080fd5b810190602081018135600160201b811115610f4357600080fd5b820183602082011115610f5557600080fd5b803590602001918460018302840111600160201b83111715610f7657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b811115610fc857600080fd5b820183602082011115610fda57600080fd5b803590602001918460018302840111600160201b83111715610ffb57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612870945050505050565b34801561104857600080fd5b506104376004803603608081101561105f57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561108957600080fd5b82018360208201111561109b57600080fd5b803590602001918460208302840111600160201b831117156110bc57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561110b57600080fd5b82018360208201111561111d57600080fd5b803590602001918460208302840111600160201b8311171561113e57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561118d57600080fd5b82018360208201111561119f57600080fd5b803590602001918460018302840111600160201b831117156111c057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061290d945050505050565b34801561120d57600080fd5b5061026d6004803603602081101561122457600080fd5b50356001600160a01b03166129f9565b34801561124057600080fd5b5061026d6004803603602081101561125757600080fd5b5035612a0b565b34801561126a57600080fd5b50610abe6004803603602081101561128157600080fd5b5035612a1d565b34801561129457600080fd5b5061026d600480360360208110156112ab57600080fd5b810190602081018135600160201b8111156112c557600080fd5b8201836020820111156112d757600080fd5b803590602001918460018302840111600160201b831117156112f857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612a38945050505050565b34801561134557600080fd5b506104376004803603604081101561135c57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561138657600080fd5b82018360208201111561139857600080fd5b803590602001918460208302840111600160201b831117156113b957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550612a56945050505050565b34801561140357600080fd5b506102b36004803603604081101561141a57600080fd5b506001600160a01b0381358116916020013516612ad7565b34801561143e57600080fd5b50610437600480360360a081101561145557600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b81111561149457600080fd5b8201836020820111156114a657600080fd5b803590602001918460018302840111600160201b831117156114c757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612b05945050505050565b34801561151457600080fd5b506104376004803603602081101561152b57600080fd5b50356001600160a01b0316612bba565b6001600160a01b0391909116600090815260208181526040808320938352929052205490565b60006001600160e01b031982166301ffc9a760e01b148061159257506001600160e01b03198216636cdb3d1360e11b145b1561159f575060016115a3565b5060005b919050565b6017805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561162e5780601f106116035761010080835404028352916020019161162e565b820191906000526020600020905b81548152906001019060200180831161161157829003601f168201915b505050505081565b600f54600160a01b900461ffff1681565b606061165282612c0a565b61168d5760405162461bcd60e51b8152600401808060200182810382526025815260200180613e336025913960400191505060405180910390fd5b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815261172a93909290918301828280156117175780601f106116ec57610100808354040283529160200191611717565b820191906000526020600020905b8154815290600101906020018083116116fa57829003601f168201915b505050505061172584612c27565b612ce8565b92915050565b60146020526000908152604090205481565b60166020526000908152604090205481565b61175c612413565b61179b576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b03861614806117d957506117d98533612ad7565b6118145760405162461bcd60e51b815260040180806020018281038252602f815260200180613ea4602f913960400191505060405180910390fd5b6001600160a01b0384166118595760405162461bcd60e51b8152600401808060200182810382526030815260200180613e036030913960400191505060405180910390fd5b61186585858585612d24565b6118728585858585612fcf565b5050505050565b611881612413565b6118c0576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b60105460405147916001600160a01b03169082156108fc029083906000818181858888f193505050501580156118fa573d6000803e3d6000fd5b5050565b611906612413565b611945576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b600f805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b606081518351146119a95760405162461bcd60e51b815260040180806020018281038252602c815260200180613e78602c913960400191505060405180910390fd5b606083516040519080825280602002602001820160405280156119d6578160200160208202803883390190505b50905060005b8451811015611a60576000808683815181106119f457fe5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000858381518110611a2a57fe5b6020026020010151815260200190815260200160002054828281518110611a4d57fe5b60209081029190910101526001016119dc565b509392505050565b604080516001600160a01b0392909216600560a21b18601483015260348201905290565b6000611a96612413565b611ad5576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b60055486600a54011115611b20576040805162461bcd60e51b815260206004820152600d60248201526c5265736572766520456d70747960981b604482015290519081900360640190fd5b600980548701905560005b86811015611c2257600a8054600101908190558515611ba657807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b60008181526015602090815260409182902080546001600160a01b031916331790558151601f8701829004820281018201909252858252611c08918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b600090815260166020526040902060019081905501611b2b565b506000979650505050505050565b600f54600090600160a01b900461ffff16600314611c8e576040805162461bcd60e51b8152602060048201526016602482015275141d589b1a58c814d85b195cc8125cc810db1bdcd95960521b604482015290519081900360640190fd5b34600e54870214611cd5576040805162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908119d5b9960a21b604482015290519081900360640190fd5b600854861115611d21576040805162461bcd60e51b815260206004820152601260248201527113585e08151bdad95b8814195c88135a5b9d60721b604482015290519081900360640190fd5b60045486600954011115611d6f576040805162461bcd60e51b815260206004820152601060248201526f13585e08151bdad95b88135a5b9d195960821b604482015290519081900360640190fd5b6007546001600160a01b03881660009081526014602052604090205487011115611dd5576040805162461bcd60e51b815260206004820152601260248201527126b0bc102a37b5b2b7102832b9102ab9b2b960711b604482015290519081900360640190fd5b60098054870190556001600160a01b03871660009081526014602052604081208054880190555b86811015611c22576000600554611e11613275565b019050611e1c613291565b8515611e8457807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b60008181526015602090815260409182902080546001600160a01b031916331790558151601f8701829004820281018201909252858252611ee6918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b600090815260166020526040902060019081905501611dfc565b60126020526000908152604090205481565b611f1a612413565b611f59576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b611fab612413565b611fea576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b611ff38161329c565b50565b6003546001600160a01b03165b90565b600f54600090600160a01b900461ffff16600114806120325750600f54600160a01b900461ffff166002145b612078576040805162461bcd60e51b8152602060048201526012602482015271141c995cd85b195cc81a5cc818db1bdcd95960721b604482015290519081900360640190fd5b600f54600160a01b900461ffff166001141561214257600b546001600160a01b038816600090815260126020526040902054870111156120f6576040805162461bcd60e51b815260206004820152601460248201527326b0bc1019902a37b5b2b7102832b9102ab9b2b960611b604482015290519081900360640190fd5b34600c5487021461213d576040805162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908119d5b9960a21b604482015290519081900360640190fd5b612207565b600f54600160a01b900461ffff166002141561220757600b546001600160a01b038816600090815260136020526040902054870111156121c0576040805162461bcd60e51b815260206004820152601460248201527326b0bc1019902a37b5b2b7102832b9102ab9b2b960611b604482015290519081900360640190fd5b34600d54870214612207576040805162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908119d5b9960a21b604482015290519081900360640190fd5b61224f612213336132af565b86868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061287092505050565b612258336132af565b906122e15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122a657818101518382015260200161228e565b50505050905090810190601f1680156122d35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506009805487019055600f54600160a01b900461ffff1660011415612323576001600160a01b0387166000908152601260205260409020805487019055612358565b600f54600160a01b900461ffff1660021415612358576001600160a01b03871660009081526013602052604090208054870190555b6001600160a01b03871660009081526014602052604081208054880190555b86811015611c2257600060055461238c613275565b019050612397613291565b60008181526015602090815260409182902080546001600160a01b031916331790558151601f87018290048202810182019092528582526123f9918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b600090815260166020526040902060019081905501612377565b6003546000906001600160a01b031661242a613422565b6001600160a01b031614905090565b6040805181815260608181018352916000918391602082018180388339019050509050600091505b80518260ff16101561252957600084600260ff85160460ff166020811061248457fe5b1a600f1690506000600486600260ff87160460ff16602081106124a357fe5b1a60f81b6001600160f81b031916901c60f81c90506124c182612844565b838560ff16815181106124d057fe5b60200101906001600160f81b031916908160001a9053508360010193506124f681612844565b838560ff168151811061250557fe5b60200101906001600160f81b031916908160001a9053505060019092019150612461565b9392505050565b600061253a612413565b612579576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b600454866009540111156125c7576040805162461bcd60e51b815260206004820152601060248201526f13585e08151bdad95b88135a5b9d195960821b604482015290519081900360640190fd5b600980548701905560005b86811015611c2257600a805460010190819055851561264d57807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b888860405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a25b60008181526015602090815260409182902080546001600160a01b031916331790558151601f87018290048202810182019092528582526126af918b9184916001918a908a90819084018382808284376000920191909152506131d592505050565b6000908152601660205260409020600190819055016125d2565b6018805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561162e5780601f106116035761010080835404028352916020019161162e565b60008060008061273385612815565b604080516000815260208082018084528c905260ff8616828401526060820185905260808201849052915194975092955090935060019260a080840193601f198301929081900390910190855afa158015612792573d6000803e3d6000fd5b5050604051601f190151979650505050505050565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6000806000835160411461282857600080fd5b5050506020810151604082015160609092015160001a92909190565b6000600a8260ff16101561285f57506030810160f81b6115a3565b506057810160f81b6115a3565b4790565b600080836040516020018082805190602001908083835b602083106128a65780518252601f199092019160209182019101612887565b51815160209384036101000a60001901801990921691161790526040805192909401828103601f190183529093528051920191909120600f549094506001600160a01b031692506128fb915083905085612724565b6001600160a01b031614949350505050565b60005b83518110156129e657600084828151811061292757fe5b602090810291909101810151600081815260159092526040909120549091506001600160a01b0316331461298c5760405162461bcd60e51b815260040180806020018281038252602f815260200180613d4f602f913960400191505060405180910390fd5b600084838151811061299a57fe5b602002602001015190506129ca81601660008581526020019081526020016000205461342690919063ffffffff16565b6000928352601660205260409092209190915550600101612910565b506129f384848484613479565b50505050565b60136020526000908152604090205481565b60009081526016602052604090205490565b6015602052600090815260409020546001600160a01b031681565b80516000908290612a4d5750600090506115a3565b50506020015190565b6001600160a01b038216612a9b5760405162461bcd60e51b815260040180806020018281038252602c815260200180613f7c602c913960400191505060405180910390fd5b60005b8151811015612ad2576000828281518110612ab557fe5b60200260200101519050612ac9848261364d565b50600101612a9e565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b336001600160a01b0386161480612b215750612b218533612ad7565b612b5c5760405162461bcd60e51b815260040180806020018281038252602a815260200180613da4602a913960400191505060405180910390fd5b6001600160a01b038416612ba15760405162461bcd60e51b815260040180806020018281038252602b815260200180613d24602b913960400191505060405180910390fd5b612bad858585856136d3565b61187285858585856137bb565b612bc2612413565b612c01576040805162461bcd60e51b81526020600482018190526024820152600080516020613e58833981519152604482015290519081900360640190fd5b611ff38161393d565b6000908152601560205260409020546001600160a01b0316151590565b606081612c4c57506040805180820190915260018152600360fc1b60208201526115a3565b8160005b8115612c6457600101600a82049150612c50565b6060816040519080825280601f01601f191660200182016040528015612c91576020820181803883390190505b50905060001982015b8515612cdf57600a860660300160f81b82828060019003935081518110612cbd57fe5b60200101906001600160f81b031916908160001a905350600a86049550612c9a565b50949350505050565b606061252983836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506139de565b8051825114612d645760405162461bcd60e51b8152600401808060200182810382526035815260200180613dce6035913960400191505060405180910390fd5b815160005b81811015612eee57612ddf838281518110612d8057fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612dba57fe5b6020026020010151815260200190815260200160002054613bf290919063ffffffff16565b600080886001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612e1157fe5b6020026020010151815260200190815260200160002081905550612e99838281518110612e3a57fe5b6020026020010151600080886001600160a01b03166001600160a01b031681526020019081526020016000206000878581518110612e7457fe5b602002602001015181526020019081526020016000205461342690919063ffffffff16565b600080876001600160a01b03166001600160a01b031681526020019081526020016000206000868481518110612ecb57fe5b602090810291909101810151825281019190915260400160002055600101612d69565b50836001600160a01b0316856001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612f74578181015183820152602001612f5c565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612fb3578181015183820152602001612f9b565b5050505090500194505050505060405180910390a45050505050565b612fe1846001600160a01b0316613c4f565b15611872576000846001600160a01b031663bc197c8133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b8381101561308357818101518382015260200161306b565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156130c25781810151838201526020016130aa565b50505050905001848103825285818151815260200191508051906020019080838360005b838110156130fe5781810151838201526020016130e6565b50505050905090810190601f16801561312b5780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b15801561315057600080fd5b505af1158015613164573d6000803e3d6000fd5b505050506040513d602081101561317a57600080fd5b505190506001600160e01b0319811663bc197c8160e01b146131cd5760405162461bcd60e51b815260040180806020018281038252603f815260200180613f03603f913960400191505060405180910390fd5b505050505050565b6001600160a01b038416600090815260208181526040808320868452909152902054613207908363ffffffff61342616565b6001600160a01b038516600081815260208181526040808320888452825280832094909455835187815290810186905283519293919233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62928290030190a46129f36000858585856137bb565b60065460009061328c90600163ffffffff61342616565b905090565b600680546001019055565b80516118fa906002906020840190613c8b565b604080518082018252601081526f181899199a1a9b1b9c1cb0b131b232b360811b60208201528151602a80825260608281019094526001600160a01b03851692918491602082018180388339019050509050600360fc1b8160008151811061331357fe5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061333c57fe5b60200101906001600160f81b031916908160001a90535060005b6014811015612cdf578260048583600c016020811061337157fe5b1a60f81b6001600160f81b031916901c60f81c60ff168151811061339157fe5b602001015160f81c60f81b8282600202600201815181106133ae57fe5b60200101906001600160f81b031916908160001a905350828482600c01602081106133d557fe5b825191901a600f169081106133e657fe5b602001015160f81c60f81b82826002026003018151811061340357fe5b60200101906001600160f81b031916908160001a905350600101613356565b3390565b600082820183811015612529576040805162461bcd60e51b8152602060048201526016602482015275536166654d617468236164643a204f564552464c4f5760501b604482015290519081900360640190fd5b81518351146134b95760405162461bcd60e51b8152600401808060200182810382526030815260200180613ed36030913960400191505060405180910390fd5b825160005b818110156135645761350f8482815181106134d557fe5b6020026020010151600080896001600160a01b03166001600160a01b031681526020019081526020016000206000888581518110612e7457fe5b600080886001600160a01b03166001600160a01b03168152602001908152602001600020600087848151811061354157fe5b6020908102919091018101518252810191909152604001600020556001016134be565b50846001600160a01b031660006001600160a01b0316336001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156135eb5781810151838201526020016135d3565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561362a578181015183820152602001613612565b5050505090500194505050505060405180910390a4611872600086868686612fcf565b60008181526015602052604090205481906001600160a01b031633146136a45760405162461bcd60e51b8152600401808060200182810382526031815260200180613fa86031913960400191505060405180910390fd5b50600090815260156020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038416600090815260208181526040808320858452909152902054613705908263ffffffff613bf216565b6001600160a01b038086166000908152602081815260408083208784528252808320949094559186168152808252828120858252909152205461374e908263ffffffff61342616565b6001600160a01b03808516600081815260208181526040808320888452825291829020949094558051868152938401859052805191939288169233927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62929181900390910190a450505050565b6137cd846001600160a01b0316613c4f565b15611872576000846001600160a01b031663f23a6e6133888787876040518663ffffffff1660e01b815260040180866001600160a01b03166001600160a01b03168152602001856001600160a01b03166001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613870578181015183820152602001613858565b50505050905090810190601f16801561389d5780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156138c057600080fd5b505af11580156138d4573d6000803e3d6000fd5b505050506040513d60208110156138ea57600080fd5b505190506001600160e01b0319811663f23a6e6160e01b146131cd5760405162461bcd60e51b815260040180806020018281038252603a815260200180613f42603a913960400191505060405180910390fd5b6001600160a01b0381166139825760405162461bcd60e51b8152600401808060200182810382526026815260200180613d7e6026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015613a32576020820181803883390190505b509050806000805b8851811015613a8b57888181518110613a4f57fe5b602001015160f81c60f81b838380600101945081518110613a6c57fe5b60200101906001600160f81b031916908160001a905350600101613a3a565b5060005b8751811015613ae057878181518110613aa457fe5b602001015160f81c60f81b838380600101945081518110613ac157fe5b60200101906001600160f81b031916908160001a905350600101613a8f565b5060005b8651811015613b3557868181518110613af957fe5b602001015160f81c60f81b838380600101945081518110613b1657fe5b60200101906001600160f81b031916908160001a905350600101613ae4565b5060005b8551811015613b8a57858181518110613b4e57fe5b602001015160f81c60f81b838380600101945081518110613b6b57fe5b60200101906001600160f81b031916908160001a905350600101613b39565b5060005b8451811015613bdf57848181518110613ba357fe5b602001015160f81c60f81b838380600101945081518110613bc057fe5b60200101906001600160f81b031916908160001a905350600101613b8e565b50909d9c50505050505050505050505050565b600082821115613c49576040805162461bcd60e51b815260206004820152601760248201527f536166654d617468237375623a20554e444552464c4f57000000000000000000604482015290519081900360640190fd5b50900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590613c835750808214155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613ccc57805160ff1916838001178555613cf9565b82800160010185558215613cf9579182015b82811115613cf9578251825591602001919060010190613cde565b50613d05929150613d09565b5090565b61200391905b80821115613d055760008155600101613d0f56fe4552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f524543495049454e54455243313135355472616461626c652362617463684d696e743a204f4e4c595f43524541544f525f414c4c4f5745444f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433131353523736166655472616e7366657246726f6d3a20494e56414c49445f4f50455241544f5245524331313535235f7361666542617463685472616e7366657246726f6d3a20494e56414c49445f4152524159535f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f524543495049454e544552433732315472616461626c65237572693a204e4f4e4558495354454e545f544f4b454e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135352362616c616e63654f6642617463683a20494e56414c49445f41525241595f4c454e47544845524331313535237361666542617463685472616e7366657246726f6d3a20494e56414c49445f4f50455241544f52455243313135354d696e744275726e2362617463684d696e743a20494e56414c49445f4152524159535f4c454e47544845524331313535235f63616c6c6f6e45524331313535426174636852656365697665643a20494e56414c49445f4f4e5f524543454956455f4d45535341474545524331313535235f63616c6c6f6e4552433131353552656365697665643a20494e56414c49445f4f4e5f524543454956455f4d455353414745455243313135355472616461626c652373657443726561746f723a20494e56414c49445f414444524553532e455243313135355472616461626c652363726561746f724f6e6c793a204f4e4c595f43524541544f525f414c4c4f574544a265627a7a72315820bc36d5b3bf5213092f6774de5b580a5aa8e5bab2fad176af32ec3d2e317554e664736f6c63430005110032

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000a48756e6e7942756e6e7900000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): HunnyBunny

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 48756e6e7942756e6e7900000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50234:237:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28223:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28223:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28223:127:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;30198:240;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30198:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30198:240:0;-1:-1:-1;;;;;;30198:240:0;;:::i;:::-;;;;;;;;;;;;;;;;;;37881:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37881:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37881:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37259:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37259:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38631:239;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38631:239:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38631:239:0;;:::i;37664:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37664:41:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37664:41:0;-1:-1:-1;;;;;37664:41:0;;:::i;37809:47::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37809:47:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37809:47:0;;:::i;46412:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46412:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46412:120:0;-1:-1:-1;;;;;46412:120:0;;:::i;:::-;;23400:511;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23400:511:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;23400:511:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;23400:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23400:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23400:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;23400:511:0;;;;;;;;-1:-1:-1;23400:511:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;23400:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23400:511:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;23400:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;23400:511:0;;;;;;;;-1:-1:-1;23400:511:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;23400:511:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23400:511:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;23400:511:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;23400:511:0;;-1:-1:-1;23400:511:0;;-1:-1:-1;;;;;23400:511:0:i;43860:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43860:122:0;;;:::i;46309:97::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46309:97:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46309:97:0;;;;:::i;28638:500::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28638:500:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28638:500:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;28638:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28638:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28638:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28638:500:0;;;;;;;;-1:-1:-1;28638:500:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;28638:500:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;28638:500:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;28638:500:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;28638:500:0;;-1:-1:-1;28638:500:0;;-1:-1:-1;;;;;28638:500:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;28638:500:0;;;;;;;;;;;;;;;;;40539:317;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40539:317:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40539:317:0;-1:-1:-1;;;;;40539:317:0;;:::i;39931:601::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39931:601:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;39931:601:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39931:601:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39931:601:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39931:601:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39931:601:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39931:601:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;39931:601:0;;-1:-1:-1;39931:601:0;-1:-1:-1;39931:601:0;:::i;45318:985::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;45318:985:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45318:985:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45318:985:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;45318:985:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45318:985:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45318:985:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;45318:985:0;;-1:-1:-1;45318:985:0;-1:-1:-1;45318:985:0;:::i;37422:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37422:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37422:50:0;-1:-1:-1;;;;;37422:50:0;;:::i;2994:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2994:140:0;;;:::i;39286:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39286:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39286:143:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39286:143:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39286:143:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39286:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;39286:143:0;;-1:-1:-1;39286:143:0;;-1:-1:-1;;;;;39286:143:0:i;2183:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2183:79:0;;;:::i;:::-;;;;-1:-1:-1;;;;;2183:79:0;;;;;;;;;;;;;;43989:1321;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;43989:1321:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43989:1321:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43989:1321:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43989:1321:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43989:1321:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43989:1321:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;43989:1321:0;;-1:-1:-1;43989:1321:0;-1:-1:-1;43989:1321:0;:::i;2549:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2549:94:0;;;:::i;41924:427::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41924:427:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41924:427:0;;:::i;46542:606::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46542:606:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;46542:606:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;46542:606:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46542:606:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46542:606:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;46542:606:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46542:606:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;46542:606:0;;-1:-1:-1;46542:606:0;-1:-1:-1;46542:606:0;:::i;37926:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37926:20:0;;;:::i;43193:265::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43193:265:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43193:265:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43193:265:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43193:265:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43193:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;43193:265:0;;-1:-1:-1;43193:265:0;;-1:-1:-1;;;;;43193:265:0:i;27229:227::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27229:227:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27229:227:0;;;;;;;;;;:::i;42642:545::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42642:545:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42642:545:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;42642:545:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42642:545:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;42642:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;42642:545:0;;-1:-1:-1;42642:545:0;;-1:-1:-1;;;;;42642:545:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43680:175;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43680:175:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43680:175:0;;;;:::i;:::-;;;;-1:-1:-1;;;;;;43680:175:0;;;;;;;;;;;;;;47156:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47156:106:0;;;:::i;43466:208::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43466:208:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43466:208:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;43466:208:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43466:208:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43466:208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;43466:208:0;;;;;;;;-1:-1:-1;43466:208:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;43466:208:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;43466:208:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;43466:208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;43466:208:0;;-1:-1:-1;43466:208:0;;-1:-1:-1;;;;;43466:208:0:i;47569:473::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47569:473:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;47569:473:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;47569:473:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47569:473:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;47569:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;47569:473:0;;;;;;;;-1:-1:-1;47569:473:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;47569:473:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47569:473:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;47569:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;47569:473:0;;;;;;;;-1:-1:-1;47569:473:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;47569:473:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47569:473:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47569:473:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;47569:473:0;;-1:-1:-1;47569:473:0;;-1:-1:-1;;;;;47569:473:0:i;37543:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37543:50:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37543:50:0;-1:-1:-1;;;;;37543:50:0;;:::i;39040:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39040:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39040:110:0;;:::i;37760:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37760:44:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37760:44:0;;:::i;42355:282::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42355:282:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42355:282:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;42355:282:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;42355:282:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;42355:282:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;42355:282:0;;-1:-1:-1;42355:282:0;;-1:-1:-1;;;;;42355:282:0:i;48223:279::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48223:279:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;48223:279:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;48223:279:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48223:279:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;48223:279:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;48223:279:0;;-1:-1:-1;48223:279:0;;-1:-1:-1;;;;;48223:279:0:i;27715:155::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27715:155:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27715:155:0;;;;;;;;;;:::i;22462:545::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22462:545:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;22462:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;22462:545:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;22462:545:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;22462:545:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;22462:545:0;;-1:-1:-1;22462:545:0;;-1:-1:-1;;;;;22462:545:0:i;3289:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3289:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3289:109:0;-1:-1:-1;;;;;3289:109:0;;:::i;28223:127::-;-1:-1:-1;;;;;28323:16:0;;;;28297:7;28323:16;;;;;;;;;;;:21;;;;;;;;;28223:127::o;30198:240::-;30269:4;-1:-1:-1;;;;;;30286:42:0;;-1:-1:-1;;;30286:42:0;;:98;;-1:-1:-1;;;;;;;30341:43:0;;-1:-1:-1;;;30341:43:0;30286:98;30282:132;;;-1:-1:-1;30402:4:0;30395:11;;30282:132;-1:-1:-1;30427:5:0;30198:240;;;;:::o;37881:18::-;;;;;;;;;;;;;;;-1:-1:-1;;37881:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37259:28::-;;;-1:-1:-1;;;37259:28:0;;;;;:::o;38631:239::-;38688:13;38718:12;38726:3;38718:7;:12::i;:::-;38710:62;;;;-1:-1:-1;;;38710:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38812:15;38786:78;;;;;;;-1:-1:-1;;38786:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38812:15;;38786:78;;38812:15;38786:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38836:21;38853:3;38836:16;:21::i;:::-;38786:17;:78::i;:::-;38779:85;38631:239;-1:-1:-1;;38631:239:0:o;37664:41::-;;;;;;;;;;;;;:::o;37809:47::-;;;;;;;;;;;;;:::o;46412:120::-;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;46501:13;:25;;-1:-1:-1;;;;;;46501:25:0;-1:-1:-1;;;;;46501:25:0;;;;;;;;;;46412:120::o;23400:511::-;23581:10;-1:-1:-1;;;;;23581:19:0;;;;23580:60;;;23605:35;23622:5;23629:10;23605:16;:35::i;:::-;23572:120;;;;-1:-1:-1;;;23572:120:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23707:17:0;;23699:78;;;;-1:-1:-1;;;23699:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23786:50;23809:5;23816:3;23821:4;23827:8;23786:22;:50::i;:::-;23843:62;23871:5;23878:3;23883:4;23889:8;23899:5;23843:27;:62::i;:::-;23400:511;;;;;:::o;43860:122::-;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;43946:13;;:31;;43920:21;;-1:-1:-1;;;;;43946:13:0;;:31;;;;;43920:21;;43902:15;43946:31;43902:15;43946:31;43920:21;43946:13;:31;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43946:31:0;2452:1;43860:122::o;46309:97::-;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;46382:10;:18;;;;;;-1:-1:-1;;;46382:18:0;-1:-1:-1;;;;46382:18:0;;;;;;;;;46309:97::o;28638:500::-;28737:16;28791:4;:11;28773:7;:14;:29;28765:86;;;;-1:-1:-1;;;28765:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28878:30;28925:7;:14;28911:29;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;28911:29:0;-1:-1:-1;28878:62:0;-1:-1:-1;28999:9:0;28994:110;29018:7;:14;29014:1;:18;28994:110;;;29067:8;:20;29076:7;29084:1;29076:10;;;;;;;;;;;;;;-1:-1:-1;;;;;29067:20:0;-1:-1:-1;;;;;29067:20:0;;;;;;;;;;;;:29;29088:4;29093:1;29088:7;;;;;;;;;;;;;;29067:29;;;;;;;;;;;;29048:13;29062:1;29048:16;;;;;;;;;;;;;;;;;:48;29034:3;;28994:110;;;-1:-1:-1;29119:13:0;28638:500;-1:-1:-1;;;28638:500:0:o;40539:317::-;40645:4;40639:11;;-1:-1:-1;;;;;40665:50:0;;;;-1:-1:-1;;;40744:52:0;40739:2;40732:10;;40725:72;40827:2;40820:10;;40807:24;;40639:11;40619:234::o;39931:601::-;40092:7;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;40145:12;;40127:14;40116:8;;:25;:41;;40108:67;;;;;-1:-1:-1;;;40108:67:0;;;;;;;;;;;;-1:-1:-1;;;40108:67:0;;;;;;;;;;;;;;;40184:4;:22;;;;;;:4;40219:293;40243:14;40239:1;:18;40219:293;;;40273:8;:10;;;;;;;;40329:22;;40325:68;;40379:3;40369:14;40373:4;;40369:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;40369:14:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;40369:14:0;;;;-1:-1:-1;40369:14:0;;-1:-1:-1;;;;40369:14:0;40325:68;40405:13;;;;:8;:13;;;;;;;;;:26;;-1:-1:-1;;;;;;40405:26:0;40421:10;40405:26;;;40440:35;;;;;;;;;;;;;;;;;;;;;;40446:13;;40414:3;;40405:26;;40469:5;;;;;;40440:35;;40469:5;;;;40440:35;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;40440:5:0;;-1:-1:-1;;;40440:35:0:i;:::-;40484:16;;;;:11;:16;;;;;40503:1;40484:20;;;;40259:3;40219:293;;;-1:-1:-1;40525:1:0;;39931:601;-1:-1:-1;;;;;;;39931:601:0:o;45318:985::-;45505:10;;45481:7;;-1:-1:-1;;;45505:10:0;;;;45519:1;45505:15;45497:51;;;;;-1:-1:-1;;;45497:51:0;;;;;;;;;;;;-1:-1:-1;;;45497:51:0;;;;;;;;;;;;;;;45600:9;45580:16;;45563:14;:33;:46;45555:72;;;;;-1:-1:-1;;;45555:72:0;;;;;;;;;;;;-1:-1:-1;;;45555:72:0;;;;;;;;;;;;;;;45660:16;;45642:14;:34;;45634:65;;;;;-1:-1:-1;;;45634:65:0;;;;;;;;;;;;-1:-1:-1;;;45634:65:0;;;;;;;;;;;;;;;45739:16;;45721:14;45714:4;;:21;:41;;45706:70;;;;;-1:-1:-1;;;45706:70:0;;;;;;;;;;;;-1:-1:-1;;;45706:70:0;;;;;;;;;;;;;;;45833:16;;-1:-1:-1;;;;;45791:21:0;;;;;;:6;:21;;;;;;:38;;:58;;45783:89;;;;;-1:-1:-1;;;45783:89:0;;;;;;;;;;;;-1:-1:-1;;;45783:89:0;;;;;;;;;;;;;;;45881:4;:22;;;;;;-1:-1:-1;;;;;45910:21:0;;45881:4;45910:21;;;:6;:21;;;;;:39;;;;;;45958:325;45982:14;45978:1;:18;45958:325;;;46012:11;46046:12;;46026:17;:15;:17::i;:::-;:32;46012:46;;46067:23;:21;:23::i;:::-;46104:22;;46100:66;;46153:3;46143:14;46147:4;;46143:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;46143:14:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;46143:14:0;;;;-1:-1:-1;46143:14:0;;-1:-1:-1;;;;46143:14:0;46100:66;46176:13;;;;:8;:13;;;;;;;;;:26;;-1:-1:-1;;;;;;46176:26:0;46192:10;46176:26;;;46211:35;;;;;;;;;;;;;;;;;;;;;;46217:13;;46185:3;;46176:26;;46240:5;;;;;;46211:35;;46240:5;;;;46211:35;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;46211:5:0;;-1:-1:-1;;;46211:35:0:i;:::-;46255:16;;;;:11;:16;;;;;46274:1;46255:20;;;;45998:3;45958:325;;37422:50;;;;;;;;;;;;;:::o;2994:140::-;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;3077:6;;3056:40;;3093:1;;-1:-1:-1;;;;;3077:6:0;;3056:40;;3093:1;;3056:40;3107:6;:19;;-1:-1:-1;;;;;;3107:19:0;;;2994:140::o;39286:143::-;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;39383:40;39403:19;39383;:40::i;:::-;39286:143;:::o;2183:79::-;2248:6;;-1:-1:-1;;;;;2248:6:0;2183:79;;:::o;43989:1321::-;44172:10;;44148:7;;-1:-1:-1;;;44172:10:0;;;;44186:1;44172:15;;:34;;-1:-1:-1;44191:10:0;;-1:-1:-1;;;44191:10:0;;;;44205:1;44191:15;44172:34;44164:65;;;;;-1:-1:-1;;;44164:65:0;;;;;;;;;;;;-1:-1:-1;;;44164:65:0;;;;;;;;;;;;;;;44239:10;;-1:-1:-1;;;44239:10:0;;;;44253:1;44239:15;44236:437;;;44323:16;;-1:-1:-1;;;;;44272:30:0;;;;;;:15;:30;;;;;;:47;;:67;;44264:100;;;;;-1:-1:-1;;;44264:100:0;;;;;;;;;;;;-1:-1:-1;;;44264:100:0;;;;;;;;;;;;;;;44418:9;44400:14;;44383;:31;:44;44375:69;;;;;-1:-1:-1;;;44375:69:0;;;;;;;;;;;;-1:-1:-1;;;44375:69:0;;;;;;;;;;;;;;;44236:437;;;44460:10;;-1:-1:-1;;;44460:10:0;;;;44474:1;44460:15;44457:216;;;44544:16;;-1:-1:-1;;;;;44493:30:0;;;;;;:15;:30;;;;;;:47;;:67;;44485:100;;;;;-1:-1:-1;;;44485:100:0;;;;;;;;;;;;-1:-1:-1;;;44485:100:0;;;;;;;;;;;;;;;44639:9;44621:14;;44604;:31;:44;44596:69;;;;;-1:-1:-1;;;44596:69:0;;;;;;;;;;;;-1:-1:-1;;;44596:69:0;;;;;;;;;;;;;;;44693:46;44705:27;44721:10;44705:15;:27::i;:::-;44734:4;;44693:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44693:11:0;;-1:-1:-1;;;44693:46:0:i;:::-;44741:27;44757:10;44741:15;:27::i;:::-;44685:84;;;;;-1:-1:-1;;;44685:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;44685:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44782:4:0;:22;;;;;;44816:10;;-1:-1:-1;;;44816:10:0;;;;-1:-1:-1;44816:15:0;44813:173;;;-1:-1:-1;;;;;44841:30:0;;;;;;:15;:30;;;;;:48;;;;;;44813:173;;;44905:10;;-1:-1:-1;;;44905:10:0;;;;44919:1;44905:15;44902:84;;;-1:-1:-1;;;;;44930:30:0;;;;;;:15;:30;;;;;:48;;;;;;44902:84;-1:-1:-1;;;;;44992:21:0;;;;;;:6;:21;;;;;:39;;;;;;45040:248;45064:14;45060:1;:18;45040:248;;;45094:11;45128:12;;45108:17;:15;:17::i;:::-;:32;45094:46;;45149:23;:21;:23::i;:::-;45181:13;;;;:8;:13;;;;;;;;;:26;;-1:-1:-1;;;;;;45181:26:0;45197:10;45181:26;;;45216:35;;;;;;;;;;;;;;;;;;;;;;45222:13;;45190:3;;45181:26;;45245:5;;;;;;45216:35;;45245:5;;;;45216:35;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;45216:5:0;;-1:-1:-1;;;45216:35:0:i;:::-;45260:16;;;;:11;:16;;;;;45279:1;45260:20;;;;45080:3;45040:248;;2549:94;2629:6;;2589:4;;-1:-1:-1;;;;;2629:6:0;2613:12;:10;:12::i;:::-;-1:-1:-1;;;;;2613:22:0;;2606:29;;2549:94;:::o;41924:427::-;42064:2;42054:13;;;;;41988;42054;;;;;41988;42010:7;;41988:13;;42054;;;21:6:-1;;104:10;42054:13:0;87:34:-1;135:17;;-1:-1;42054:13:0;42028:39;;42083:1;42079:5;;42074:242;42090:10;:17;42086:1;:21;;;42074:242;;;42127:8;42144;42155:1;42153:3;;;;42144:13;;;;;;;;;;42160:4;42138:27;;-1:-1:-1;42176:8:0;42210:1;42193:8;42204:1;42138:27;42202:3;;;42193:13;;;;;;;;;;;;-1:-1:-1;;;;;42193:18:0;;;;42187:25;;42176:36;;42241:10;42248:2;42241:6;:10::i;:::-;42225;42236:1;42225:13;;;;;;;;;;;;;:26;-1:-1:-1;;;;;42225:26:0;;;;;;;;;42266:1;42270;42266:5;42262:9;;42298:10;42305:2;42298:6;:10::i;:::-;42282;42293:1;42282:13;;;;;;;;;;;;;:26;-1:-1:-1;;;;;42282:26:0;;;;;;;;-1:-1:-1;;42109:3:0;;;;;-1:-1:-1;42074:242:0;;;42336:10;41924:427;-1:-1:-1;;;41924:427:0:o;46542:606::-;46705:7;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;46754:16;;46736:14;46729:4;;:21;:41;;46721:70;;;;;-1:-1:-1;;;46721:70:0;;;;;;;;;;;;-1:-1:-1;;;46721:70:0;;;;;;;;;;;;;;;46800:4;:22;;;;;;:4;46835:293;46859:14;46855:1;:18;46835:293;;;46889:8;:10;;;;;;;;46945:22;;46941:68;;46995:3;46985:14;46989:4;;46985:14;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;46985:14:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;46985:14:0;;;;-1:-1:-1;46985:14:0;;-1:-1:-1;;;;46985:14:0;46941:68;47021:13;;;;:8;:13;;;;;;;;;:26;;-1:-1:-1;;;;;;47021:26:0;47037:10;47021:26;;;47056:35;;;;;;;;;;;;;;;;;;;;;;47062:13;;47030:3;;47021:26;;47085:5;;;;;;47056:35;;47085:5;;;;47056:35;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;47056:5:0;;-1:-1:-1;;;47056:35:0:i;:::-;47100:16;;;;:11;:16;;;;;47119:1;47100:20;;;;46875:3;46835:293;;37926:20;;;;;;;;;;;;;;;-1:-1:-1;;37926:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43193:265;43296:7;43320;43337:9;43356;43389:19;43404:3;43389:14;:19::i;:::-;43425:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43377:31;;-1:-1:-1;43377:31:0;;-1:-1:-1;43377:31:0;;-1:-1:-1;43425:27:0;;;;;;;-1:-1:-1;;43425:27:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;43425:27:0;;-1:-1:-1;;43425:27:0;;;43193:265;-1:-1:-1;;;;;;;43193:265:0:o;27229:227::-;27356:10;27346:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;27346:32:0;;;;;;;;;;;;:44;;-1:-1:-1;;27346:44:0;;;;;;;;;;27402:48;;;;;;;27346:32;;27356:10;27402:48;;;;;;;;;;;27229:227;;:::o;42642:545::-;42729:5;42736:7;42745;42776:3;:10;42790:2;42776:16;42768:25;;;;;;-1:-1:-1;;;42960:2:0;42951:12;;42945:19;43028:2;43019:12;;43013:19;43133:2;43124:12;;;43118:19;42805:9;43110:28;;42945:19;;43013;42642:545::o;43680:175::-;43731:4;43756:2;43747:6;:11;;;43744:108;;;-1:-1:-1;43792:2:0;43783:11;;43778:17;;43771:24;;43744:108;-1:-1:-1;43841:2:0;43832:11;;43827:17;;43820:24;;47156:106;47233:21;47156:106;:::o;43466:208::-;43546:4;43558:15;43603:5;43586:23;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;43586:23:0;;;;;;;26:21:-1;;;-1:-1;;22:32;6:49;;43586:23:0;;;43576:34;;;;;;;;43656:13;;43576:34;;-1:-1:-1;;;;;;43656:13:0;;-1:-1:-1;43625:27:0;;-1:-1:-1;43576:34:0;;-1:-1:-1;43648:3:0;43625:13;:27::i;:::-;-1:-1:-1;;;;;43625:44:0;;;43466:208;-1:-1:-1;;;;43466:208:0:o;47569:473::-;47718:9;47713:276;47737:4;:11;47733:1;:15;47713:276;;;47764:11;47778:4;47783:1;47778:7;;;;;;;;;;;;;;;;;;;47802:13;;;;:8;:13;;;;;;;;47778:7;;-1:-1:-1;;;;;;47802:13:0;47819:10;47802:27;47794:87;;;;-1:-1:-1;;;47794:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47890:16;47909:11;47921:1;47909:14;;;;;;;;;;;;;;47890:33;;47951:30;47972:8;47951:11;:16;47963:3;47951:16;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;47932:16;;;;:11;:16;;;;;;:49;;;;-1:-1:-1;47750:3:0;;47713:276;;;;47995:41;48006:3;48011:4;48017:11;48030:5;47995:10;:41::i;:::-;47569:473;;;;:::o;37543:50::-;;;;;;;;;;;;;:::o;39040:110::-;39105:7;39128:16;;;:11;:16;;;;;;;39040:110::o;37760:44::-;;;;;;;;;;;;-1:-1:-1;;;;;37760:44:0;;:::o;42355:282::-;42505:26;;42423:14;;42487:6;;42501:66;;-1:-1:-1;42556:3:0;;-1:-1:-1;42549:10:0;;42501:66;-1:-1:-1;;42623:2:0;42611:15;42605:22;;42584:50::o;48223:279::-;-1:-1:-1;;;;;48316:17:0;;48308:74;;;;-1:-1:-1;;;48308:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48394:9;48389:108;48413:4;:11;48409:1;:15;48389:108;;;48440:10;48453:4;48458:1;48453:7;;;;;;;;;;;;;;48440:20;;48469;48481:3;48486:2;48469:11;:20::i;:::-;-1:-1:-1;48426:3:0;;48389:108;;;;48223:279;;:::o;27715:155::-;-1:-1:-1;;;;;27836:17:0;;;27802:15;27836:17;;;:9;:17;;;;;;;;:28;;;;;;;;;;;;;;;27715:155::o;22462:545::-;22597:10;-1:-1:-1;;;;;22597:19:0;;;;22596:60;;;22621:35;22638:5;22645:10;22621:16;:35::i;:::-;22588:115;;;;-1:-1:-1;;;22588:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22718:17:0;;22710:72;;;;-1:-1:-1;;;22710:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22896:43;22914:5;22921:3;22926;22931:7;22896:17;:43::i;:::-;22946:55;22969:5;22976:3;22981;22986:7;22995:5;22946:22;:55::i;3289:109::-;2395:9;:7;:9::i;:::-;2387:54;;;;;-1:-1:-1;;;2387:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2387:54:0;;;;;;;;;;;;;;;3362:28;3381:8;3362:18;:28::i;49560:116::-;49623:4;49643:13;;;:8;:13;;;;;;-1:-1:-1;;;;;49643:13:0;:27;;;49560:116::o;35624:482::-;35674:27;35718:7;35714:50;;-1:-1:-1;35742:10:0;;;;;;;;;;;;-1:-1:-1;;;35742:10:0;;;;;;35714:50;35783:2;35774:6;35815:69;35822:6;;35815:69;;35845:5;;35870:2;35865:7;;;;35815:69;;;35894:17;35924:3;35914:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;35914:14:0;87:34:-1;135:17;;-1:-1;35914:14:0;-1:-1:-1;35894:34:0;-1:-1:-1;;;35948:7:0;;35966:103;35973:7;;35966:103;;36030:2;36025;:7;36020:2;:12;36009:25;;35997:4;36002:3;;;;;;;35997:9;;;;;;;;;;;:37;-1:-1:-1;;;;;35997:37:0;;;;;;;;-1:-1:-1;36055:2:0;36049:8;;;;35966:103;;;-1:-1:-1;36093:4:0;35624:482;-1:-1:-1;;;;35624:482:0:o;35468:148::-;35546:13;35579:29;35589:2;35593;35579:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;25539:687::-;25696:8;:15;25681:4;:11;:30;25673:96;;;;-1:-1:-1;;;25673:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25836:11;;25816:17;25888:247;25912:9;25908:1;:13;25888:247;;;26013:41;26042:8;26051:1;26042:11;;;;;;;;;;;;;;26013:8;:15;26022:5;-1:-1:-1;;;;;26013:15:0;-1:-1:-1;;;;;26013:15:0;;;;;;;;;;;;:24;26029:4;26034:1;26029:7;;;;;;;;;;;;;;26013:24;;;;;;;;;;;;:28;;:41;;;;:::i;:::-;25986:8;:15;25995:5;-1:-1:-1;;;;;25986:15:0;-1:-1:-1;;;;;25986:15:0;;;;;;;;;;;;:24;26002:4;26007:1;26002:7;;;;;;;;;;;;;;25986:24;;;;;;;;;;;:68;;;;26088:39;26115:8;26124:1;26115:11;;;;;;;;;;;;;;26088:8;:13;26097:3;-1:-1:-1;;;;;26088:13:0;-1:-1:-1;;;;;26088:13:0;;;;;;;;;;;;:22;26102:4;26107:1;26102:7;;;;;;;;;;;;;;26088:22;;;;;;;;;;;;:26;;:39;;;;:::i;:::-;26063:8;:13;26072:3;-1:-1:-1;;;;;26063:13:0;-1:-1:-1;;;;;26063:13:0;;;;;;;;;;;;:22;26077:4;26082:1;26077:7;;;;;;;;;;;;;;;;;;;26063:22;;;;;;;;;;-1:-1:-1;26063:22:0;:64;25923:3;;25888:247;;;;26200:3;-1:-1:-1;;;;;26167:53:0;26193:5;-1:-1:-1;;;;;26167:53:0;26181:10;-1:-1:-1;;;;;26167:53:0;;26205:4;26211:8;26167:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26167:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26167:53:0;;;;;;;;;;;;;;;;;;;25539:687;;;;;:::o;26344:476::-;26550:16;:3;-1:-1:-1;;;;;26550:14:0;;:16::i;:::-;26546:269;;;26577:13;26615:3;-1:-1:-1;;;;;26593:49:0;;26643:10;26655:5;26662:4;26668:8;26678:5;26593:91;;;;;;;;;;;;;-1:-1:-1;;;;;26593:91:0;-1:-1:-1;;;;;26593:91:0;;;;;;-1:-1:-1;;;;;26593:91:0;-1:-1:-1;;;;;26593:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26593:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26593:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26593:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26593:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26593:91:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26593:91:0;;-1:-1:-1;;;;;;;26701:38:0;;-1:-1:-1;;;26701:38:0;26693:114;;;;-1:-1:-1;;;26693:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26546:269;26344:476;;;;;:::o;31174:401::-;-1:-1:-1;;;;;31317:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:31;;31340:7;31317:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;31296:13:0;;:8;:13;;;;;;;;;;;:18;;;;;;;;:52;;;;31381:59;;;;;;;;;;;;;31296:13;;:8;;31396:10;;31381:59;;;;;;;;31507:62;31538:3;31544;31549;31554:7;31563:5;31507:22;:62::i;49817:100::-;49889:15;;49866:7;;49889:22;;49909:1;49889:22;:19;:22;:::i;:::-;49882:29;;49817:100;:::o;49990:72::-;50039:15;:17;;;;;;49990:72::o;19875:123::-;19955:37;;;;:15;;:37;;;;;:::i;40860:456::-;40990:42;;;;;;;;;;;-1:-1:-1;;;40990:42:0;;;;41060:13;;41070:2;41060:13;;;40922;41060;;;;;;-1:-1:-1;;;;;40968:14:0;;;40990:42;40922:13;;41060;;;21:6:-1;;104:10;41060:13:0;87:34:-1;135:17;;-1:-1;41060:13:0;41041:32;;-1:-1:-1;;;41080:3:0;41084:1;41080:6;;;;;;;;;;;:12;-1:-1:-1;;;;;41080:12:0;;;;;;;;;-1:-1:-1;;;41099:3:0;41103:1;41099:6;;;;;;;;;;;:12;-1:-1:-1;;;;;41099:12:0;;;;;;;;-1:-1:-1;41123:6:0;41118:170;41139:2;41135:1;:6;41118:170;;;41172:8;41209:1;41192:5;41198:1;41202:2;41198:6;41192:13;;;;;;;;;;-1:-1:-1;;;;;41192:18:0;;;;41186:25;;41181:31;;41172:41;;;;;;;;;;;;;;;;41159:3;41165:1;41167;41165:3;41163:1;:5;41159:10;;;;;;;;;;;:54;-1:-1:-1;;;;;41159:54:0;;;;;;;;;41237:8;41257:5;41263:1;41267:2;41263:6;41257:13;;;;;;;41237:43;;41257:13;;;41273:4;41251:27;;41237:43;;;;;;;;;;;;;;41224:3;41230:1;41232;41230:3;41228:1;:5;41224:10;;;;;;;;;;;:56;-1:-1:-1;;;;;41224:56:0;;;;;;;;-1:-1:-1;41143:3:0;;41118:170;;880:98;960:10;880:98;:::o;5887:163::-;5945:7;5973:5;;;5993:6;;;;5985:41;;;;;-1:-1:-1;;;5985:41:0;;;;;;;;;;;;-1:-1:-1;;;5985:41:0;;;;;;;;;;;;;;31862:724;32012:8;:15;31997:4;:11;:30;31989:91;;;;-1:-1:-1;;;31989:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32140:11;;32124:13;32191:150;32215:5;32211:1;:9;32191:150;;;32294:39;32321:8;32330:1;32321:11;;;;;;;;;;;;;;32294:8;:13;32303:3;-1:-1:-1;;;;;32294:13:0;-1:-1:-1;;;;;32294:13:0;;;;;;;;;;;;:22;32308:4;32313:1;32308:7;;;;;;;32294:39;32269:8;:13;32278:3;-1:-1:-1;;;;;32269:13:0;-1:-1:-1;;;;;32269:13:0;;;;;;;;;;;;:22;32283:4;32288:1;32283:7;;;;;;;;;;;;;;;;;;;32269:22;;;;;;;;;;-1:-1:-1;32269:22:0;:64;32222:3;;32191:150;;;;32424:3;-1:-1:-1;;;;;32384:60:0;32418:3;-1:-1:-1;;;;;32384:60:0;32398:10;-1:-1:-1;;;;;32384:60:0;;32429:4;32435:8;32384:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32384:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32384:60:0;;;;;;;;;;;;;;;;;;;32511:69;32547:3;32553;32558:4;32564:8;32574:5;32511:27;:69::i;49222:110::-;38080:13;;;;:8;:13;;;;;;49290:3;;-1:-1:-1;;;;;38080:13:0;38097:10;38080:27;38072:89;;;;-1:-1:-1;;;38072:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49307:13:0;;;;:8;:13;;;;;:19;;-1:-1:-1;;;;;;49307:19:0;-1:-1:-1;;;;;49307:19:0;;;;;;;;;;49222:110::o;24315:376::-;-1:-1:-1;;;;;24471:15:0;;:8;:15;;;;;;;;;;;:20;;;;;;;;;:33;;24496:7;24471:33;:24;:33;:::i;:::-;-1:-1:-1;;;;;24448:15:0;;;:8;:15;;;;;;;;;;;:20;;;;;;;;:56;;;;24551:13;;;;;;;;;;;:18;;;;;;;;:31;;24574:7;24551:31;:22;:31;:::i;:::-;-1:-1:-1;;;;;24530:13:0;;;:8;:13;;;;;;;;;;;:18;;;;;;;;;:52;;;;24633;;;;;;;;;;;;;24530:13;;24633:52;;;;24648:10;;24633:52;;;;;;;;;;;24315:376;;;;:::o;24804:429::-;24981:16;:3;-1:-1:-1;;;;;24981:14:0;;:16::i;:::-;24977:251;;;25008:13;25046:3;-1:-1:-1;;;;;25024:44:0;;25069:10;25081:5;25088:3;25093:7;25102:5;25024:84;;;;;;;;;;;;;-1:-1:-1;;;;;25024:84:0;-1:-1:-1;;;;;25024:84:0;;;;;;-1:-1:-1;;;;;25024:84:0;-1:-1:-1;;;;;25024:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25024:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25024:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25024:84:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25024:84:0;;-1:-1:-1;;;;;;;25125:32:0;;-1:-1:-1;;;25125:32:0;25117:103;;;;-1:-1:-1;;;25117:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3504:229;-1:-1:-1;;;;;3578:22:0;;3570:73;;;;-1:-1:-1;;;3570:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3680:6;;3659:38;;-1:-1:-1;;;;;3659:38:0;;;;3680:6;;3659:38;;3680:6;;3659:38;3708:6;:17;;-1:-1:-1;;;;;;3708:17:0;-1:-1:-1;;;;;3708:17:0;;;;;;;;;;3504:229::o;34222:872::-;34354:13;34378:16;34403:2;34378:28;;34415:16;34440:2;34415:28;;34452:16;34477:2;34452:28;;34489:16;34514:2;34489:28;;34526:16;34551:2;34526:28;;34563:19;34648:3;:10;34635:3;:10;34622:3;:10;34609:3;:10;34596:3;:10;:23;:36;:49;:62;34585:74;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;34585:74:0;87:34:-1;135:17;;-1:-1;34585:74:0;-1:-1:-1;34563:96:0;-1:-1:-1;34563:96:0;34711:6;;34730:58;34751:3;:10;34747:1;:14;34730:58;;;34782:3;34786:1;34782:6;;;;;;;;;;;;;;;;34768;34775:3;;;;;;34768:11;;;;;;;;;;;:20;-1:-1:-1;;;;;34768:20:0;;;;;;;;-1:-1:-1;34763:3:0;;34730:58;;;-1:-1:-1;34802:6:0;34797:58;34818:3;:10;34814:1;:14;34797:58;;;34849:3;34853:1;34849:6;;;;;;;;;;;;;;;;34835;34842:3;;;;;;34835:11;;;;;;;;;;;:20;-1:-1:-1;;;;;34835:20:0;;;;;;;;-1:-1:-1;34830:3:0;;34797:58;;;-1:-1:-1;34869:6:0;34864:58;34885:3;:10;34881:1;:14;34864:58;;;34916:3;34920:1;34916:6;;;;;;;;;;;;;;;;34902;34909:3;;;;;;34902:11;;;;;;;;;;;:20;-1:-1:-1;;;;;34902:20:0;;;;;;;;-1:-1:-1;34897:3:0;;34864:58;;;-1:-1:-1;34936:6:0;34931:58;34952:3;:10;34948:1;:14;34931:58;;;34983:3;34987:1;34983:6;;;;;;;;;;;;;;;;34969;34976:3;;;;;;34969:11;;;;;;;;;;;:20;-1:-1:-1;;;;;34969:20:0;;;;;;;;-1:-1:-1;34964:3:0;;34931:58;;;-1:-1:-1;35003:6:0;34998:58;35019:3;:10;35015:1;:14;34998:58;;;35050:3;35054:1;35050:6;;;;;;;;;;;;;;;;35036;35043:3;;;;;;35036:11;;;;;;;;;;;:20;-1:-1:-1;;;;;35036:20:0;;;;;;;;-1:-1:-1;35031:3:0;;34998:58;;;-1:-1:-1;35079:6:0;;34222:872;-1:-1:-1;;;;;;;;;;;;;34222:872:0:o;5644:163::-;5702:7;5731:1;5726;:6;;5718:42;;;;;-1:-1:-1;;;5718:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5779:5:0;;;5644:163::o;16750:673::-;16810:4;17338:20;;16868:66;17374:15;;;;;:42;;;17405:11;17393:8;:23;;17374:42;17366:51;16750:673;-1:-1:-1;;;;16750:673:0:o;50234:237::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50234:237:0;;;-1:-1:-1;50234:237:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://bc36d5b3bf5213092f6774de5b580a5aa8e5bab2fad176af32ec3d2e317554e6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.