Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- PermittableToken
- Optimization enabled
- true
- Compiler version
- v0.4.24+commit.e67f0147
- Optimization runs
- 10
- Verified at
- 2022-08-01T20:37:38.553506Z
Constructor Arguments
00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Arg [0] (string) :
Arg [1] (string) :
Arg [2] (uint8) : 0
contracts/PermittableToken.sol
pragma solidity 0.4.24;
import "./ERC677BridgeToken.sol";
// Note: this contract is still called PermittableToken, but the Permittable
// functionality has been removed as unecessary in the card pay protocol.
// The ___deprecated___ storage slots below were used in that implementation
contract PermittableToken is ERC677BridgeToken {
// solhint-disable-next-line var-name-mixedcase
bytes32 public ___deprecated___DOMAIN_SEPARATOR;
// solhint-disable-next-line var-name-mixedcase
mapping(address => uint256) public ___deprecated___nonces;
// solhint-disable-next-line var-name-mixedcase
mapping(address => mapping(address => uint256)) public ___deprecated___expirations;
// Note: bridged tokens are deployed with a TokenProxy and therefore this constructor is not relevant - the
// intialize method is used instead, but this constructor is used in tests when using a non-proxied contract
// solhint-disable-next-line no-empty-blocks
constructor(string _name, string _symbol, uint8 _decimals) public ERC677BridgeToken(_name, _symbol, _decimals) {}
function transferOwnership(address) public onlyOwner {
revert();
}
}
contracts/libraries/Address.sol
pragma solidity 0.4.24;
import "../upgradeable_contracts/Sacrifice.sol";
/**
* @title Address
* @dev Helper methods for Address type.
*/
library Address {
/**
* @dev Try to send native tokens to the address. If it fails, it will force the transfer by creating a selfdestruct contract
* @param _receiver address that will receive the native tokens
* @param _value the amount of native tokens to send
*/
function safeSendValue(address _receiver, uint256 _value) internal {
if (!_receiver.send(_value)) {
(new Sacrifice).value(_value)(_receiver);
}
}
}
openzeppelin-solidity/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.4.24;
import "./ERC20Basic.sol";
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address _owner, address _spender)
public view returns (uint256);
function transferFrom(address _from, address _to, uint256 _value)
public returns (bool);
function approve(address _spender, uint256 _value) public returns (bool);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
contracts/ERC677BridgeToken.sol
pragma solidity 0.4.24;
import "openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol";
import "openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol";
import "openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol";
import "openzeppelin-solidity/contracts/AddressUtils.sol";
import "./interfaces/IBurnableMintableERC677Token.sol";
import "./interfaces/ERC677Receiver.sol";
import "./upgradeable_contracts/Claimable.sol";
/**
* @title ERC677BridgeToken
* @dev The basic implementation of a bridgeable ERC677-compatible token
*/
contract ERC677BridgeToken is IBurnableMintableERC677Token, DetailedERC20, BurnableToken, MintableToken, Claimable {
address public bridgeContractAddr;
// solhint-disable-next-line const-name-snakecase
string public constant version = "2";
// The constructor is only used when this token is used in tests as a generic token.
// In the live token bridge, this is deployed as a proxy and the initialize method is used.
constructor(string _name, string _symbol, uint8 _decimals) public DetailedERC20(_name, _symbol, _decimals) {
owner = msg.sender;
bridgeContractAddr = msg.sender;
}
/**
* @dev Initialize the storage of the token. This is called instead of the constructor using a delegatecall
* when the TokenProxy is deployed by the home bridge. This is required so that the bridgeContractAddr is
* correctly stored in the right storage slot, as the proxy does not know the storage slots to store the
* address and other params in
* @param _name token name.
* @param _symbol token symbol.
* @param _decimals token decimals.
*/
function initialize(string _name, string _symbol, uint8 _decimals) public {
// It is unfortunate that the owner / bridgeContractAddr has two seperate storage slots -
// they will always be the same, we do not update the bridge address, this is
// legacy holdover but both should be set to ensure that the bridge contract
// is able to handle the token appropriately
require(owner == address(0), "already initialized");
require(bridgeContractAddr == address(0), "already initialized");
owner = msg.sender; // msg.sender == HomeMultiAMBErc20ToErc677 mediator
bridgeContractAddr = msg.sender;
name = _name;
symbol = _symbol;
decimals = _decimals;
}
modifier validRecipient(address _recipient) {
require(_recipient != address(0) && _recipient != address(this));
_;
}
function transferAndCall(address _to, uint256 _value, bytes _data) external validRecipient(_to) returns (bool) {
require(super.transfer(_to, _value));
emit Transfer(msg.sender, _to, _value, _data);
if (AddressUtils.isContract(_to)) {
executeTokenTransferCallback(_to, msg.sender, _value, _data);
}
return true;
}
/**
* @dev ERC20 transfer function, with the exception of also calling the onTokenTransfer callback in the one case
* of the recipient being the token bridge. This means that bridged tokens sent back to the bridge via a wallet
* UI will be bridged (to the same address on the foreign network) instead of stuck in the bridge
* @param _to tokens receiver
* @param _value amount of tokens that was sent
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(super.transfer(_to, _value));
if (isBridge(_to)) {
executeTokenTransferCallback(_to, msg.sender, _value, new bytes(0));
}
return true;
}
function isBridge(address _address) public view returns (bool) {
return _address == bridgeContractAddr;
}
/**
* @dev call onTokenTransfer fallback on the token recipient contract
* @param _contract the contract that has the callback
* @param _from tokens sender
* @param _value amount of tokens that was sent
* @param _data set of extra bytes that can be passed to the recipient
*/
function executeTokenTransferCallback(address _contract, address _from, uint256 _value, bytes _data) private {
require(ERC677Receiver(_contract).onTokenTransfer(_from, _value, _data));
}
// We don't really need this as there is already a "version" constant but implementing it lets blockscout detect
// bridged tokens.
// https://docs.tokenbridge.net/eth-xdai-amb-bridge/multi-token-extension/the-bridged-tokens-list/token-list-compilation
// Add 10000 to the constant version to avoid conflicts with existing bridged token versions, the interface of
// this implementation has been slimmed down a lot to reduce api surface area
function getTokenInterfacesVersion() external pure returns (uint64 major, uint64 minor, uint64 patch) {
return (10002, 0, 0);
}
function finishMinting() public returns (bool) {
revert();
}
function renounceOwnership() public onlyOwner {
revert();
}
/**
* @dev Withdraws the erc20 tokens or native coins from this contract.
* @param _token address of the claimed token or address(0) for native coins.
* @param _to address of the tokens/coins receiver.
*/
function claimTokens(address _token, address _to) external onlyOwner {
claimValues(_token, _to);
}
}
contracts/interfaces/ERC677.sol
pragma solidity 0.4.24;
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
contract ERC677 is ERC20 {
event Transfer(address indexed from, address indexed to, uint256 value, bytes data);
function transferAndCall(address, uint256, bytes) external returns (bool);
}
contract LegacyERC20 {
function transfer(address _spender, uint256 _value) public; // returns (bool);
function transferFrom(address _owner, address _spender, uint256 _value) public; // returns (bool);
}
openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol
pragma solidity ^0.4.24;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* See https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function transfer(address _to, uint256 _value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
contracts/interfaces/ERC677Receiver.sol
pragma solidity 0.4.24;
contract ERC677Receiver {
function onTokenTransfer(address _from, uint256 _value, bytes _data) external returns (bool);
}
contracts/interfaces/IBurnableMintableERC677Token.sol
pragma solidity 0.4.24;
import "../interfaces/ERC677.sol";
contract IBurnableMintableERC677Token is ERC677 {
function mint(address _to, uint256 _amount) public returns (bool);
function burn(uint256 _value) public;
function claimTokens(address _token, address _to) external;
}
contracts/libraries/SafeERC20.sol
pragma solidity 0.4.24;
import "openzeppelin-solidity/contracts/math/SafeMath.sol";
import "../interfaces/ERC677.sol";
/**
* @title SafeERC20
* @dev Helper methods for safe token transfers.
* Functions perform additional checks to be sure that token transfer really happened.
*/
library SafeERC20 {
using SafeMath for uint256;
/**
* @dev Same as ERC20.transfer(address,uint256) but with extra consistency checks.
* @param _token address of the token contract
* @param _to address of the receiver
* @param _value amount of tokens to send
*/
function safeTransfer(address _token, address _to, uint256 _value) internal {
LegacyERC20(_token).transfer(_to, _value);
assembly {
if returndatasize {
returndatacopy(0, 0, 32)
if iszero(mload(0)) {
revert(0, 0)
}
}
}
}
/**
* @dev Same as ERC20.transferFrom(address,address,uint256) but with extra consistency checks.
* @param _token address of the token contract
* @param _from address of the sender
* @param _value amount of tokens to send
*/
function safeTransferFrom(address _token, address _from, address _to, uint256 _value) internal {
LegacyERC20(_token).transferFrom(_from, _to, _value);
assembly {
if returndatasize {
returndatacopy(0, 0, 32)
if iszero(mload(0)) {
revert(0, 0)
}
}
}
}
}
contracts/upgradeable_contracts/Claimable.sol
pragma solidity 0.4.24;
import "../libraries/Address.sol";
import "../libraries/SafeERC20.sol";
/**
* @title Claimable
* @dev Implementation of the claiming utils that can be useful for withdrawing accidentally sent tokens that are not used in bridge operations.
*/
contract Claimable {
using SafeERC20 for address;
/**
* Throws if a given address is equal to address(0)
*/
modifier validAddress(address _to) {
require(_to != address(0));
/* solcov ignore next */
_;
}
/**
* @dev Withdraws the erc20 tokens or native coins from this contract.
* Caller should additionally check that the claimed token is not a part of bridge operations (i.e. that token != erc20token()).
* @param _token address of the claimed token or address(0) for native coins.
* @param _to address of the tokens/coins receiver.
*/
function claimValues(address _token, address _to) internal validAddress(_to) {
if (_token == address(0)) {
claimNativeCoins(_to);
} else {
claimErc20Tokens(_token, _to);
}
}
/**
* @dev Internal function for withdrawing all native coins from the contract.
* @param _to address of the coins receiver.
*/
function claimNativeCoins(address _to) internal {
uint256 value = address(this).balance;
Address.safeSendValue(_to, value);
}
/**
* @dev Internal function for withdrawing all tokens of ssome particular ERC20 contract from this contract.
* @param _token address of the claimed ERC20 token.
* @param _to address of the tokens receiver.
*/
function claimErc20Tokens(address _token, address _to) internal {
ERC20Basic token = ERC20Basic(_token);
uint256 balance = token.balanceOf(this);
_token.safeTransfer(_to, balance);
}
}
contracts/upgradeable_contracts/Sacrifice.sol
pragma solidity 0.4.24;
contract Sacrifice {
constructor(address _recipient) public payable {
selfdestruct(_recipient);
}
}
openzeppelin-solidity/contracts/AddressUtils.sol
pragma solidity ^0.4.24;
/**
* Utility library of inline functions on addresses
*/
library AddressUtils {
/**
* 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 _addr address to check
* @return whether the target address is a contract
*/
function isContract(address _addr) internal view returns (bool) {
uint256 size;
// 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.
// solium-disable-next-line security/no-inline-assembly
assembly { size := extcodesize(_addr) }
return size > 0;
}
}
openzeppelin-solidity/contracts/math/SafeMath.sol
pragma solidity ^0.4.24;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting '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;
}
c = _a * _b;
assert(c / _a == _b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
// assert(_b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = _a / _b;
// assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
return _a / _b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
assert(_b <= _a);
return _a - _b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
c = _a + _b;
assert(c >= _a);
return c;
}
}
openzeppelin-solidity/contracts/ownership/Ownable.sol
pragma solidity ^0.4.24;
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipRenounced(address indexed previousOwner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to relinquish control of the contract.
* @notice Renouncing to ownership will leave the contract without an owner.
* It will not be possible to call the functions with the `onlyOwner`
* modifier anymore.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipRenounced(owner);
owner = address(0);
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function transferOwnership(address _newOwner) public onlyOwner {
_transferOwnership(_newOwner);
}
/**
* @dev Transfers control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function _transferOwnership(address _newOwner) internal {
require(_newOwner != address(0));
emit OwnershipTransferred(owner, _newOwner);
owner = _newOwner;
}
}
openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol
pragma solidity ^0.4.24;
import "./ERC20Basic.sol";
import "../../math/SafeMath.sol";
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) internal balances;
uint256 internal totalSupply_;
/**
* @dev Total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @dev Transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_value <= balances[msg.sender]);
require(_to != address(0));
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public view returns (uint256) {
return balances[_owner];
}
}
openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol
pragma solidity ^0.4.24;
import "./BasicToken.sol";
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is BasicToken {
event Burn(address indexed burner, uint256 value);
/**
* @dev Burns a specific amount of tokens.
* @param _value The amount of token to be burned.
*/
function burn(uint256 _value) public {
_burn(msg.sender, _value);
}
function _burn(address _who, uint256 _value) internal {
require(_value <= balances[_who]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_who] = balances[_who].sub(_value);
totalSupply_ = totalSupply_.sub(_value);
emit Burn(_who, _value);
emit Transfer(_who, address(0), _value);
}
}
openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol
pragma solidity ^0.4.24;
import "./ERC20.sol";
/**
* @title DetailedERC20 token
* @dev The decimals are only for visualization purposes.
* All the operations are done using the smallest and indivisible token unit,
* just as on Ethereum all the operations are done in wei.
*/
contract DetailedERC20 is ERC20 {
string public name;
string public symbol;
uint8 public decimals;
constructor(string _name, string _symbol, uint8 _decimals) public {
name = _name;
symbol = _symbol;
decimals = _decimals;
}
}
openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol
pragma solidity ^0.4.24;
import "./StandardToken.sol";
import "../../ownership/Ownable.sol";
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
modifier hasMintPermission() {
require(msg.sender == owner);
_;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(
address _to,
uint256 _amount
)
public
hasMintPermission
canMint
returns (bool)
{
totalSupply_ = totalSupply_.add(_amount);
balances[_to] = balances[_to].add(_amount);
emit Mint(_to, _amount);
emit Transfer(address(0), _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() public onlyOwner canMint returns (bool) {
mintingFinished = true;
emit MintFinished();
return true;
}
}
openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol
pragma solidity ^0.4.24;
import "./BasicToken.sol";
import "./ERC20.sol";
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://github.com/ethereum/EIPs/issues/20
* Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(
address _from,
address _to,
uint256 _value
)
public
returns (bool)
{
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
require(_to != address(0));
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(
address _owner,
address _spender
)
public
view
returns (uint256)
{
return allowed[_owner][_spender];
}
/**
* @dev Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
*/
function increaseApproval(
address _spender,
uint256 _addedValue
)
public
returns (bool)
{
allowed[msg.sender][_spender] = (
allowed[msg.sender][_spender].add(_addedValue));
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseApproval(
address _spender,
uint256 _subtractedValue
)
public
returns (bool)
{
uint256 oldValue = allowed[msg.sender][_spender];
if (_subtractedValue >= oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
Contract ABI
[{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bool","name":""}],"name":"mintingFinished","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"string","name":""}],"name":"name","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"approve","inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_value"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"initialize","inputs":[{"type":"string","name":"_name"},{"type":"string","name":"_symbol"},{"type":"uint8","name":"_decimals"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"totalSupply","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"transferFrom","inputs":[{"type":"address","name":"_from"},{"type":"address","name":"_to"},{"type":"uint256","name":"_value"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint8","name":""}],"name":"decimals","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"transferAndCall","inputs":[{"type":"address","name":"_to"},{"type":"uint256","name":"_value"},{"type":"bytes","name":"_data"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"mint","inputs":[{"type":"address","name":"_to"},{"type":"uint256","name":"_amount"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"_value"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"___deprecated___nonces","inputs":[{"type":"address","name":""}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"string","name":""}],"name":"version","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":""}],"name":"bridgeContractAddr","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"decreaseApproval","inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_subtractedValue"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"claimTokens","inputs":[{"type":"address","name":"_token"},{"type":"address","name":"_to"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bytes32","name":""}],"name":"___deprecated___DOMAIN_SEPARATOR","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"balanceOf","inputs":[{"type":"address","name":"_owner"}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"renounceOwnership","inputs":[],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bool","name":""}],"name":"isBridge","inputs":[{"type":"address","name":"_address"}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"finishMinting","inputs":[],"constant":false},{"type":"function","stateMutability":"pure","payable":false,"outputs":[{"type":"uint64","name":"major"},{"type":"uint64","name":"minor"},{"type":"uint64","name":"patch"}],"name":"getTokenInterfacesVersion","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":""}],"name":"owner","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"string","name":""}],"name":"symbol","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"transfer","inputs":[{"type":"address","name":"_to"},{"type":"uint256","name":"_value"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"___deprecated___expirations","inputs":[{"type":"address","name":""},{"type":"address","name":""}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"bool","name":""}],"name":"increaseApproval","inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_addedValue"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"allowance","inputs":[{"type":"address","name":"_owner"},{"type":"address","name":"_spender"}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":""}],"constant":false},{"type":"constructor","stateMutability":"nonpayable","payable":false,"inputs":[{"type":"string","name":"_name"},{"type":"string","name":"_symbol"},{"type":"uint8","name":"_decimals"}]},{"type":"event","name":"Mint","inputs":[{"type":"address","name":"to","indexed":true},{"type":"uint256","name":"amount","indexed":false}],"anonymous":false},{"type":"event","name":"MintFinished","inputs":[],"anonymous":false},{"type":"event","name":"OwnershipRenounced","inputs":[{"type":"address","name":"previousOwner","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","indexed":true},{"type":"address","name":"newOwner","indexed":true}],"anonymous":false},{"type":"event","name":"Burn","inputs":[{"type":"address","name":"burner","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","indexed":true},{"type":"address","name":"to","indexed":true},{"type":"uint256","name":"value","indexed":false},{"type":"bytes","name":"data","indexed":false}],"anonymous":false},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","indexed":true},{"type":"address","name":"spender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","indexed":true},{"type":"address","name":"to","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false}]
Contract Creation Code
0x60806040526006805460a060020a60ff02191690553480156200002157600080fd5b5060405162001645380380620016458339810160409081528151602080840151928401519184018051909493909301928491849184918491849184916200006f9160009190860190620000cf565b50815162000085906001906020850190620000cf565b506002805460ff191660ff9290921691909117905550506006805433600160a060020a03199182168117821681179092556007805490911690911790555062000174945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011257805160ff191683800117855562000142565b8280016001018555821562000142579182015b828111156200014257825182559160200191906001019062000125565b506200015092915062000154565b5090565b6200017191905b808211156200015057600081556001016200015b565b90565b6114c180620001846000396000f3006080604052600436106101505763ffffffff60e060020a60003504166305d2035b811461015557806306fdde031461017e578063095ea7b3146102085780631624f6c61461022c57806318160ddd146102ca57806323b872dd146102f1578063313ce5671461031b5780634000aea01461034657806340c10f191461037757806342966c681461039b5780634feb732d146103b357806354fd4d50146103d457806361ab8ffd146103e9578063661884631461041a57806369ffa08a1461043e5780636f9e21bd1461046557806370a082311461047a578063715018a61461049b578063726600ce146104b05780637d64bcb4146104d1578063859ba28c146104e65780638da5cb5b1461052757806395d89b411461053c578063a9059cbb14610551578063cf3fd83414610575578063d73dd6231461059c578063dd62ed3e146105c0578063f2fde38b146105e7575b600080fd5b34801561016157600080fd5b5061016a610608565b604080519115158252519081900360200190f35b34801561018a57600080fd5b50610193610618565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101cd5781810151838201526020016101b5565b50505050905090810190601f1680156101fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021457600080fd5b5061016a600160a060020a03600435166024356106a6565b34801561023857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102c894369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff1693506106fa92505050565b005b3480156102d657600080fd5b506102df610810565b60408051918252519081900360200190f35b3480156102fd57600080fd5b5061016a600160a060020a0360043581169060243516604435610817565b34801561032757600080fd5b5061033061097c565b6040805160ff9092168252519081900360200190f35b34801561035257600080fd5b5061016a60048035600160a060020a0316906024803591604435918201910135610985565b34801561038357600080fd5b5061016a600160a060020a0360043516602435610a8b565b3480156103a757600080fd5b506102c8600435610b85565b3480156103bf57600080fd5b506102df600160a060020a0360043516610b92565b3480156103e057600080fd5b50610193610ba4565b3480156103f557600080fd5b506103fe610bc2565b60408051600160a060020a039092168252519081900360200190f35b34801561042657600080fd5b5061016a600160a060020a0360043516602435610bd1565b34801561044a57600080fd5b506102c8600160a060020a0360043581169060243516610cae565b34801561047157600080fd5b506102df610cd3565b34801561048657600080fd5b506102df600160a060020a0360043516610cd9565b3480156104a757600080fd5b506102c8610cf4565b3480156104bc57600080fd5b5061016a600160a060020a0360043516610d0b565b3480156104dd57600080fd5b5061016a610d1f565b3480156104f257600080fd5b506104fb610d26565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b34801561053357600080fd5b506103fe610d31565b34801561054857600080fd5b50610193610d40565b34801561055d57600080fd5b5061016a600160a060020a0360043516602435610d9a565b34801561058157600080fd5b506102df600160a060020a0360043581169060243516610de6565b3480156105a857600080fd5b5061016a600160a060020a0360043516602435610e03565b3480156105cc57600080fd5b506102df600160a060020a0360043581169060243516610e8a565b3480156105f357600080fd5b506102c8600160a060020a0360043516610cf4565b60065460a060020a900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a03871680855290835281842086905581518681529151939490939092600080516020611476833981519152928290030190a350600192915050565b600654600160a060020a031615610754576040805160e560020a62461bcd0281526020600482015260136024820152606a60020a72185b1c9958591e481a5b9a5d1a585b1a5e995902604482015290519081900360640190fd5b600754600160a060020a0316156107ae576040805160e560020a62461bcd0281526020600482015260136024820152606a60020a72185b1c9958591e481a5b9a5d1a585b1a5e995902604482015290519081900360640190fd5b6006805433600160a060020a0319918216811790925560078054909116909117905582516107e390600090602086019061138d565b5081516107f790600190602085019061138d565b506002805460ff191660ff929092169190911790555050565b6004545b90565b600160a060020a03831660009081526003602052604081205482111561083c57600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561086c57600080fd5b600160a060020a038316151561088157600080fd5b600160a060020a0384166000908152600360205260409020546108aa908363ffffffff610eb516565b600160a060020a0380861660009081526003602052604080822093909355908516815220546108df908363ffffffff610ec716565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610923908363ffffffff610eb516565b600160a060020a0380861660008181526005602090815260408083203384528252918290209490945580518681529051928716939192600080516020611456833981519152929181900390910190a35060019392505050565b60025460ff1681565b600084600160a060020a038116158015906109a95750600160a060020a0381163014155b15156109b457600080fd5b6109be8686610eda565b15156109c957600080fd5b85600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16878787604051808481526020018060200182810382528484828181526020019250808284376040519201829003965090945050505050a3610a3e86610fa9565b15610a7f57610a7f86338787878080601f01602080910402602001604051908101604052809392919081815260200183838082843750610fb1945050505050565b50600195945050505050565b600654600090600160a060020a03163314610aa557600080fd5b60065460a060020a900460ff1615610abc57600080fd5b600454610acf908363ffffffff610ec716565b600455600160a060020a038316600090815260036020526040902054610afb908363ffffffff610ec716565b600160a060020a038416600081815260036020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206114568339815191529181900360200190a350600192915050565b610b8f33826110bb565b50565b60096020526000908152604090205481565b604080518082019091526001815260f960020a601902602082015281565b600754600160a060020a031681565b336000908152600560209081526040808320600160a060020a0386168452909152812054808310610c2557336000908152600560209081526040808320600160a060020a0388168452909152812055610c5a565b610c35818463ffffffff610eb516565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a038916808552908352928190205481519081529051929392600080516020611476833981519152929181900390910190a35060019392505050565b600654600160a060020a03163314610cc557600080fd5b610ccf82826111aa565b5050565b60085481565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a0316331461015057600080fd5b600754600160a060020a0390811691161490565b6000806000fd5b612712600080909192565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561069e5780601f106106735761010080835404028352916020019161069e565b6000610da68383610eda565b1515610db157600080fd5b610dba83610d0b565b15610ddd57604080516000815260208101909152610ddd90849033908590610fb1565b50600192915050565b600a60209081526000928352604080842090915290825290205481565b336000908152600560209081526040808320600160a060020a0386168452909152812054610e37908363ffffffff610ec716565b336000818152600560209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611476833981519152929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600082821115610ec157fe5b50900390565b81810182811015610ed457fe5b92915050565b33600090815260036020526040812054821115610ef657600080fd5b600160a060020a0383161515610f0b57600080fd5b33600090815260036020526040902054610f2b908363ffffffff610eb516565b3360009081526003602052604080822092909255600160a060020a03851681522054610f5d908363ffffffff610ec716565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233926000805160206114568339815191529281900390910190a350600192915050565b6000903b1190565b83600160a060020a031663a4c0ed368484846040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611030578181015183820152602001611018565b50505050905090810190601f16801561105d5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561107e57600080fd5b505af1158015611092573d6000803e3d6000fd5b505050506040513d60208110156110a857600080fd5b505115156110b557600080fd5b50505050565b600160a060020a0382166000908152600360205260409020548111156110e057600080fd5b600160a060020a038216600090815260036020526040902054611109908263ffffffff610eb516565b600160a060020a038316600090815260036020526040902055600454611135908263ffffffff610eb516565b600455604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206114568339815191529181900360200190a35050565b80600160a060020a03811615156111c057600080fd5b600160a060020a03831615156111de576111d9826111ed565b6111e8565b6111e883836111f9565b505050565b3031610ccf8282611290565b6040805160e060020a6370a0823102815230600482015290518391600091600160a060020a038416916370a0823191602480830192602092919082900301818787803b15801561124857600080fd5b505af115801561125c573d6000803e3d6000fd5b505050506040513d602081101561127257600080fd5b505190506110b5600160a060020a038516848363ffffffff6112f816565b604051600160a060020a0383169082156108fc029083906000818181858888f193505050501515610ccf5780826112c561140b565b600160a060020a039091168152604051908190036020019082f0801580156112f1573d6000803e3d6000fd5b5050505050565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050600060405180830381600087803b15801561135b57600080fd5b505af115801561136f573d6000803e3d6000fd5b505050503d156111e85760206000803e60005115156111e857600080fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106113ce57805160ff19168380011785556113fb565b828001600101855582156113fb579182015b828111156113fb5782518255916020019190600101906113e0565b5061140792915061141a565b5090565b60405160218061143583390190565b61081491905b8082111561140757600081556001016114205600608060405260405160208060218339810160405251600160a060020a038116ff00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058207f527f8e4ac2bc75befa7c095434a7a179bddfa927cc5b74b0e8ab384f7dd9c6002900000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x6080604052600436106101505763ffffffff60e060020a60003504166305d2035b811461015557806306fdde031461017e578063095ea7b3146102085780631624f6c61461022c57806318160ddd146102ca57806323b872dd146102f1578063313ce5671461031b5780634000aea01461034657806340c10f191461037757806342966c681461039b5780634feb732d146103b357806354fd4d50146103d457806361ab8ffd146103e9578063661884631461041a57806369ffa08a1461043e5780636f9e21bd1461046557806370a082311461047a578063715018a61461049b578063726600ce146104b05780637d64bcb4146104d1578063859ba28c146104e65780638da5cb5b1461052757806395d89b411461053c578063a9059cbb14610551578063cf3fd83414610575578063d73dd6231461059c578063dd62ed3e146105c0578063f2fde38b146105e7575b600080fd5b34801561016157600080fd5b5061016a610608565b604080519115158252519081900360200190f35b34801561018a57600080fd5b50610193610618565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101cd5781810151838201526020016101b5565b50505050905090810190601f1680156101fa5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561021457600080fd5b5061016a600160a060020a03600435166024356106a6565b34801561023857600080fd5b506040805160206004803580820135601f81018490048402850184019095528484526102c894369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff1693506106fa92505050565b005b3480156102d657600080fd5b506102df610810565b60408051918252519081900360200190f35b3480156102fd57600080fd5b5061016a600160a060020a0360043581169060243516604435610817565b34801561032757600080fd5b5061033061097c565b6040805160ff9092168252519081900360200190f35b34801561035257600080fd5b5061016a60048035600160a060020a0316906024803591604435918201910135610985565b34801561038357600080fd5b5061016a600160a060020a0360043516602435610a8b565b3480156103a757600080fd5b506102c8600435610b85565b3480156103bf57600080fd5b506102df600160a060020a0360043516610b92565b3480156103e057600080fd5b50610193610ba4565b3480156103f557600080fd5b506103fe610bc2565b60408051600160a060020a039092168252519081900360200190f35b34801561042657600080fd5b5061016a600160a060020a0360043516602435610bd1565b34801561044a57600080fd5b506102c8600160a060020a0360043581169060243516610cae565b34801561047157600080fd5b506102df610cd3565b34801561048657600080fd5b506102df600160a060020a0360043516610cd9565b3480156104a757600080fd5b506102c8610cf4565b3480156104bc57600080fd5b5061016a600160a060020a0360043516610d0b565b3480156104dd57600080fd5b5061016a610d1f565b3480156104f257600080fd5b506104fb610d26565b6040805167ffffffffffffffff9485168152928416602084015292168183015290519081900360600190f35b34801561053357600080fd5b506103fe610d31565b34801561054857600080fd5b50610193610d40565b34801561055d57600080fd5b5061016a600160a060020a0360043516602435610d9a565b34801561058157600080fd5b506102df600160a060020a0360043581169060243516610de6565b3480156105a857600080fd5b5061016a600160a060020a0360043516602435610e03565b3480156105cc57600080fd5b506102df600160a060020a0360043581169060243516610e8a565b3480156105f357600080fd5b506102c8600160a060020a0360043516610cf4565b60065460a060020a900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561069e5780601f106106735761010080835404028352916020019161069e565b820191906000526020600020905b81548152906001019060200180831161068157829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a03871680855290835281842086905581518681529151939490939092600080516020611476833981519152928290030190a350600192915050565b600654600160a060020a031615610754576040805160e560020a62461bcd0281526020600482015260136024820152606a60020a72185b1c9958591e481a5b9a5d1a585b1a5e995902604482015290519081900360640190fd5b600754600160a060020a0316156107ae576040805160e560020a62461bcd0281526020600482015260136024820152606a60020a72185b1c9958591e481a5b9a5d1a585b1a5e995902604482015290519081900360640190fd5b6006805433600160a060020a0319918216811790925560078054909116909117905582516107e390600090602086019061138d565b5081516107f790600190602085019061138d565b506002805460ff191660ff929092169190911790555050565b6004545b90565b600160a060020a03831660009081526003602052604081205482111561083c57600080fd5b600160a060020a038416600090815260056020908152604080832033845290915290205482111561086c57600080fd5b600160a060020a038316151561088157600080fd5b600160a060020a0384166000908152600360205260409020546108aa908363ffffffff610eb516565b600160a060020a0380861660009081526003602052604080822093909355908516815220546108df908363ffffffff610ec716565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610923908363ffffffff610eb516565b600160a060020a0380861660008181526005602090815260408083203384528252918290209490945580518681529051928716939192600080516020611456833981519152929181900390910190a35060019392505050565b60025460ff1681565b600084600160a060020a038116158015906109a95750600160a060020a0381163014155b15156109b457600080fd5b6109be8686610eda565b15156109c957600080fd5b85600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16878787604051808481526020018060200182810382528484828181526020019250808284376040519201829003965090945050505050a3610a3e86610fa9565b15610a7f57610a7f86338787878080601f01602080910402602001604051908101604052809392919081815260200183838082843750610fb1945050505050565b50600195945050505050565b600654600090600160a060020a03163314610aa557600080fd5b60065460a060020a900460ff1615610abc57600080fd5b600454610acf908363ffffffff610ec716565b600455600160a060020a038316600090815260036020526040902054610afb908363ffffffff610ec716565b600160a060020a038416600081815260036020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206114568339815191529181900360200190a350600192915050565b610b8f33826110bb565b50565b60096020526000908152604090205481565b604080518082019091526001815260f960020a601902602082015281565b600754600160a060020a031681565b336000908152600560209081526040808320600160a060020a0386168452909152812054808310610c2557336000908152600560209081526040808320600160a060020a0388168452909152812055610c5a565b610c35818463ffffffff610eb516565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a038916808552908352928190205481519081529051929392600080516020611476833981519152929181900390910190a35060019392505050565b600654600160a060020a03163314610cc557600080fd5b610ccf82826111aa565b5050565b60085481565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a0316331461015057600080fd5b600754600160a060020a0390811691161490565b6000806000fd5b612712600080909192565b600654600160a060020a031681565b60018054604080516020600284861615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561069e5780601f106106735761010080835404028352916020019161069e565b6000610da68383610eda565b1515610db157600080fd5b610dba83610d0b565b15610ddd57604080516000815260208101909152610ddd90849033908590610fb1565b50600192915050565b600a60209081526000928352604080842090915290825290205481565b336000908152600560209081526040808320600160a060020a0386168452909152812054610e37908363ffffffff610ec716565b336000818152600560209081526040808320600160a060020a038916808552908352928190208590558051948552519193600080516020611476833981519152929081900390910190a350600192915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600082821115610ec157fe5b50900390565b81810182811015610ed457fe5b92915050565b33600090815260036020526040812054821115610ef657600080fd5b600160a060020a0383161515610f0b57600080fd5b33600090815260036020526040902054610f2b908363ffffffff610eb516565b3360009081526003602052604080822092909255600160a060020a03851681522054610f5d908363ffffffff610ec716565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233926000805160206114568339815191529281900390910190a350600192915050565b6000903b1190565b83600160a060020a031663a4c0ed368484846040518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611030578181015183820152602001611018565b50505050905090810190601f16801561105d5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561107e57600080fd5b505af1158015611092573d6000803e3d6000fd5b505050506040513d60208110156110a857600080fd5b505115156110b557600080fd5b50505050565b600160a060020a0382166000908152600360205260409020548111156110e057600080fd5b600160a060020a038216600090815260036020526040902054611109908263ffffffff610eb516565b600160a060020a038316600090815260036020526040902055600454611135908263ffffffff610eb516565b600455604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206114568339815191529181900360200190a35050565b80600160a060020a03811615156111c057600080fd5b600160a060020a03831615156111de576111d9826111ed565b6111e8565b6111e883836111f9565b505050565b3031610ccf8282611290565b6040805160e060020a6370a0823102815230600482015290518391600091600160a060020a038416916370a0823191602480830192602092919082900301818787803b15801561124857600080fd5b505af115801561125c573d6000803e3d6000fd5b505050506040513d602081101561127257600080fd5b505190506110b5600160a060020a038516848363ffffffff6112f816565b604051600160a060020a0383169082156108fc029083906000818181858888f193505050501515610ccf5780826112c561140b565b600160a060020a039091168152604051908190036020019082f0801580156112f1573d6000803e3d6000fd5b5050505050565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050600060405180830381600087803b15801561135b57600080fd5b505af115801561136f573d6000803e3d6000fd5b505050503d156111e85760206000803e60005115156111e857600080fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106113ce57805160ff19168380011785556113fb565b828001600101855582156113fb579182015b828111156113fb5782518255916020019190600101906113e0565b5061140792915061141a565b5090565b60405160218061143583390190565b61081491905b8082111561140757600081556001016114205600608060405260405160208060218339810160405251600160a060020a038116ff00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058207f527f8e4ac2bc75befa7c095434a7a179bddfa927cc5b74b0e8ab384f7dd9c60029